aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorChris Apers2004-09-12 13:07:15 +0000
committerChris Apers2004-09-12 13:07:15 +0000
commitc97c169ac0ff6c0b4705320f4a96251510b3da08 (patch)
treed9e6761e06197f3a28ee3f57a734dd6b0c85411e /backends
parente88274f4b2fd047ec91a9c7e85bf820c7f125d78 (diff)
downloadscummvm-rg350-c97c169ac0ff6c0b4705320f4a96251510b3da08.tar.gz
scummvm-rg350-c97c169ac0ff6c0b4705320f4a96251510b3da08.tar.bz2
scummvm-rg350-c97c169ac0ff6c0b4705320f4a96251510b3da08.zip
Get rid of _quitCount and _selfQuit
svn-id: r15048
Diffstat (limited to 'backends')
-rw-r--r--backends/PalmOS/Src/palmmos.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/PalmOS/Src/palmmos.cpp b/backends/PalmOS/Src/palmmos.cpp
index 2586a50001..0338c0f9d9 100644
--- a/backends/PalmOS/Src/palmmos.cpp
+++ b/backends/PalmOS/Src/palmmos.cpp
@@ -69,7 +69,7 @@ void OSystem_PALMOS::setMouseCursor(const byte *buf, uint w, uint h, int hotspot
}
void OSystem_PALMOS::draw_mouse() {
- if (_mouseDrawn || !_mouseVisible || _quitCount)
+ if (_mouseDrawn || !_mouseVisible)
return;
_mouseCurState.y = _mouseCurState.y >= _screenHeight ? _screenHeight - 1 : _mouseCurState.y;
@@ -156,7 +156,7 @@ void OSystem_PALMOS::draw_mouse() {
}
void OSystem_PALMOS::undraw_mouse() {
- if (!_mouseDrawn || _quitCount)
+ if (!_mouseDrawn)
return;
_mouseDrawn = false;