diff options
Diffstat (limited to 'gui/newgui.cpp')
-rw-r--r-- | gui/newgui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/newgui.cpp b/gui/newgui.cpp index c46b3664f8..7de81dada7 100644 --- a/gui/newgui.cpp +++ b/gui/newgui.cpp @@ -324,7 +324,7 @@ void NewGui::line(int x, int y, int x2, int y2, NewGuiColor color) { void NewGui::blendRect(int x, int y, int w, int h, NewGuiColor color, int level) { #ifdef NEWGUI_256 - fillRect(x,y,w,h,color); + fillRect(x, y, w, h, color); #else int r, g, b; uint8 ar, ag, ab; |