aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/gui-console.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2017-07-28 15:04:24 +0200
committerEugene Sandulenko2017-08-01 10:42:21 +0200
commit6443bee147a1f5a5fd969d1e59695e13e9f79fb6 (patch)
tree9c5fbd47e6531328ca9e05e5d41b2b0f5c71c2e0 /engines/wage/gui-console.cpp
parentbfb757c3c0d3e7b1281ae3059e31cd53742644ab (diff)
downloadscummvm-rg350-6443bee147a1f5a5fd969d1e59695e13e9f79fb6.tar.gz
scummvm-rg350-6443bee147a1f5a5fd969d1e59695e13e9f79fb6.tar.bz2
scummvm-rg350-6443bee147a1f5a5fd969d1e59695e13e9f79fb6.zip
JANITORIAL: Fix code identation
Diffstat (limited to 'engines/wage/gui-console.cpp')
-rw-r--r--engines/wage/gui-console.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wage/gui-console.cpp b/engines/wage/gui-console.cpp
index b97b76e635..e7598839e8 100644
--- a/engines/wage/gui-console.cpp
+++ b/engines/wage/gui-console.cpp
@@ -224,7 +224,7 @@ void Gui::renderConsole(Graphics::ManagedSurface *g, const Common::Rect &r) {
#ifndef USE_MACTEXTWINDOW
- for (int line = firstLine; line < lastLine; line++) {
+ for (int line = firstLine; line < lastLine; line++) {
const char *str = _lines[line].c_str();
int color = kColorBlack;
@@ -348,7 +348,7 @@ void Gui::drawInput() {
appendText(_engine->_inputText.c_str());
_inputTextLineNum = _out.size() - 1;
- #ifndef USE_MACTEXTWINDOW
+#ifndef USE_MACTEXTWINDOW
const Graphics::Font *font = getConsoleFont();
if (_engine->_inputText.contains('\n')) {