fixed stuff according to Olivers review

This commit is contained in:
mrdudz
2015-11-30 18:44:04 +01:00
parent 3bc1375c90
commit 7496e669be
2 changed files with 22 additions and 20 deletions

View File

@@ -15,6 +15,7 @@
#include <stdlib.h> #include <stdlib.h>
#if defined(__GAMATE__) #if defined(__GAMATE__)
/* there is not enough screen space to show all 256 characters at the bottom */
#define NUMCHARS 128 #define NUMCHARS 128
#define NUMCOLS 4 #define NUMCOLS 4
#else #else
@@ -132,6 +133,7 @@ void main(void)
inpos = (inpos + 1) & 7; inpos = (inpos + 1) & 7;
} }
#endif #endif
/* not all targets have waitvblank() */
#if defined(__NES__) || defined(__PCE__) || defined(__GAMATE__) #if defined(__NES__) || defined(__PCE__) || defined(__GAMATE__)
waitvblank(); waitvblank();
#endif #endif