mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
Fixed MameTesters Bug 4745
This commit is contained in:
parent
42c7bd7fcb
commit
cae71716fa
@ -2718,8 +2718,14 @@ void ui_menu_select_game::custom_render(void *selectedref, float top, float bott
|
||||
if (!(*s == 0 || *s == '\n'))
|
||||
tempbuf[line].cat(*s);
|
||||
|
||||
if (*s != 0)
|
||||
if (*s == '\n')
|
||||
{
|
||||
line++;
|
||||
s++;
|
||||
} else if (*s != 0)
|
||||
s++;
|
||||
else
|
||||
line++;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user