1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-09 13:25:06 +00:00

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