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
This commit is contained in:
Filippos Karapetis 2015-12-18 05:42:26 +02:00 committed by Willem Jan Palenstijn
parent 1c02487a00
commit c5528a631d
6 changed files with 34 additions and 14 deletions

View file

@ -1154,7 +1154,10 @@ void LabEngine::go() {
_graphics->setUpScreens();
_event->initMouse();
_msgFont = _resource->getFont("P:AvanteG.12");
if (getPlatform() != Common::kPlatformAmiga)
_msgFont = _resource->getFont("F:AvanteG.12");
else
_msgFont = _resource->getFont("F:Map.fon");
_event->mouseHide();
Intro *intro = new Intro(this);