- fixed: SBar_SetClipRect had a superfluous argument resulting in incorrect behavior

This commit is contained in:
Christoph Oelckers 2018-12-04 19:14:14 +01:00
commit 3b5ce4ecca
2 changed files with 9 additions and 1 deletions

View file

@ -2283,7 +2283,7 @@ DEFINE_ACTION_FUNCTION_NATIVE(DBaseStatusBar, Fill, SBar_Fill)
return 0;
}
static void SBar_SetClipRect(DBaseStatusBar *self, int color, double x, double y, double w, double h, int flags)
static void SBar_SetClipRect(DBaseStatusBar *self, double x, double y, double w, double h, int flags)
{
self->SetClipRect(x, y, w, h, flags);
}