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:
parent
1c02487a00
commit
c5528a631d
6 changed files with 34 additions and 14 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue