mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -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
|
@ -46,11 +46,11 @@ TInt CPicoGameSession::Do(const TPicoServRqst what, TAny *param)
|
|||
{
|
||||
case PicoMsgLoadState:
|
||||
if(!rom_loaded) return -1; // no ROM
|
||||
return emu_SaveLoadGame(1, 0);
|
||||
return emu_save_load_game(1, 0);
|
||||
|
||||
case PicoMsgSaveState:
|
||||
if(!rom_loaded) return -1;
|
||||
return emu_SaveLoadGame(0, 0);
|
||||
return emu_save_load_game(0, 0);
|
||||
|
||||
case PicoMsgLoadROM:
|
||||
return loadROM((TPtrC16 *)param);
|
||||
|
@ -188,7 +188,7 @@ TInt CPicoGameSession::loadROM(TPtrC16 *pptr)
|
|||
if (loadrom_result == 0)
|
||||
return PicoErrRomOpenFailed;
|
||||
|
||||
emu_getGameName(buff);
|
||||
emu_get_game_name(buff);
|
||||
TPtrC8 buff8((TUint8*) buff);
|
||||
iRomInternalName.Copy(buff8);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue