Code formatting fixes

svn-id: r28945
This commit is contained in:
Max Horn 2007-09-18 20:16:33 +00:00
parent c3d3aebe87
commit 3abc11611e
76 changed files with 602 additions and 602 deletions

View file

@ -50,14 +50,14 @@ int AGOSEngine::countSaveGames() {
memset(marks, false, 256 * sizeof(bool)); //assume no savegames for this title
filenames = _saveFileMan->listSavefiles(prefix);
for(Common::StringList::const_iterator file = filenames.begin(); file != filenames.end(); file++){
for (Common::StringList::const_iterator file = filenames.begin(); file != filenames.end(); file++){
//Obtain the last 3 digits of the filename, since they correspond to the save slot
slot[0] = file->c_str()[file->size()-3];
slot[1] = file->c_str()[file->size()-2];
slot[2] = file->c_str()[file->size()-1];
slotNum = atoi(slot);
if(slotNum >= 0 && slotNum < 256)
if (slotNum >= 0 && slotNum < 256)
marks[slotNum] = true; //mark this slot as valid
}