aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/dispman.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2015-12-18 05:42:26 +0200
committerWillem Jan Palenstijn2015-12-23 21:34:09 +0100
commitc5528a631d63e47b830c89258507ebb681d5b261 (patch)
treeede1c9171e876c5a2d594ff4559e9d5e3ed1a4dc /engines/lab/dispman.cpp
parent1c02487a00e100dcae1755742d2ab4412688c5aa (diff)
downloadscummvm-rg350-c5528a631d63e47b830c89258507ebb681d5b261.tar.gz
scummvm-rg350-c5528a631d63e47b830c89258507ebb681d5b261.tar.bz2
scummvm-rg350-c5528a631d63e47b830c89258507ebb681d5b261.zip
LAB: Handle some differences of the Amiga version
The Amiga version is still not working, as the CONTROL and INV files are missing, and the format of the font files is different
Diffstat (limited to 'engines/lab/dispman.cpp')
-rw-r--r--engines/lab/dispman.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/lab/dispman.cpp b/engines/lab/dispman.cpp
index 77245ef843..3702e70b74 100644
--- a/engines/lab/dispman.cpp
+++ b/engines/lab/dispman.cpp
@@ -405,6 +405,7 @@ void DisplayMan::setUpScreens() {
createScreen(_vm->_isHiRes);
+ // TODO: The CONTROL file is not present in the Amiga version
Common::File *controlFile = _vm->_resource->openDataFile("P:Control");
for (uint16 i = 0; i < 20; i++)
_vm->_moveImages[i] = new Image(controlFile, _vm);
@@ -426,6 +427,7 @@ void DisplayMan::setUpScreens() {
moveButtonList->push_back(e->createButton(257, y, 8, VKEY_RTARROW, moveImages[18], moveImages[19]));
moveButtonList->push_back(e->createButton(289, y, 9, 'p', moveImages[10], moveImages[11]));
+ // TODO: The INV file is not present in the Amiga version
Common::File *invFile = _vm->_resource->openDataFile("P:Inv");
if (_vm->getPlatform() == Common::kPlatformWindows) {
for (uint16 imgIdx = 0; imgIdx < 10; imgIdx++)