diff options
Diffstat (limited to 'engines/agos/string_pn.cpp')
-rw-r--r-- | engines/agos/string_pn.cpp | 4 |
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--; } |