Fix code formatting (esp. 'if(' -> 'if (' etc., but also indention and other things)
svn-id: r44495
This commit is contained in:
parent
25dde91c7c
commit
8ba75fc522
90 changed files with 694 additions and 709 deletions
|
@ -125,7 +125,7 @@ Common::InSaveFile *Ps2SaveFileManager::openForLoading(const Common::String &fil
|
|||
|
||||
Common::FSNode file(path);
|
||||
|
||||
if(!file.exists())
|
||||
if (!file.exists())
|
||||
return NULL;
|
||||
|
||||
sf = file.createReadStream();
|
||||
|
@ -133,7 +133,7 @@ Common::InSaveFile *Ps2SaveFileManager::openForLoading(const Common::String &fil
|
|||
} else {
|
||||
Common::FSNode file = savePath.getChild(filename);
|
||||
|
||||
if(!file.exists())
|
||||
if (!file.exists())
|
||||
return NULL;
|
||||
|
||||
sf = file.createReadStream();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue