diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-05-16 12:24:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-16 12:24:04 -0400 |
commit | 9e690c07edb2219c6c19fc5869a9558cc9df973d (patch) | |
tree | 79e3819ea798c409d5903ae252cc97609eba581c /src/roulette.c | |
parent | ab8318cc79de60413085b104125490cbae344169 (diff) | |
parent | a7e3da2301aa7913f2437fe2152efcec6e96faef (diff) |
Merge pull request #1437 from ExpoSeed/bugfixes
Various BUGFIXes and UBFIXes
Diffstat (limited to 'src/roulette.c')
-rw-r--r-- | src/roulette.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/roulette.c b/src/roulette.c index 1ea69dc2e..adde16199 100644 --- a/src/roulette.c +++ b/src/roulette.c @@ -2896,7 +2896,9 @@ static const union AnimCmd sAnim_CreditDigit[] = ANIMCMD_FRAME(18, 0), // 9 // BUG: Animation not terminated properly // Doesn't matter in practice, the frames are set directly and not looped - //ANIMCMD_END +#ifdef BUGFIX + ANIMCMD_END +#endif }; static const union AnimCmd *const sAnims_CreditDigit[] = |