diff options
author | Strangerke | 2011-12-22 20:21:23 +0100 |
---|---|---|
committer | Strangerke | 2011-12-22 20:21:23 +0100 |
commit | 2811d83670f63cbda6ff058d343be692f9c3ddbe (patch) | |
tree | a6febc7a652b5cdca111a1110702da18403d7130 | |
parent | 0234bb5be26319a3cd634cbdcf73ad7beb31b16f (diff) | |
download | scummvm-rg350-2811d83670f63cbda6ff058d343be692f9c3ddbe.tar.gz scummvm-rg350-2811d83670f63cbda6ff058d343be692f9c3ddbe.tar.bz2 scummvm-rg350-2811d83670f63cbda6ff058d343be692f9c3ddbe.zip |
TSAGE: Give a default value to the second parameter of disableControl(), as for enableControl()
-rw-r--r-- | engines/tsage/core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tsage/core.h b/engines/tsage/core.h index ca691ec618..bd27a942a4 100644 --- a/engines/tsage/core.h +++ b/engines/tsage/core.h @@ -653,7 +653,7 @@ public: void disableControl(); void enableControl(); - void disableControl(CursorType cursorId, CursorType objectId); + void disableControl(CursorType cursorId, CursorType objectId = CURSOR_NONE); void enableControl(CursorType cursorId, CursorType objectId = CURSOR_NONE); }; |