diff options
author | lukaslw | 2014-07-26 20:17:50 +0200 |
---|---|---|
committer | lukaslw | 2014-07-26 20:17:50 +0200 |
commit | c224455e1bd2573e7399206020c057645a9d80bc (patch) | |
tree | f765ed914d67724cc161f44da7bc5e693abb4ea5 /engines/prince | |
parent | 58ce087e8010bf656ff4321f24d1fe80f93c6e41 (diff) | |
download | scummvm-rg350-c224455e1bd2573e7399206020c057645a9d80bc.tar.gz scummvm-rg350-c224455e1bd2573e7399206020c057645a9d80bc.tar.bz2 scummvm-rg350-c224455e1bd2573e7399206020c057645a9d80bc.zip |
PRINCE: LMB texts skipping - slot 9 exclude
Diffstat (limited to 'engines/prince')
-rw-r--r-- | engines/prince/prince.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/prince/prince.cpp b/engines/prince/prince.cpp index ab774c1abe..62df0c7cb0 100644 --- a/engines/prince/prince.cpp +++ b/engines/prince/prince.cpp @@ -2334,7 +2334,7 @@ void PrinceEngine::leftMouseButton() { if (!_flags->getFlagValue(Flags::POWERENABLED)) { if (!_flags->getFlagValue(Flags::NOCLSTEXT)) { for (int slot = 0; slot < kMaxTexts; slot++) { - if (slot != kMaxTexts - 9) { + if (slot != 9) { Text& text = _textSlots[slot]; if (!text._str) { continue; |