aboutsummaryrefslogtreecommitdiff
path: root/engines/cruise
diff options
context:
space:
mode:
authorStrangerke2014-06-01 11:39:13 +0200
committerStrangerke2014-06-01 11:50:47 +0200
commit6b8348a6bdf8b33008a2320adb10ab8c44779503 (patch)
tree054332602c882ad0d480f719067784d0211a2da9 /engines/cruise
parent094b9d18bbaa4780629ac9d8d836f20548c965dc (diff)
downloadscummvm-rg350-6b8348a6bdf8b33008a2320adb10ab8c44779503.tar.gz
scummvm-rg350-6b8348a6bdf8b33008a2320adb10ab8c44779503.tar.bz2
scummvm-rg350-6b8348a6bdf8b33008a2320adb10ab8c44779503.zip
CRUISE: Fix a CppCheck error in decompiler
Diffstat (limited to 'engines/cruise')
-rw-r--r--engines/cruise/decompiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cruise/decompiler.cpp b/engines/cruise/decompiler.cpp
index 4149c7104d..1e8b56139a 100644
--- a/engines/cruise/decompiler.cpp
+++ b/engines/cruise/decompiler.cpp
@@ -555,7 +555,7 @@ int decompMath() {
break;
}
case 4: {
- sprintf(tempbuffer, "%s\%%s", param1, param2);
+ sprintf(tempbuffer, "%s % %s", param1, param2);
pushDecomp(tempbuffer);
break;
}