Skip to content

Commit

Permalink
BASE: Construct empty String instead of using "".
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Schickel committed Apr 1, 2012
1 parent 2388477 commit a54045f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/main.cpp
Expand Up @@ -207,7 +207,7 @@ static Common::Error runGame(const EnginePlugin *plugin, OSystem &system, const
engine->initKeymap();

// Set default values for all of the custom engine options
const ExtraGuiOptions engineOptions = (*plugin)->getExtraGuiOptions("");
const ExtraGuiOptions engineOptions = (*plugin)->getExtraGuiOptions(Common::String());
for (uint i = 0; i < engineOptions.size(); i++) {
ConfMan.registerDefault(engineOptions[i].configOption, engineOptions[i].defaultState);
}
Expand Down

0 comments on commit a54045f

Please sign in to comment.