aboutsummaryrefslogtreecommitdiff
path: root/base/main.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-11-08 22:05:58 +0000
committerPaweł Kołodziejski2003-11-08 22:05:58 +0000
commitbd972c97e57234dadd830fef118139c0bf9c71e4 (patch)
treeab5db5620c273d29994a3719a6f3012313dd2f71 /base/main.cpp
parent1f9e408e2fab0f11a648d113fd7e4a19f113f234 (diff)
downloadscummvm-rg350-bd972c97e57234dadd830fef118139c0bf9c71e4.tar.gz
scummvm-rg350-bd972c97e57234dadd830fef118139c0bf9c71e4.tar.bz2
scummvm-rg350-bd972c97e57234dadd830fef118139c0bf9c71e4.zip
cleanup whitespaces
svn-id: r11218
Diffstat (limited to 'base/main.cpp')
-rw-r--r--base/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/base/main.cpp b/base/main.cpp
index 4c335eef7e..55177783df 100644
--- a/base/main.cpp
+++ b/base/main.cpp
@@ -232,7 +232,7 @@ int main(int argc, char *argv[]) {
// Update the config file
ConfMan.set("versioninfo", gScummVMVersion, Common::ConfigManager::kApplicationDomain);
-
+
// Load the plugins
PluginManager::instance().loadPlugins();
@@ -242,7 +242,7 @@ int main(int argc, char *argv[]) {
// Create the system object
OSystem *system = OSystem::instance();
-
+
// Create the timer services
g_timer = new Timer(system);
@@ -270,7 +270,7 @@ int main(int argc, char *argv[]) {
// See if the game should default to 1x scaler
if (!ConfMan.hasKey("gfx_mode", detector._targetName) &&
- (detector._game.features & GF_DEFAULT_TO_1X_SCALER)) {
+ (detector._game.features & GF_DEFAULT_TO_1X_SCALER)) {
prop.gfx_mode = GFX_NORMAL;
system->property(OSystem::PROP_SET_GFX_MODE, &prop);
} else
@@ -279,7 +279,7 @@ int main(int argc, char *argv[]) {
prop.gfx_mode = detector.parseGraphicsMode(ConfMan.get("gfx_mode"));
system->property(OSystem::PROP_SET_GFX_MODE, &prop);
}
-
+
// (De)activate fullscreen mode as determined by the config settings
if (ConfMan.getBool("fullscreen") != (system->property(OSystem::PROP_GET_FULLSCREEN, 0) != 0))
system->property(OSystem::PROP_TOGGLE_FULLSCREEN, 0);