diff options
author | Chris Apers | 2004-10-07 09:19:33 +0000 |
---|---|---|
committer | Chris Apers | 2004-10-07 09:19:33 +0000 |
commit | a9f1d362eac0d590c9bbb370d3c488b2cbe35b3f (patch) | |
tree | 680d5dc03de22679c84106bae334f96346d670f2 /backends/PalmOS | |
parent | b38b5a5c6489cab54bb79c914c4087d34b98c73b (diff) | |
download | scummvm-rg350-a9f1d362eac0d590c9bbb370d3c488b2cbe35b3f.tar.gz scummvm-rg350-a9f1d362eac0d590c9bbb370d3c488b2cbe35b3f.tar.bz2 scummvm-rg350-a9f1d362eac0d590c9bbb370d3c488b2cbe35b3f.zip |
Force ARM in direct mode
svn-id: r15443
Diffstat (limited to 'backends/PalmOS')
-rw-r--r-- | backends/PalmOS/Src/app.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/PalmOS/Src/app.cpp b/backends/PalmOS/Src/app.cpp index 93592ef62c..5f1d7c54e6 100644 --- a/backends/PalmOS/Src/app.cpp +++ b/backends/PalmOS/Src/app.cpp @@ -452,6 +452,10 @@ Err AppStart(void) { AppStartCheckScreenSize(); AppStartSetMemory(); // set memory required by the differents engines + // force ARM option if bDirectMode + if (!error) + if (bDirectMode && OPTIONS_TST(kOptDeviceARM)) + gPrefs->arm = true; return error; } |