From 1002b82022d359b63fb0639953775275f79364c3 Mon Sep 17 00:00:00 2001 From: Nicola Mettifogo Date: Sun, 12 Oct 2008 07:01:09 +0000 Subject: Changed BRA to use the new Common:Archive infrastructure. svn-id: r34777 --- engines/parallaction/parallaction_br.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'engines/parallaction/parallaction_br.cpp') diff --git a/engines/parallaction/parallaction_br.cpp b/engines/parallaction/parallaction_br.cpp index 835bcae47a..2988350cb4 100644 --- a/engines/parallaction/parallaction_br.cpp +++ b/engines/parallaction/parallaction_br.cpp @@ -50,7 +50,7 @@ int Parallaction_br::init() { if (getGameType() == GType_BRA) { if (getPlatform() == Common::kPlatformPC) { if (getFeatures() & GF_DEMO) { - _disk = new DosDemo_br(this); + _disk = new DosDemoDisk_br(this); } else { _disk = new DosDisk_br(this); } @@ -61,6 +61,8 @@ int Parallaction_br::init() { _disk->setLanguage(2); // NOTE: language is now hardcoded to English. Original used command-line parameters. _soundMan = new AmigaSoundMan(this); } + + _disk->init(); } else { error("unknown game type"); } @@ -236,7 +238,7 @@ void Parallaction_br::changeLocation(char *location) { _char._objs = _disk->loadObjects("icons.ico"); } - parseLocation("common"); + parseLocation("common.slf"); } freeLocation(); -- cgit v1.2.3