aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine
diff options
context:
space:
mode:
authorMatthew Hoops2010-08-01 17:54:48 +0000
committerMatthew Hoops2010-08-01 17:54:48 +0000
commit79bf94c87729506b556f66d15ea30827b509451a (patch)
treec5602be4e7501dc543770bd7aed5631484c3630a /engines/sci/engine
parentf3851674f38bfc5a799dd52e2ef2617517280c5f (diff)
downloadscummvm-rg350-79bf94c87729506b556f66d15ea30827b509451a.tar.gz
scummvm-rg350-79bf94c87729506b556f66d15ea30827b509451a.tar.bz2
scummvm-rg350-79bf94c87729506b556f66d15ea30827b509451a.zip
SCI: Move kernelShakeScreen to GfxScreen so it can be used in SCI32 (it's used in GK1)
svn-id: r51583
Diffstat (limited to 'engines/sci/engine')
-rw-r--r--engines/sci/engine/kgraphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/kgraphics.cpp b/engines/sci/engine/kgraphics.cpp
index b2ff83aa1e..07864f5648 100644
--- a/engines/sci/engine/kgraphics.cpp
+++ b/engines/sci/engine/kgraphics.cpp
@@ -1082,7 +1082,7 @@ reg_t kShakeScreen(EngineState *s, int argc, reg_t *argv) {
int16 shakeCount = (argc > 0) ? argv[0].toUint16() : 1;
int16 directions = (argc > 1) ? argv[1].toUint16() : 1;
- g_sci->_gfxPaint->kernelShakeScreen(shakeCount, directions);
+ g_sci->_gfxScreen->kernelShakeScreen(shakeCount, directions);
return s->r_acc;
}