1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 07:14:31 +01:00

Fix define checks in project

This commit is contained in:
Michał Janiszewski
2016-07-09 10:05:12 +02:00
parent 9240280005
commit 639f19adbf
14 changed files with 21 additions and 21 deletions

View File

@@ -41,7 +41,7 @@
rct_viewport g_viewport_list[MAX_VIEWPORT_COUNT];
#if NO_RCT2
#ifdef NO_RCT2
paint_struct *unk_EE7884;
paint_struct *unk_EE7888;
#endif
@@ -1598,7 +1598,7 @@ uint8 get_current_rotation()
{
uint8 rotation = gCurrentRotation;
uint8 rotation_masked = rotation & 3;
#if DEBUG_LEVEL_1
#ifdef DEBUG_LEVEL_1
if (rotation != rotation_masked) {
log_error("Found wrong rotation %d! Will return %d instead.", (uint32)rotation, (uint32)rotation_masked);
}

View File

@@ -96,7 +96,7 @@ typedef struct viewport_interaction_info {
// rct2: 0x014234BC
extern rct_viewport g_viewport_list[MAX_VIEWPORT_COUNT];
#if NO_RCT2
#ifdef NO_RCT2
extern paint_struct *unk_EE7884;
extern paint_struct *unk_EE7888;
#else