aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/text_lol.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/kyra/text_lol.cpp')
-rw-r--r--engines/kyra/text_lol.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/engines/kyra/text_lol.cpp b/engines/kyra/text_lol.cpp
index f7087cd846..9616596710 100644
--- a/engines/kyra/text_lol.cpp
+++ b/engines/kyra/text_lol.cpp
@@ -223,8 +223,10 @@ void TextDisplayer_LoL::printMessage(uint16 type, char *str, ...) {
_screen->setScreenDim(od);
- if (!(type & 0x8000) && soundEffect[type])
- _vm->sound()->playSoundEffect(soundEffect[type]);
+ if (!(type & 0x8000)) {
+ if (soundEffect[type])
+ _vm->sound()->playSoundEffect(soundEffect[type]);
+ }
_vm->_textColourFlag = type & 0x7fff;
_vm->_fadeText = false;
@@ -606,7 +608,7 @@ void TextDisplayer_LoL::textPageBreak() {
int x = ((dim->sx + dim->w) << 3) - 77;
int y = 0;
- if (_vm->_hideInventory && (_vm->_updateFlags & 2)) {
+ if (_vm->_needSceneRestore && (_vm->_updateFlags & 2)) {
if (_vm->_currentControlMode || !(_vm->_updateFlags & 2)) {
y = dim->sy + dim->h - 5;
} else {