aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/string_pn.cpp
diff options
context:
space:
mode:
authorMax Horn2009-09-30 16:16:53 +0000
committerMax Horn2009-09-30 16:16:53 +0000
commit8ba75fc522f16844524dd4d6f88c3851e2402969 (patch)
treedf25c20389e3e706d508f37914dedc73c6479f00 /engines/agos/string_pn.cpp
parent25dde91c7c6c7da52636e3daa34bd9eee5d9dcb9 (diff)
downloadscummvm-rg350-8ba75fc522f16844524dd4d6f88c3851e2402969.tar.gz
scummvm-rg350-8ba75fc522f16844524dd4d6f88c3851e2402969.tar.bz2
scummvm-rg350-8ba75fc522f16844524dd4d6f88c3851e2402969.zip
Fix code formatting (esp. 'if(' -> 'if (' etc., but also indention and other things)
svn-id: r44495
Diffstat (limited to 'engines/agos/string_pn.cpp')
-rw-r--r--engines/agos/string_pn.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/agos/string_pn.cpp b/engines/agos/string_pn.cpp
index 0872e9d589..a4e40d8306 100644
--- a/engines/agos/string_pn.cpp
+++ b/engines/agos/string_pn.cpp
@@ -23,8 +23,6 @@
*
*/
-
-
#include "agos/agos.h"
#include "agos/intern.h"
@@ -34,7 +32,7 @@ uint32 AGOSEngine_PN::ftext(uint32 base, int n) {
uint32 b = base;
int ct = n;
while (ct) {
- while(_textBase[b++])
+ while (_textBase[b++])
;
ct--;
}