aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/util.cpp
diff options
context:
space:
mode:
authorArnaud Boutonné2010-10-25 13:31:01 +0000
committerArnaud Boutonné2010-10-25 13:31:01 +0000
commit35f220ace2ae1839f8a0706fc0e3de1ad39a6045 (patch)
treee070ebf4e9e901c19e86b93711937dec63b3f322 /engines/hugo/util.cpp
parent4e9a2798ef9aef3b28e595adeaa0873fd1ce6171 (diff)
downloadscummvm-rg350-35f220ace2ae1839f8a0706fc0e3de1ad39a6045.tar.gz
scummvm-rg350-35f220ace2ae1839f8a0706fc0e3de1ad39a6045.tar.bz2
scummvm-rg350-35f220ace2ae1839f8a0706fc0e3de1ad39a6045.zip
HUGO: cleanup: Suppress trailing spaces and tabs
svn-id: r53825
Diffstat (limited to 'engines/hugo/util.cpp')
-rw-r--r--engines/hugo/util.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/hugo/util.cpp b/engines/hugo/util.cpp
index 8cca4b7d84..2def4a4dba 100644
--- a/engines/hugo/util.cpp
+++ b/engines/hugo/util.cpp
@@ -78,14 +78,14 @@ void Utils::reverseByte(byte *data) {
if (*data & maskIn)
result |= maskOut;
}
-
+
*data = result;
}
char *Utils::Box(box_t dismiss, const char *s, ...) {
static char buffer[MAX_STRLEN + 1]; // Format text into this
- if (!s)
+ if (!s)
return 0; // NULL strings catered for
if (s[0] == '\0')