diff options
Diffstat (limited to 'gui')
-rw-r--r-- | gui/debugger.cpp | 2 |
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"); |