mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-28 16:50:15 -06:00
stop fast-forward hotkeys from getting lost every damn time
This commit is contained in:
@ -202,7 +202,7 @@ void RenderText(u32 color, const char* text, Item* item)
|
||||
int breaks[64];
|
||||
|
||||
bool rainbow = (color == 0);
|
||||
u32 rainbowinc = (text[0] * 17) % 600;
|
||||
u32 rainbowinc = ((text[0] * 17) + (SDL_GetTicks() * 13)) % 600;
|
||||
|
||||
color |= 0xFF000000;
|
||||
const u32 shadow = 0xE0000000;
|
||||
|
Reference in New Issue
Block a user