drw: fixup drw_rect function

This commit is contained in:
Markus Teich
2015-04-12 22:56:56 +02:00
parent edb657eb96
commit 87ef23296b
2 changed files with 8 additions and 10 deletions

2
drw.h
View File

@ -57,7 +57,7 @@ void drw_setfont(Drw *drw, Fnt *font);
void drw_setscheme(Drw *drw, Scm *scm);
/* Drawing functions */
void drw_rect(Drw *drw, int x, int y, unsigned int w, unsigned int h, int filled, int empty, int invert);
void drw_rect(Drw *drw, int x, int y, unsigned int w, unsigned int h, int filled, int invert);
int drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, const char *text, int invert);
/* Map functions */