diff options
author | Nicola Mettifogo | 2007-02-12 19:47:42 +0000 |
---|---|---|
committer | Nicola Mettifogo | 2007-02-12 19:47:42 +0000 |
commit | 852803d6e0f3a29f04692a09feabe60a89ff4356 (patch) | |
tree | e2bfc6719b4e3042614370c77074044a2e5f0422 /engines | |
parent | 7d1e5b15ce69bcd86261b15abc9536cf0bb99b34 (diff) | |
download | scummvm-rg350-852803d6e0f3a29f04692a09feabe60a89ff4356.tar.gz scummvm-rg350-852803d6e0f3a29f04692a09feabe60a89ff4356.tar.bz2 scummvm-rg350-852803d6e0f3a29f04692a09feabe60a89ff4356.zip |
removed warnings
svn-id: r25534
Diffstat (limited to 'engines')
-rw-r--r-- | engines/engine.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/engine.cpp b/engines/engine.cpp index 6749b9027e..b6837d5ee2 100644 --- a/engines/engine.cpp +++ b/engines/engine.cpp @@ -42,8 +42,8 @@ Engine::Engine(OSystem *syst) _mixer(_system->getMixer()), _timer(_system->getTimerManager()), _saveFileMan(_system->getSavefileManager()), - _gameDataPath(ConfMan.get("path")), - _targetName(ConfMan.getActiveDomainName()) { + _targetName(ConfMan.getActiveDomainName()), + _gameDataPath(ConfMan.get("path")) { g_engine = this; _autosavePeriod = ConfMan.getInt("autosave_period"); @@ -88,7 +88,7 @@ void Engine::initCommonGFX(bool defaultTo1XScaler) { // settings: Via the config file, via the command line, and via in-game // hotkeys. // Any global or command line settings already have been applied at the time - // we get here. Hence we only do something + // we get here. Hence we only do something // (De)activate aspect-ratio correction as determined by the config settings if (gameDomain && gameDomain->contains("aspect_ratio")) |