Comply to our coding conventions

svn-id: r17975
This commit is contained in:
Max Horn 2005-05-08 21:49:52 +00:00
parent 013e30eb38
commit cca744f69a
53 changed files with 149 additions and 149 deletions

View file

@ -71,7 +71,7 @@ int SimonEngine::display_savegame_list(int curpos, bool load, char *dst) {
slot = curpos;
while (curpos + 6 > slot) {
if(!(in = _saveFileMan->openForLoading(gen_savename(slot))))
if (!(in = _saveFileMan->openForLoading(gen_savename(slot))))
break;
in->read(dst, 18);
@ -95,7 +95,7 @@ int SimonEngine::display_savegame_list(int curpos, bool load, char *dst) {
}
} else {
if (curpos + 6 == slot) {
if((in = _saveFileMan->openForLoading(gen_savename(slot)))) {
if ((in = _saveFileMan->openForLoading(gen_savename(slot)))) {
slot++;
delete in;
}