mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
sms, add fast renderer, remove 1st column (8 px) if blanked
This commit is contained in:
parent
23e4719638
commit
96948bdfc8
15 changed files with 454 additions and 181 deletions
|
@ -146,12 +146,6 @@ static void copy_bg(int dir)
|
|||
}
|
||||
}
|
||||
|
||||
static void menu_enter(int is_rom_loaded)
|
||||
{
|
||||
plat_video_menu_enter(is_rom_loaded);
|
||||
menu_w = menu_h = 0;
|
||||
}
|
||||
|
||||
static void menu_draw_prep(void)
|
||||
{
|
||||
if (menu_w == g_menuscreen_w && menu_h == g_menuscreen_h)
|
||||
|
@ -198,6 +192,13 @@ static void draw_savestate_bg(int slot)
|
|||
PicoTmpStateRestore(tmp_state);
|
||||
}
|
||||
|
||||
static void menu_enter(int is_rom_loaded)
|
||||
{
|
||||
plat_video_menu_enter(is_rom_loaded);
|
||||
menu_w = menu_h = 0;
|
||||
menu_draw_prep();
|
||||
}
|
||||
|
||||
// --------- loading ROM screen ----------
|
||||
|
||||
static int cdload_called = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue