diff options
author | Borja Lorente | 2016-07-31 17:28:42 +0200 |
---|---|---|
committer | Borja Lorente | 2016-08-02 08:33:50 +0200 |
commit | a0bea8567b9f0d8751815ecbfab0c952fd7b80b7 (patch) | |
tree | b75c7f97110eac73283c09a0bb2058ccf5df8858 | |
parent | 6d8b6ad4f82dbb1d81d201d7def2572e84a159b3 (diff) | |
download | scummvm-rg350-a0bea8567b9f0d8751815ecbfab0c952fd7b80b7.tar.gz scummvm-rg350-a0bea8567b9f0d8751815ecbfab0c952fd7b80b7.tar.bz2 scummvm-rg350-a0bea8567b9f0d8751815ecbfab0c952fd7b80b7.zip |
WAGE: Revert indentation
-rw-r--r-- | engines/wage/design.cpp | 8 | ||||
-rw-r--r-- | engines/wage/gui.cpp | 20 |
2 files changed, 14 insertions, 14 deletions
diff --git a/engines/wage/design.cpp b/engines/wage/design.cpp index ef50a28133..86b325e2b9 100644 --- a/engines/wage/design.cpp +++ b/engines/wage/design.cpp @@ -102,7 +102,7 @@ void Design::paint(Graphics::ManagedSurface *surface, Graphics::MacPatterns &pat _surface->create(_bounds->width(), _bounds->height(), Graphics::PixelFormat::createFormatCLUT8()); _surface->clear(kColorGreen); - + needRender = true; } @@ -265,7 +265,7 @@ void drawPixelPlain(int x, int y, int color, void *data) { } void Design::drawRect(Graphics::ManagedSurface *surface, Common::ReadStream &in, - Graphics::MacPatterns &patterns, byte fillType, byte borderThickness, byte borderFillType) { + Graphics::MacPatterns &patterns, byte fillType, byte borderThickness, byte borderFillType) { int16 y1 = in.readSint16BE(); int16 x1 = in.readSint16BE(); int16 y2 = in.readSint16BE(); @@ -294,7 +294,7 @@ void Design::drawRect(Graphics::ManagedSurface *surface, Common::ReadStream &in, } void Design::drawRoundRect(Graphics::ManagedSurface *surface, Common::ReadStream &in, - Graphics::MacPatterns &patterns, byte fillType, byte borderThickness, byte borderFillType) { + Graphics::MacPatterns &patterns, byte fillType, byte borderThickness, byte borderFillType) { int16 y1 = in.readSint16BE(); int16 x1 = in.readSint16BE(); int16 y2 = in.readSint16BE(); @@ -397,7 +397,7 @@ void Design::drawPolygon(Graphics::ManagedSurface *surface, Common::ReadStream & } void Design::drawOval(Graphics::ManagedSurface *surface, Common::ReadStream &in, - Graphics::MacPatterns &patterns, byte fillType, byte borderThickness, byte borderFillType) { + Graphics::MacPatterns &patterns, byte fillType, byte borderThickness, byte borderFillType) { int16 y1 = in.readSint16BE(); int16 x1 = in.readSint16BE(); int16 y2 = in.readSint16BE(); diff --git a/engines/wage/gui.cpp b/engines/wage/gui.cpp index a60395fb69..86c2a9bfad 100644 --- a/engines/wage/gui.cpp +++ b/engines/wage/gui.cpp @@ -66,18 +66,18 @@ static const Graphics::MenuData menuSubItems[] = { { kMenuHighLevel, "Edit", 0, 0, false }, { kMenuFile, "New", kMenuActionNew, 0, false }, { kMenuFile, "Open...", kMenuActionOpen, 0, true }, - { kMenuFile, "Close", kMenuActionClose, 0, true }, - { kMenuFile, "Save", kMenuActionSave, 0, true }, + { kMenuFile, "Close", kMenuActionClose, 0, true }, + { kMenuFile, "Save", kMenuActionSave, 0, true }, { kMenuFile, "Save as...", kMenuActionSaveAs, 0, true }, { kMenuFile, "Revert", kMenuActionRevert, 0, false }, - { kMenuFile, "Quit", kMenuActionQuit, 0, true }, - - { kMenuEdit, "Undo", kMenuActionUndo, 'Z', false }, - { kMenuEdit, NULL, 0, 0, false }, - { kMenuEdit, "Cut", kMenuActionCut, 'K', false }, - { kMenuEdit, "Copy", kMenuActionCopy, 'C', false }, - { kMenuEdit, "Paste", kMenuActionPaste, 'V', false }, - { kMenuEdit, "Clear", kMenuActionClear, 'B', false }, + { kMenuFile, "Quit", kMenuActionQuit, 0, true }, + + { kMenuEdit, "Undo", kMenuActionUndo, 'Z', false }, + { kMenuEdit, NULL, 0, 0, false }, + { kMenuEdit, "Cut", kMenuActionCut, 'K', false }, + { kMenuEdit, "Copy", kMenuActionCopy, 'C', false }, + { kMenuEdit, "Paste", kMenuActionPaste, 'V', false }, + { kMenuEdit, "Clear", kMenuActionClear, 'B', false }, { 0, NULL, 0, 0, false } }; |