aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Bacca2003-09-18 10:24:53 +0000
committerNicolas Bacca2003-09-18 10:24:53 +0000
commit420043b76bd76a6834aa4048550d6943df3a089e (patch)
treef1a134ced5680eee15d181dcdd3623168a6d2c01
parent3342a205788b361bdaadb1c766696a6f580eea85 (diff)
downloadscummvm-rg350-420043b76bd76a6834aa4048550d6943df3a089e.tar.gz
scummvm-rg350-420043b76bd76a6834aa4048550d6943df3a089e.tar.bz2
scummvm-rg350-420043b76bd76a6834aa4048550d6943df3a089e.zip
Remove one more hackery - actually a complete port rewrite would be needed to get rid of all of them, I'm thinking about it :)
svn-id: r10289
-rw-r--r--backends/wince/wince.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/backends/wince/wince.cpp b/backends/wince/wince.cpp
index 78962e550e..86fe31a486 100644
--- a/backends/wince/wince.cpp
+++ b/backends/wince/wince.cpp
@@ -1160,15 +1160,7 @@ void action_save() {
if (is_bass)
mainClass->addEventKeyPressed(63);
else
- if (g_scumm->_version <= 2)
- mainClass->addEventKeyPressed(5);
- else
- if ((g_scumm->_features & GF_OLD256) || (g_scumm->_gameId == GID_CMI) || (g_scumm->_features & GF_16COLOR))
- //system->addEventKeyPressed(319);
- mainClass->addEventKeyPressed(319);
- else
- //system->addEventKeyPressed(g_scumm->VAR(g_scumm->VAR_SAVELOADDIALOG_KEY));
- mainClass->addEventKeyPressed(g_scumm->VAR(g_scumm->VAR_SAVELOADDIALOG_KEY));
+ mainClass->addEventKeyPressed(319); // "F5"
}
void action_quit() {