aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Hesse2010-08-08 00:36:47 +0000
committerSven Hesse2010-08-08 00:36:47 +0000
commit9c2172b90149d5c164f26444c021488f6656ef55 (patch)
tree497cdd922a17b354f77ce225d5021858807b95a2
parent167c6e8787811910d2e62393231dc98f14d70d15 (diff)
downloadscummvm-rg350-9c2172b90149d5c164f26444c021488f6656ef55.tar.gz
scummvm-rg350-9c2172b90149d5c164f26444c021488f6656ef55.tar.bz2
scummvm-rg350-9c2172b90149d5c164f26444c021488f6656ef55.zip
GOB: Fix an copy&paste error
Fixing an accidentally overwritten video file name svn-id: r51855
-rw-r--r--engines/gob/inter_fascin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/inter_fascin.cpp b/engines/gob/inter_fascin.cpp
index 4ec9139bad..304f02f4fa 100644
--- a/engines/gob/inter_fascin.cpp
+++ b/engines/gob/inter_fascin.cpp
@@ -160,7 +160,7 @@ void Inter_Fascination::oFascin_playTira(OpGobParams &params) {
vidProps.width = 128;
vidProps.height = 80;
- int vidSlot = _vm->_vidPlayer->openVideo(true, "tirb", vidProps);
+ int vidSlot = _vm->_vidPlayer->openVideo(true, "tira", vidProps);
if (vidSlot < 0)
return;