Adjust game period for the IIGS where we're counting 960 ticks per second from the system timer, instead o1000 (now game speed matches PC)

This commit is contained in:
dwsJason 2018-09-02 19:49:19 -04:00
parent 70e3d25f1b
commit ad2b367a78
1 changed files with 4 additions and 0 deletions

View File

@ -28,7 +28,11 @@
#define TRUE 1
#define FALSE 0
#ifdef IIGS
#define GAME_PERIOD 72
#else
#define GAME_PERIOD 75
#endif
#define GAME_BOMBS_INIT 6
#define GAME_BULLETS_INIT 6