aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v7he.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2005-07-30 21:11:48 +0000
committerEugene Sandulenko2005-07-30 21:11:48 +0000
commit6b4484472b79dc7ea7d1ce545a28fba7d3b7696f (patch)
treec44c4e61f18ddd537f7082cb48869cf33d422fbd /scumm/script_v7he.cpp
parent86ab70b149e5cd00cf54f2e41896e2c4e16795e4 (diff)
downloadscummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.gz
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.bz2
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.zip
Remove trailing whitespaces.
svn-id: r18604
Diffstat (limited to 'scumm/script_v7he.cpp')
-rw-r--r--scumm/script_v7he.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/scumm/script_v7he.cpp b/scumm/script_v7he.cpp
index 99ef7c0157..da2eef65e0 100644
--- a/scumm/script_v7he.cpp
+++ b/scumm/script_v7he.cpp
@@ -387,7 +387,7 @@ int ScummEngine_v70he::getStringCharWidth(byte chr) {
if (offs) {
spacing = ptr[offs] + (signed char)ptr[offs + 2];
}
-
+
return spacing;
}
@@ -946,7 +946,7 @@ void ScummEngine_v70he::o70_writeINI() {
int type, value;
byte option[256], string[256];
int len;
-
+
type = pop();
value = pop();
@@ -956,13 +956,13 @@ void ScummEngine_v70he::o70_writeINI() {
switch (type) {
case 1: // number
- ConfMan.set((char *)option, value);
+ ConfMan.set((char *)option, value);
break;
case 2: // string
convertMessageToString(_scriptPointer, string, sizeof(string));
len = resStrLen(_scriptPointer);
_scriptPointer += len + 1;
- ConfMan.set((char *)option, (char *)string);
+ ConfMan.set((char *)option, (char *)string);
break;
default:
error("o70_writeINI: default type %d", type);