diff options
Diffstat (limited to 'engines/wage/macwindow.cpp')
-rw-r--r-- | engines/wage/macwindow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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) { |