aboutsummaryrefslogtreecommitdiff
path: root/gui/debugger.cpp
diff options
context:
space:
mode:
authorD G Turner2019-09-16 00:39:41 +0100
committerD G Turner2019-09-16 00:39:41 +0100
commitcbb5a317157f8f9f9a72570215ea572b2648d673 (patch)
treedcf796c22a704f38ef8a234a439e1a3a35370584 /gui/debugger.cpp
parent78495ae462ee8f7e2b6bd7eed117005865879fca (diff)
downloadscummvm-rg350-cbb5a317157f8f9f9a72570215ea572b2648d673.tar.gz
scummvm-rg350-cbb5a317157f8f9f9a72570215ea572b2648d673.tar.bz2
scummvm-rg350-cbb5a317157f8f9f9a72570215ea572b2648d673.zip
DEBUGGER: Fix MSVC Warning
This was reported by Henke37 on IRC.
Diffstat (limited to 'gui/debugger.cpp')
-rw-r--r--gui/debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/debugger.cpp b/gui/debugger.cpp
index 43f600922a..2e8ae1ca01 100644
--- a/gui/debugger.cpp
+++ b/gui/debugger.cpp
@@ -139,7 +139,7 @@ void Debugger::debugPrintColumns(const Common::StringArray &list) {
for (j = 0; j < columns; j++) {
uint pos = i + j * lines;
if (pos < list.size()) {
- debugPrintf("%*s", -columnWidth, list[pos].c_str());
+ debugPrintf("%*s", -1 * columnWidth, list[pos].c_str());
}
}
debugPrintf("\n");