Replace drawrect with draw_rect

Turns out `graphics.drawrect` exists. Well, not anymore!
This was another function from before the renderer rewrite which tried
to draw a rectangle by using four filled rectangles. We can draw
outline rectangles properly now, so let's make sure everywhere does it!
This commit is contained in:
AllyTally
2023-05-22 16:09:32 -03:00
committed by Misa Elizabeth Kai
parent d1b9f4f410
commit 8b1dcecd5a
3 changed files with 9 additions and 36 deletions

View File

@@ -296,8 +296,6 @@ public:
void drawmap(void);
void drawrect(int x, int y, int w, int h, int r, int g, int b);
void drawtowermap(void);
void drawtowerspikes(void);