X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fuiq3%2FEngine.cpp;h=adb32b45789cd43cf4746971dbb32c8b60333eda;hb=e898de13cdd5416507675f175958204c5e9f27e9;hp=a5205b8e4a07f90828ea4652adea00b17bdcaa49;hpb=efcba75f8a730340df6c1b679a207723f98d1ee6;p=picodrive.git diff --git a/platform/uiq3/Engine.cpp b/platform/uiq3/Engine.cpp index a5205b8..adb32b4 100644 --- a/platform/uiq3/Engine.cpp +++ b/platform/uiq3/Engine.cpp @@ -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);