diff options
-rw-r--r-- | engines/director/lingo/lingo-lex.cpp | 4 | ||||
-rw-r--r-- | engines/director/lingo/lingo-lex.l | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/engines/director/lingo/lingo-lex.cpp b/engines/director/lingo/lingo-lex.cpp index 2bc31335f3..009ae8fe57 100644 --- a/engines/director/lingo/lingo-lex.cpp +++ b/engines/director/lingo/lingo-lex.cpp @@ -687,12 +687,12 @@ static void count() { g_lingo->_colnumber += strlen(yytext); } -#if defined(__PLAYSTATION2__) || defined(_MSC_VER) +#if defined(__PLAYSTATION2__) || defined(_MSC_VER) || defined(__DC__) // Stub for missing function int isatty(int fileno) { return 0; } #endif -#ifdef _MSC_VER +#if defined(_MSC_VER) || defined(__DC__) #define YY_NO_UNISTD_H #endif diff --git a/engines/director/lingo/lingo-lex.l b/engines/director/lingo/lingo-lex.l index 39aef99d61..e7d3a84475 100644 --- a/engines/director/lingo/lingo-lex.l +++ b/engines/director/lingo/lingo-lex.l @@ -37,12 +37,12 @@ static void count() { g_lingo->_colnumber += strlen(yytext); } -#if defined(__PLAYSTATION2__) || defined(_MSC_VER) +#if defined(__PLAYSTATION2__) || defined(_MSC_VER) || defined(__DC__) // Stub for missing function int isatty(int fileno) { return 0; } #endif -#ifdef _MSC_VER +#if defined(_MSC_VER) || defined(__DC__) #define YY_NO_UNISTD_H #endif |