mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-26 14:03:01 +00:00
Prevent star count from flashing in levels
This commit is contained in:
parent
76605397af
commit
3a26c43d14
1 changed files with 3 additions and 0 deletions
|
@ -378,6 +378,9 @@ void render_hud_coins(void) {
|
|||
void render_hud_stars(void) {
|
||||
s8 showX = 0;
|
||||
|
||||
// prevent star count from flashing outside of castle
|
||||
if (gCurrCourseNum != COURSE_NONE) { gHudFlash = 0; }
|
||||
|
||||
if (gHudFlash == 1 && gGlobalTimer & 0x08) {
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue