diff options
author | Chris Apers | 2006-02-12 18:28:11 +0000 |
---|---|---|
committer | Chris Apers | 2006-02-12 18:28:11 +0000 |
commit | f74801e42cbbe9203fee03852944633d7c8d1c50 (patch) | |
tree | b7b887648c603f448c295d609f481bc19f41d73b | |
parent | 0ffdbdd7afd1a3600710d311c214e7fcd3a3ad22 (diff) | |
download | scummvm-rg350-f74801e42cbbe9203fee03852944633d7c8d1c50.tar.gz scummvm-rg350-f74801e42cbbe9203fee03852944633d7c8d1c50.tar.bz2 scummvm-rg350-f74801e42cbbe9203fee03852944633d7c8d1c50.zip |
Only in ARM mode
svn-id: r20634
-rwxr-xr-x | backends/PalmOS/Src/os5_gfx.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/backends/PalmOS/Src/os5_gfx.cpp b/backends/PalmOS/Src/os5_gfx.cpp index feab31c8f5..73dea43513 100755 --- a/backends/PalmOS/Src/os5_gfx.cpp +++ b/backends/PalmOS/Src/os5_gfx.cpp @@ -85,7 +85,6 @@ void OSystem_PalmOS5::load_gfx_mode() { void OSystem_PalmOS5::hotswap_gfx_mode(int mode) { Err e; UInt32 device; - Boolean isT3; if (_mode != GFX_NORMAL && !_isSwitchable) return; @@ -94,8 +93,8 @@ void OSystem_PalmOS5::hotswap_gfx_mode(int mode) { WinDeleteWindow(_workScreenH, false); _workScreenH = NULL; - isT3 = false; #ifdef PALMOS_ARM + Boolean isT3 = false; if (!FtrGet(sysFileCSystem, sysFtrNumOEMDeviceID, &device)) isT3 = (device == kPalmOneDeviceIDTungstenT3); #endif |