aboutsummaryrefslogtreecommitdiff
path: root/Source/System.h
diff options
context:
space:
mode:
authorXaviDCR92 <xavi.dcr@gmail.com>2017-06-28 16:19:36 +0200
committerXaviDCR92 <xavi.dcr@gmail.com>2017-06-28 16:19:36 +0200
commitbd23878d45f3e0ec2336b903bacc110688aac9bd (patch)
treee7a09377ac2bc955b58b868d80ddd1efaae5f8b2 /Source/System.h
parentf9f9924566e82aae02817a2fbc7962764f5418c3 (diff)
* 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.
Diffstat (limited to 'Source/System.h')
-rw-r--r--Source/System.h4
1 files changed, 2 insertions, 2 deletions
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 *