aboutsummaryrefslogtreecommitdiff
path: root/kyra/screen.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2005-12-13 15:10:20 +0000
committerJohannes Schickel2005-12-13 15:10:20 +0000
commit1f727e00189d347e23e24fe7e2fbd7ed68378793 (patch)
tree498d2177a670ba0400d59a6a1035a875645a29cf /kyra/screen.cpp
parent67d640b214d099761ced51aff67c8c55a8f395ae (diff)
downloadscummvm-rg350-1f727e00189d347e23e24fe7e2fbd7ed68378793.tar.gz
scummvm-rg350-1f727e00189d347e23e24fe7e2fbd7ed68378793.tar.bz2
scummvm-rg350-1f727e00189d347e23e24fe7e2fbd7ed68378793.zip
Improved user controlled input handling.
Disabled use of _mouseLockCount in screen.cpp for now. (that should fix a bug with not displayed cursor after using the debugger) svn-id: r19794
Diffstat (limited to 'kyra/screen.cpp')
-rw-r--r--kyra/screen.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kyra/screen.cpp b/kyra/screen.cpp
index 91ba5bda36..6a32bc8c29 100644
--- a/kyra/screen.cpp
+++ b/kyra/screen.cpp
@@ -1584,15 +1584,15 @@ int Screen::getRectSize(int x, int y) {
void Screen::hideMouse() {
debug(9, "hideMouse()");
- ++_mouseLockCount;
+ //++_mouseLockCount;
_system->showMouse(false);
}
void Screen::showMouse() {
debug(9, "showMouse()");
- if (--_mouseLockCount == 0) {
+ //if (--_mouseLockCount == 0) {
_system->showMouse(true);
- }
+ //}
}
void Screen::setShapePages(int page1, int page2) {