aboutsummaryrefslogtreecommitdiff
path: root/gui/dialog.cpp
diff options
context:
space:
mode:
authorBastien Bouclet2018-01-27 08:59:53 +0100
committerBastien Bouclet2018-04-19 19:18:39 +0200
commit4d29ce21d01176f523d6f3b05aefa1b011fc756c (patch)
treeb5133d25662475c460df806f633f4427c0188fea /gui/dialog.cpp
parentdcfac42bb3ebec723a8762d3b2b72ff4113bf900 (diff)
downloadscummvm-rg350-4d29ce21d01176f523d6f3b05aefa1b011fc756c.tar.gz
scummvm-rg350-4d29ce21d01176f523d6f3b05aefa1b011fc756c.tar.bz2
scummvm-rg350-4d29ce21d01176f523d6f3b05aefa1b011fc756c.zip
GUI: Unify clip and non-clip draw calls
Diffstat (limited to 'gui/dialog.cpp')
-rw-r--r--gui/dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/dialog.cpp b/gui/dialog.cpp
index 6f4e8e6b44..560c29174a 100644
--- a/gui/dialog.cpp
+++ b/gui/dialog.cpp
@@ -167,7 +167,7 @@ void Dialog::drawDialog(DrawLayer layerToDraw) {
return;
g_gui.theme()->_layerToDraw = layerToDraw;
- g_gui.theme()->drawDialogBackground(Common::Rect(_x, _y, _x+_w, _y+_h), _backgroundType);
+ g_gui.theme()->drawDialogBackground(Common::Rect(_x, _y, _x + _w, _y + _h), _backgroundType);
markWidgetsAsDirty();
drawWidgets();