diff options
| -rw-r--r-- | engines/mortevielle/actions.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/mortevielle/actions.cpp b/engines/mortevielle/actions.cpp index 73d258af6c..361917d53b 100644 --- a/engines/mortevielle/actions.cpp +++ b/engines/mortevielle/actions.cpp @@ -1448,7 +1448,7 @@ void MortevielleEngine::fctDiscuss() {  							displayQuestionText(lib[choice], 1);  						questionAsked[choice] = ! questionAsked[choice];  					} -					if ((_coreVar._availableQuestion[ix] == '*') || (ix == 46)) { +					if ((ix == 46) || (_coreVar._availableQuestion[ix] == '*')) {  						posY = ((ix - 1) % 23) << 3;  						if (ix > 23)  							posX = 320; | 
