DIRECTOR: Fix compilation on Dreamcast

This commit is contained in:
Marcus Comstedt
2016-09-28 17:09:47 +02:00
parent efebb327d9
commit 0da273fc8c
+2 -2
View File
@@ -685,12 +685,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