diff options
Diffstat (limited to 'engines/scumm/scumm.cpp')
| -rw-r--r-- | engines/scumm/scumm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp index e153b5efe6..1b6058461c 100644 --- a/engines/scumm/scumm.cpp +++ b/engines/scumm/scumm.cpp @@ -988,7 +988,7 @@ int ScummEngine::init() { tmpBuf1 = "maniac1.dsk"; tmpBuf2 = "maniac2.dsk"; - _fileHandle = new ScummC64File(tmpBuf1, tmpBuf2, _game); + _fileHandle = new ScummDiskImage(tmpBuf1, tmpBuf2, _game); _containerFile = tmpBuf1; _filenamePattern.pattern = "%.2d.LFL"; @@ -1005,7 +1005,7 @@ int ScummEngine::init() { tmpBuf2 = "zak2.d64"; } - _fileHandle = new ScummC64File(tmpBuf1, tmpBuf2, _game); + _fileHandle = new ScummDiskImage(tmpBuf1, tmpBuf2, _game); _containerFile = tmpBuf1; _filenamePattern.pattern = "%.2d.LFL"; |
