mirror of
https://github.com/encounter/SDL.git
synced 2025-12-21 10:49:12 +00:00
minor watcom build fixes.
This commit is contained in:
@@ -92,7 +92,11 @@ PrintJoystick(SDL_Joystick *joystick)
|
||||
static void
|
||||
DrawRect(SDL_Renderer *r, const int x, const int y, const int w, const int h)
|
||||
{
|
||||
const SDL_Rect area = { x, y, w, h };
|
||||
SDL_Rect area;
|
||||
area.x = x;
|
||||
area.y = y;
|
||||
area.w = w;
|
||||
area.h = h;
|
||||
SDL_RenderFillRect(r, &area);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user