diff options
author | Max Horn | 2006-05-05 00:26:03 +0000 |
---|---|---|
committer | Max Horn | 2006-05-05 00:26:03 +0000 |
commit | dad44b45d31319625cf1f0bf884c856bee4205d5 (patch) | |
tree | 2463bf3cfc4281762d0f711469667ec68350333d /backends/dc | |
parent | b56139b3aac0c4b630742f2d3266e6fac4b6301e (diff) | |
download | scummvm-rg350-dad44b45d31319625cf1f0bf884c856bee4205d5.tar.gz scummvm-rg350-dad44b45d31319625cf1f0bf884c856bee4205d5.tar.bz2 scummvm-rg350-dad44b45d31319625cf1f0bf884c856bee4205d5.zip |
Removed Base::setTarget, and some minor cleanup & tweaks
svn-id: r22356
Diffstat (limited to 'backends/dc')
-rw-r--r-- | backends/dc/dcmain.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/backends/dc/dcmain.cpp b/backends/dc/dcmain.cpp index 83544ae7c6..4b03ec1551 100644 --- a/backends/dc/dcmain.cpp +++ b/backends/dc/dcmain.cpp @@ -24,7 +24,6 @@ #include <common/stdafx.h> #include <common/scummsys.h> #include <base/engine.h> -#include <base/game.h> #include <base/main.h> #include <base/plugins.h> #include "dc.h" @@ -224,7 +223,7 @@ int DCLauncherDialog::runModal() ConfMan.set("path", dir, base); // Set the target. - Base::setTarget(base); + ConfMan.setActiveDomain(base); return 0; } |