aboutsummaryrefslogtreecommitdiff
path: root/sword2/debug.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2005-05-12 13:12:15 +0000
committerTorbjörn Andersson2005-05-12 13:12:15 +0000
commitd34e5fc605b06c0ad8f5ac7e6ccbc6f8698ddec2 (patch)
tree38056f06dfb05964f15f120be8d9aaaf20f339b6 /sword2/debug.cpp
parentd6a20a231b30242645860f453895f11d67a624e5 (diff)
downloadscummvm-rg350-d34e5fc605b06c0ad8f5ac7e6ccbc6f8698ddec2.tar.gz
scummvm-rg350-d34e5fc605b06c0ad8f5ac7e6ccbc6f8698ddec2.tar.bz2
scummvm-rg350-d34e5fc605b06c0ad8f5ac7e6ccbc6f8698ddec2.zip
Whitespace: "(type *)something" instead of "(type *) something", because
that's how we write it in most other places. svn-id: r18069
Diffstat (limited to 'sword2/debug.cpp')
-rw-r--r--sword2/debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sword2/debug.cpp b/sword2/debug.cpp
index 11090c3960..cc4745bc46 100644
--- a/sword2/debug.cpp
+++ b/sword2/debug.cpp
@@ -53,7 +53,7 @@ void Debugger::makeDebugTextBlock(char *text, int16 x, int16 y) {
assert(blockNo < MAX_DEBUG_TEXTS);
- _debugTextBlocks[blockNo] = _vm->_fontRenderer->buildNewBloc((byte *) text, x, y, 640 - x, 0, RDSPR_DISPLAYALIGN, CONSOLE_FONT_ID, NO_JUSTIFICATION);
+ _debugTextBlocks[blockNo] = _vm->_fontRenderer->buildNewBloc((byte *)text, x, y, 640 - x, 0, RDSPR_DISPLAYALIGN, CONSOLE_FONT_ID, NO_JUSTIFICATION);
}
void Debugger::buildDebugText() {