diff options
-rw-r--r-- | engines/wage/gui.cpp | 2 | ||||
-rw-r--r-- | engines/wage/macwindow.cpp | 6 | ||||
-rw-r--r-- | engines/wage/world.cpp | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/engines/wage/gui.cpp b/engines/wage/gui.cpp index 310e5734b7..099279158f 100644 --- a/engines/wage/gui.cpp +++ b/engines/wage/gui.cpp @@ -83,7 +83,7 @@ static const MenuData menuSubItems[] = { }; static void cursorTimerHandler(void *refCon) { - Gui *gui = (Gui *)refCon; + Gui *gui = (Gui *)refCon; int x = gui->_cursorX; int y = gui->_cursorY; diff --git a/engines/wage/macwindow.cpp b/engines/wage/macwindow.cpp index 8903936061..db8ef38c39 100644 --- a/engines/wage/macwindow.cpp +++ b/engines/wage/macwindow.cpp @@ -264,16 +264,16 @@ void MacWindow::setHighlight(WindowClick highlightedPart) { _highlightedPart = highlightedPart; _borderIsDirty = true; - } +} - void MacWindow::setScroll(float scrollPos, float scrollSize) { +void MacWindow::setScroll(float scrollPos, float scrollSize) { if (_scrollPos == scrollPos && _scrollSize == scrollSize) return; _scrollPos = scrollPos; _scrollSize = scrollSize; _borderIsDirty = true; - } +} void MacWindow::drawBox(Graphics::ManagedSurface *g, int x, int y, int w, int h) { diff --git a/engines/wage/world.cpp b/engines/wage/world.cpp index 716e1978c1..0e40e114b4 100644 --- a/engines/wage/world.cpp +++ b/engines/wage/world.cpp @@ -417,7 +417,7 @@ Common::String *World::loadStringFromDITL(Common::MacResManager *resMan, int res } static bool invComparator(const Obj *l, const Obj *r) { - return l->_index < r->_index; + return l->_index < r->_index; } void World::move(Obj *obj, Chr *chr) { @@ -457,7 +457,7 @@ void World::move(Obj *obj, Scene *scene, bool skipSort) { } static bool chrComparator(const Chr *l, const Chr *r) { - return l->_index < r->_index; + return l->_index < r->_index; } void World::move(Chr *chr, Scene *scene, bool skipSort) { |