diff options
author | Travis Howell | 2003-06-01 09:41:56 +0000 |
---|---|---|
committer | Travis Howell | 2003-06-01 09:41:56 +0000 |
commit | 771dcfaad7b88deb17f76dfa06ec4a3fb1c98271 (patch) | |
tree | 34cdde23afa187523b1cf9d8f1bc8f9c1c237738 /backends/wince | |
parent | b3e166897027246940f6b15d83404b39ffa6dd10 (diff) | |
download | scummvm-rg350-771dcfaad7b88deb17f76dfa06ec4a3fb1c98271.tar.gz scummvm-rg350-771dcfaad7b88deb17f76dfa06ec4a3fb1c98271.tar.bz2 scummvm-rg350-771dcfaad7b88deb17f76dfa06ec4a3fb1c98271.zip |
Rename SimonState to SimonEngine
svn-id: r8228
Diffstat (limited to 'backends/wince')
-rw-r--r-- | backends/wince/pocketpc.cpp | 2 | ||||
-rw-r--r-- | backends/wince/smartphone.cpp | 2 | ||||
-rw-r--r-- | backends/wince/wince.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/backends/wince/pocketpc.cpp b/backends/wince/pocketpc.cpp index 877cf26cfd..0048c2b8da 100644 --- a/backends/wince/pocketpc.cpp +++ b/backends/wince/pocketpc.cpp @@ -235,7 +235,7 @@ BOOL PPCWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, OSystem_W if (is_demo) do_quit(); if (is_simon) { - ((SimonState*)engine)->_exit_cutscene = true; + ((SimonEngine*)engine)->_exit_cutscene = true; break; } wm->_event.event_code = OSystem::EVENT_KEYDOWN; diff --git a/backends/wince/smartphone.cpp b/backends/wince/smartphone.cpp index 5bdb65c6c4..39e613a95d 100644 --- a/backends/wince/smartphone.cpp +++ b/backends/wince/smartphone.cpp @@ -306,7 +306,7 @@ void SmartfonSave(OSystem_WINCE3 *wm, BOOL repeat) { void SmartfonSkip(OSystem_WINCE3 *wm, BOOL repeat) { if (is_simon) { - ((SimonState*)engine)->_exit_cutscene = true; + ((SimonEngine*)engine)->_exit_cutscene = true; return; } wm->_event.event_code = OSystem::EVENT_KEYDOWN; diff --git a/backends/wince/wince.cpp b/backends/wince/wince.cpp index 967b6d9070..cd95effd17 100644 --- a/backends/wince/wince.cpp +++ b/backends/wince/wince.cpp @@ -360,7 +360,7 @@ Engine *engine; bool is_simon; NewGui *g_gui; extern Scumm *g_scumm; -//extern SimonState *g_simon; +//extern SimonEngine *g_simon; //OSystem *g_system; //SoundMixer *g_mixer; Config *g_config; |