diff options
author | Eugene Sandulenko | 2017-07-28 15:04:24 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2017-08-01 10:42:21 +0200 |
commit | 6443bee147a1f5a5fd969d1e59695e13e9f79fb6 (patch) | |
tree | 9c5fbd47e6531328ca9e05e5d41b2b0f5c71c2e0 /engines | |
parent | bfb757c3c0d3e7b1281ae3059e31cd53742644ab (diff) | |
download | scummvm-rg350-6443bee147a1f5a5fd969d1e59695e13e9f79fb6.tar.gz scummvm-rg350-6443bee147a1f5a5fd969d1e59695e13e9f79fb6.tar.bz2 scummvm-rg350-6443bee147a1f5a5fd969d1e59695e13e9f79fb6.zip |
JANITORIAL: Fix code identation
Diffstat (limited to 'engines')
-rw-r--r-- | engines/wage/gui-console.cpp | 4 | ||||
-rw-r--r-- | engines/wage/gui.h | 4 |
2 files changed, 4 insertions, 4 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')) { diff --git a/engines/wage/gui.h b/engines/wage/gui.h index 5f8be34877..53e6f998d6 100644 --- a/engines/wage/gui.h +++ b/engines/wage/gui.h @@ -186,9 +186,9 @@ public: Graphics::MacWindow *_sceneWindow; #ifdef USE_MACTEXTWINDOW - Graphics::MacTextWindow *_consoleWindow; + Graphics::MacTextWindow *_consoleWindow; #else - Graphics::MacWindow *_consoleWindow; + Graphics::MacWindow *_consoleWindow; #endif private: |