diff options
Diffstat (limited to 'src/levelspecial.cpp')
-rw-r--r-- | src/levelspecial.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/levelspecial.cpp b/src/levelspecial.cpp index 962b87f..002a6a1 100644 --- a/src/levelspecial.cpp +++ b/src/levelspecial.cpp @@ -45,6 +45,9 @@ extern char BGScaleEnabled; extern u32 GameTimer; +extern char CameraLockEnabled; +extern VEC2 CameraLockPosition; + #define time *(u32*)((GameTimer) + 0x4) @@ -91,6 +94,7 @@ bool ResetAfterLevel(bool didItWork) { for (int i = 0; i < 4; i++) Player_Flags[i] &= ~4; BGScaleEnabled = 0; + CameraLockEnabled = 0; return didItWork; } |