Skip to content

Commit

Permalink
Make dot easier to see in testrelative.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed May 26, 2015
1 parent a2c28ec commit d074a53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/testrelative.c
Expand Up @@ -30,7 +30,7 @@ SDL_Event event;
static void
DrawRects(SDL_Renderer * renderer, SDL_Rect * rect)
{
SDL_SetRenderDrawColor(renderer, 255, 127, 0, 255);
SDL_SetRenderDrawColor(renderer, 255, 0, 0, 255);
SDL_RenderFillRect(renderer, rect);
}

Expand All @@ -53,7 +53,7 @@ loop(){
SDL_Renderer *renderer = state->renderers[i];
if (state->windows[i] == NULL)
continue;
SDL_SetRenderDrawColor(renderer, 0xA0, 0xA0, 0xA0, 0xFF);
SDL_SetRenderDrawColor(renderer, 0x00, 0x00, 0x00, 0xFF);
SDL_RenderClear(renderer);

/* Wrap the cursor rectangle at the screen edges to keep it visible */
Expand Down

0 comments on commit d074a53

Please sign in to comment.