aboutsummaryrefslogtreecommitdiff
path: root/engines/neverhood/neverhood.cpp
diff options
context:
space:
mode:
authorjohndoe1232011-06-24 13:12:42 +0000
committerWillem Jan Palenstijn2013-05-08 20:30:57 +0200
commit3b00cfa669a94490e727b065f14fb9216d43351c (patch)
tree0c7c99882cc330b842fd3e170ebf633c4aac0461 /engines/neverhood/neverhood.cpp
parent52e0ac85db1b1bc7f2670498d019cf982c16d413 (diff)
downloadscummvm-rg350-3b00cfa669a94490e727b065f14fb9216d43351c.tar.gz
scummvm-rg350-3b00cfa669a94490e727b065f14fb9216d43351c.tar.bz2
scummvm-rg350-3b00cfa669a94490e727b065f14fb9216d43351c.zip
NEVERHOOD: Start with the blb archive class
Diffstat (limited to 'engines/neverhood/neverhood.cpp')
-rw-r--r--engines/neverhood/neverhood.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/engines/neverhood/neverhood.cpp b/engines/neverhood/neverhood.cpp
index 9c464b9a83..873d7ff8ed 100644
--- a/engines/neverhood/neverhood.cpp
+++ b/engines/neverhood/neverhood.cpp
@@ -20,7 +20,6 @@
*
*/
-#include "common/algorithm.h"
#include "common/events.h"
#include "common/keyboard.h"
#include "common/file.h"
@@ -35,10 +34,10 @@
#include "engines/util.h"
-#include "audio/mididrv.h"
#include "audio/mixer.h"
#include "neverhood/neverhood.h"
+#include "neverhood/blbarchive.h"
namespace Neverhood {
@@ -68,6 +67,12 @@ Common::Error NeverhoodEngine::run() {
_isSaveAllowed = false;
+
+ BlbArchive *blb = new BlbArchive();
+ blb->open("m.blb");
+
+ delete blb;
+
return Common::kNoError;
}