diff options
-rw-r--r-- | engines/wintermute/ui/ui_object.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wintermute/ui/ui_object.cpp b/engines/wintermute/ui/ui_object.cpp index 0962d83f8b..72a601a251 100644 --- a/engines/wintermute/ui/ui_object.cpp +++ b/engines/wintermute/ui/ui_object.cpp @@ -657,12 +657,12 @@ int32 UIObject::getHeight() const { } void UIObject::setWidth(int32 width) { - assert (width >= 0); + assert(width >= 0); _width = width; } void UIObject::setHeight(int32 height) { - assert (height >= 0); + assert(height >= 0); _height = height; } |