diff options
-rw-r--r-- | gui/debugger.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/debugger.cpp b/gui/debugger.cpp index 209a787be8..c9b435963d 100644 --- a/gui/debugger.cpp +++ b/gui/debugger.cpp @@ -132,7 +132,8 @@ void Debugger::debugPrintColumns(const Common::StringArray &list) { if (list.size() % columns) lines++; - + // This won't always use all available columns, but even if it did the + // number of lines should be the same so that's good enough. for (i = 0; i < lines; i++) { for (j = 0; j < columns; j++) { uint pos = i + j * lines; |