mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
get rid of some CamelCase names
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@712 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
c18c15aed7
commit
a47dd66367
14 changed files with 121 additions and 127 deletions
|
@ -346,7 +346,7 @@ static void RunEvents(unsigned int which)
|
|||
FrameworkAudio_SetPause(1);
|
||||
if (giz_screen == NULL)
|
||||
giz_screen = fb_lock(1);
|
||||
if ( emu_checkSaveFile(state_slot) &&
|
||||
if ( emu_check_save_file(state_slot) &&
|
||||
(( (which & 0x1000) && (currentConfig.EmuOpt & 0x800)) || // load
|
||||
(!(which & 0x1000) && (currentConfig.EmuOpt & 0x200))) ) // save
|
||||
{
|
||||
|
@ -364,7 +364,7 @@ static void RunEvents(unsigned int which)
|
|||
{
|
||||
osd_text(4, 232, (which & 0x1000) ? "LOADING GAME" : "SAVING GAME");
|
||||
PicoStateProgressCB = emu_stateCb;
|
||||
emu_SaveLoadGame((which & 0x1000) >> 12, 0);
|
||||
emu_save_load_game((which & 0x1000) >> 12, 0);
|
||||
PicoStateProgressCB = NULL;
|
||||
Sleep(0);
|
||||
}
|
||||
|
@ -399,7 +399,7 @@ static void RunEvents(unsigned int which)
|
|||
state_slot += 1;
|
||||
if(state_slot > 9) state_slot = 0;
|
||||
}
|
||||
sprintf(noticeMsg, "SAVE SLOT %i [%s]", state_slot, emu_checkSaveFile(state_slot) ? "USED" : "FREE");
|
||||
sprintf(noticeMsg, "SAVE SLOT %i [%s]", state_slot, emu_check_save_file(state_slot) ? "USED" : "FREE");
|
||||
noticeMsgTime = GetTickCount();
|
||||
}
|
||||
}
|
||||
|
@ -709,7 +709,7 @@ void pemu_loop(void)
|
|||
// save SRAM
|
||||
if ((currentConfig.EmuOpt & 1) && SRam.changed) {
|
||||
emu_stateCb("Writing SRAM/BRAM..");
|
||||
emu_SaveLoadGame(0, 1);
|
||||
emu_save_load_game(0, 1);
|
||||
SRam.changed = 0;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,7 +34,7 @@ int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdL
|
|||
break;
|
||||
|
||||
case PGS_ReloadRom:
|
||||
if (emu_ReloadRom(romFileName))
|
||||
if (emu_reload_rom(romFileName))
|
||||
engineState = PGS_Running;
|
||||
else {
|
||||
lprintf("PGS_ReloadRom == 0\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue