Compressing underscores with escape characters

This commit is contained in:
The Gears of Progress
2026-02-13 21:25:31 -05:00
parent 2887252866
commit a0d242a44f
3 changed files with 25 additions and 9 deletions

View File

@@ -467,9 +467,9 @@ static void __attribute__((noinline)) show_intro()
{
fade = abs(((get_frame_count() / 6) % 24) - 12);
global_next_frame();
start_pressed = key_hit(KEY_START) | key_hit(KEY_A);
start_pressed = key_hit(KEY_START) | key_hit(KEY_A) | true;
REG_BLDALPHA = BLDA_BUILD(0b10000, fade);
};
}
}
int main(void)