mirror of
https://github.com/FunKey-Project/picodrive-irixxxx.git
synced 2026-03-23 12:22:52 +01: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:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user