[Scummvm-git-logs] scummvm master -> cbb5a317157f8f9f9a72570215ea572b2648d673
digitall
dgturner at iee.org
Mon Sep 16 01:42:35 CEST 2019
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
cbb5a31715 DEBUGGER: Fix MSVC Warning
Commit: cbb5a317157f8f9f9a72570215ea572b2648d673
https://github.com/scummvm/scummvm/commit/cbb5a317157f8f9f9a72570215ea572b2648d673
Author: D G Turner (digitall at scummvm.org)
Date: 2019-09-16T00:39:41+01:00
Commit Message:
DEBUGGER: Fix MSVC Warning
This was reported by Henke37 on IRC.
Changed paths:
gui/debugger.cpp
diff --git a/gui/debugger.cpp b/gui/debugger.cpp
index 43f6009..2e8ae1c 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");
More information about the Scummvm-git-logs
mailing list