aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter_v6.cpp
diff options
context:
space:
mode:
authorSven Hesse2009-07-05 11:29:54 +0000
committerSven Hesse2009-07-05 11:29:54 +0000
commit7e11c18fa2dfa8d4b6d6916b02af84043151a6d2 (patch)
treeebbf7fbb59aa8d9c72a1c264a1313148599dba92 /engines/gob/inter_v6.cpp
parent14172febf717702421332dc599e4970a578336cb (diff)
downloadscummvm-rg350-7e11c18fa2dfa8d4b6d6916b02af84043151a6d2.tar.gz
scummvm-rg350-7e11c18fa2dfa8d4b6d6916b02af84043151a6d2.tar.bz2
scummvm-rg350-7e11c18fa2dfa8d4b6d6916b02af84043151a6d2.zip
Putting the Urban noCD check into Init_v6::initGame()
svn-id: r42130
Diffstat (limited to 'engines/gob/inter_v6.cpp')
-rw-r--r--engines/gob/inter_v6.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/inter_v6.cpp b/engines/gob/inter_v6.cpp
index b366d39d0d..3c71b3cd91 100644
--- a/engines/gob/inter_v6.cpp
+++ b/engines/gob/inter_v6.cpp
@@ -189,7 +189,7 @@ void Inter_v6::o6_openItk() {
// (it checks CD1.ITK - CD4.ITK and the first that's found determines
// the CD number), while its NO_CD modus wants everything in CD1.ITK.
// So we just open the other ITKs, too.
- if (_vm->_game->_noCd && !scumm_stricmp(fileName, "CD1.ITK")) {
+ if (_vm->_global->_noCd && !scumm_stricmp(fileName, "CD1.ITK")) {
_vm->_dataIO->openDataFile("CD2.ITK", true);
_vm->_dataIO->openDataFile("CD3.ITK", true);
_vm->_dataIO->openDataFile("CD4.ITK", true);