diff options
author | drifloony <drifloony@users.noreply.github.com> | 2017-07-21 15:34:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-21 15:34:05 -0700 |
commit | 8ed167339c52b32e5149077e9e2c91f981268af9 (patch) | |
tree | 765873e0da27644ad94fcf0eee9a8f76f95e96c6 /src/rotating_gate.c | |
parent | 95d3a7848ca07ad7035d1a717b489c4ea303a3ba (diff) | |
parent | 68e47a6fa0b56451223c22dc9a759534c988db5b (diff) |
Merge branch 'master' into mon_markings
Diffstat (limited to 'src/rotating_gate.c')
-rw-r--r-- | src/rotating_gate.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rotating_gate.c b/src/rotating_gate.c index d12a21240..bb3c31dfc 100644 --- a/src/rotating_gate.c +++ b/src/rotating_gate.c @@ -565,9 +565,9 @@ static const u8 sRotatingGate_ArmLayout[][GATE_ARM_WEST + 1][GATE_ARM_MAX_LENGTH }, }; -extern u8 gRotatingGate_GateSpriteIds[ROTATING_GATE_PUZZLE_MAX]; -extern const struct RotatingGatePuzzle *gRotatingGate_PuzzleConfig; -extern u8 gRotatingGate_PuzzleCount; +static EWRAM_DATA u8 gRotatingGate_GateSpriteIds[ROTATING_GATE_PUZZLE_MAX] = {0}; +static EWRAM_DATA const struct RotatingGatePuzzle *gRotatingGate_PuzzleConfig = NULL; +static EWRAM_DATA u8 gRotatingGate_PuzzleCount = 0; static int GetCurrentMapRotatingGatePuzzleType(void) { |