diff options
| author | D G Turner | 2019-09-16 00:39:41 +0100 | 
|---|---|---|
| committer | D G Turner | 2019-09-16 00:39:41 +0100 | 
| commit | cbb5a317157f8f9f9a72570215ea572b2648d673 (patch) | |
| tree | dcf796c22a704f38ef8a234a439e1a3a35370584 | |
| parent | 78495ae462ee8f7e2b6bd7eed117005865879fca (diff) | |
| download | scummvm-rg350-cbb5a317157f8f9f9a72570215ea572b2648d673.tar.gz scummvm-rg350-cbb5a317157f8f9f9a72570215ea572b2648d673.tar.bz2 scummvm-rg350-cbb5a317157f8f9f9a72570215ea572b2648d673.zip | |
DEBUGGER: Fix MSVC Warning
This was reported by Henke37 on IRC.
| -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"); | 
