Skip to content

Commit

Permalink
SCI: fixing warning about missing braces
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Kiewitz committed Nov 16, 2013
1 parent 6ee9433 commit 2f3df97
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions engines/sci/engine/script_patches.cpp
Expand Up @@ -121,23 +121,23 @@ struct SciScriptPatcherSelector {
};

SciScriptPatcherSelector selectorTable[] = {
"cycles", -1, // system selector
"seconds", -1, // system selector
"init", -1, // system selector
"dispose", -1, // system selector
"new", -1, // system selector
"curEvent", -1, // system selector
"disable", -1, // system selector
"show", -1, // system selector
"x", -1, // system selector
"cel", -1, // system selector
"setMotion", -1, // system selector
"deskSarg", -1, // Gabriel Knight
"localize", -1, // Freddy Pharkas
"put", -1, // Police Quest 1 VGA
"solvePuzzle", -1, // Quest For Glory 3
"timesShownID", -1, // Space Quest 1 VGA
NULL, -1
{ "cycles", -1, }, // system selector
{ "seconds", -1, }, // system selector
{ "init", -1, }, // system selector
{ "dispose", -1, }, // system selector
{ "new", -1, }, // system selector
{ "curEvent", -1, }, // system selector
{ "disable", -1, }, // system selector
{ "show", -1, }, // system selector
{ "x", -1, }, // system selector
{ "cel", -1, }, // system selector
{ "setMotion", -1, }, // system selector
{ "deskSarg", -1, }, // Gabriel Knight
{ "localize", -1, }, // Freddy Pharkas
{ "put", -1, }, // Police Quest 1 VGA
{ "solvePuzzle", -1, }, // Quest For Glory 3
{ "timesShownID", -1, }, // Space Quest 1 VGA
{ NULL, -1 }
};

enum ScriptPatcherSelectors {
Expand Down

0 comments on commit 2f3df97

Please sign in to comment.