aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/riven_card.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mohawk/riven_card.cpp')
-rw-r--r--engines/mohawk/riven_card.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/mohawk/riven_card.cpp b/engines/mohawk/riven_card.cpp
index 54b588c2a0..9bb5a2e91a 100644
--- a/engines/mohawk/riven_card.cpp
+++ b/engines/mohawk/riven_card.cpp
@@ -23,7 +23,7 @@
#include "mohawk/riven_card.h"
#include "mohawk/riven_graphics.h"
-#include "mohawk/sound.h"
+#include "mohawk/riven_sound.h"
#include "mohawk/resource.h"
#include "mohawk/riven.h"
@@ -55,11 +55,12 @@ void RivenCard::open() {
_vm->_activatedPLST = false;
_vm->_activatedSLST = false;
+ _vm->_gfx->beginScreenUpdate();
runScript(kCardLoadScript);
defaultLoadScript();
initializeZipMode();
- _vm->_gfx->updateScreen();
+ _vm->_gfx->applyScreenUpdate(true);
runScript(kCardOpenScript);
}