diff options
author | lukaslw | 2014-07-20 17:40:39 +0200 |
---|---|---|
committer | lukaslw | 2014-07-20 17:40:39 +0200 |
commit | 717597b068521a4fc6a524778782f0f6c0d08fbb (patch) | |
tree | 554a818c3e603f8a6bbaf96321da6276aea88124 | |
parent | 2749f97dd9faf8f84fafc1f4065c28bfa1dc4f3b (diff) | |
download | scummvm-rg350-717597b068521a4fc6a524778782f0f6c0d08fbb.tar.gz scummvm-rg350-717597b068521a4fc6a524778782f0f6c0d08fbb.tar.bz2 scummvm-rg350-717597b068521a4fc6a524778782f0f6c0d08fbb.zip |
PRINCE: Options menu - no option error fix
-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 771741f60e..0e23fcbe4a 100644 --- a/engines/prince/prince.cpp +++ b/engines/prince/prince.cpp @@ -2074,7 +2074,7 @@ void PrinceEngine::leftMouseButton() { int optionEvent = -1; if (_optionsFlag) { - if (_optionEnabled < _optionsNumber) { + if (_optionEnabled < _optionsNumber && _optionEnabled != -1) { option = _optionEnabled; _optionsFlag = 0; } else { |