From bd23878d45f3e0ec2336b903bacc110688aac9bd Mon Sep 17 00:00:00 2001 From: XaviDCR92 Date: Wed, 28 Jun 2017 16:19:36 +0200 Subject: * Added font spacing parameter. * Removed obsolete, unused functions. * Performance optimization: routines inside GameCalculations() were computating a big loop several times, so this has been modified so that loop is only performed once. * Initial implementation for GameGetAircraftTilemap(). Still some work TODO. --- Source/System.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/System.h') diff --git a/Source/System.h b/Source/System.h index 2030117..090de8d 100644 --- a/Source/System.h +++ b/Source/System.h @@ -14,8 +14,8 @@ * Defines * * **************************************/ -#define TIMEBASE_1_SECOND REFRESH_FREQUENCY -#define TIMEBASE_1_MINUTE TIMEBASE_1_SECOND * 60 +#define TIMER_PRESCALER_1_SECOND 10 +#define TIMER_PRESCALER_1_MINUTE (TIMER_PRESCALER_1_SECOND * 60) /* ************************************** * Global Prototypes * -- cgit v1.2.3