aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/dm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/dm/dm.cpp')
-rw-r--r--engines/dm/dm.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/engines/dm/dm.cpp b/engines/dm/dm.cpp
index b0c281a12b..ba6c326db8 100644
--- a/engines/dm/dm.cpp
+++ b/engines/dm/dm.cpp
@@ -21,9 +21,8 @@ DMEngine::DMEngine(OSystem *syst) : Engine(syst), _console(nullptr) {
// Do these from run
//Specify all default directories
- const Common::FSNode gameDataDir(ConfMan.get("example"));
- SearchMan.addSubDirectoryMatching(gameDataDir, "example2");
-
+ //const Common::FSNode gameDataDir(ConfMan.get("example"));
+ //SearchMan.addSubDirectoryMatching(gameDataDir, "example2");
DebugMan.addDebugChannel(kDMDebugExample, "example", "example desc");
// regiser random source
@@ -55,6 +54,9 @@ Common::Error DMEngine::run() {
// Run main loop
debug("DMEngine:: start main loop");
+ while (true)
+ debug("Run!");
+
return Common::kNoError;
}