diff options
author | Chris Apers | 2004-09-12 13:07:15 +0000 |
---|---|---|
committer | Chris Apers | 2004-09-12 13:07:15 +0000 |
commit | c97c169ac0ff6c0b4705320f4a96251510b3da08 (patch) | |
tree | d9e6761e06197f3a28ee3f57a734dd6b0c85411e | |
parent | e88274f4b2fd047ec91a9c7e85bf820c7f125d78 (diff) | |
download | scummvm-rg350-c97c169ac0ff6c0b4705320f4a96251510b3da08.tar.gz scummvm-rg350-c97c169ac0ff6c0b4705320f4a96251510b3da08.tar.bz2 scummvm-rg350-c97c169ac0ff6c0b4705320f4a96251510b3da08.zip |
Get rid of _quitCount and _selfQuit
svn-id: r15048
-rw-r--r-- | backends/PalmOS/Src/palmmos.cpp | 4 |
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; |