From ad2b367a78a24fc3e867243aad49ca9bbbdd6540 Mon Sep 17 00:00:00 2001 From: dwsJason Date: Sun, 2 Sep 2018 19:49:19 -0400 Subject: [PATCH] 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) --- include/game.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/game.h b/include/game.h index 8bec5dc..9cb1628 100644 --- a/include/game.h +++ b/include/game.h @@ -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