X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fuiq3%2FEngine.cpp;h=adb32b45789cd43cf4746971dbb32c8b60333eda;hb=7090b784165829dcf650cf8bf6950a51bbd25181;hp=ba93c8155f5103470992cfb24e01e5500aea8d34;hpb=f8af96349ea464111fbef3c6528016c3dc34cdcf;p=picodrive.git diff --git a/platform/uiq3/Engine.cpp b/platform/uiq3/Engine.cpp index ba93c81..adb32b4 100644 --- a/platform/uiq3/Engine.cpp +++ b/platform/uiq3/Engine.cpp @@ -23,7 +23,7 @@ #include #include "version.h" -#include +#include #include "../common/emu.h" #include "engine/debug.h" #include "App.h" @@ -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);