mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-13 01:45:45 +00:00
Patched to compile on Visual Studio.
This commit is contained in:
parent
4ef6eddaf7
commit
bf03bec120
1 changed files with 3 additions and 2 deletions
|
|
@ -47,14 +47,15 @@ int main(int argc, char **argv)
|
|||
|
||||
while (!done)
|
||||
{
|
||||
SDL_Event e;
|
||||
int nothing_to_do = 1;
|
||||
|
||||
SDL_SetRenderDrawColor(renderer, 0, 0, 127, 255);
|
||||
SDL_RenderClear(renderer);
|
||||
SDL_SetRenderDrawColor(renderer, 255, 0, 0, 255);
|
||||
SDL_RenderFillRects(renderer, areas, SDL_arraysize(drag_areas));
|
||||
SDL_RenderPresent(renderer);
|
||||
|
||||
SDL_Event e;
|
||||
int nothing_to_do = 1;
|
||||
while (SDL_PollEvent(&e)) {
|
||||
nothing_to_do = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue