Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
indent
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 30, 2008
1 parent 62177cc commit a158763
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/video/win32/SDL_gdirender.c
Expand Up @@ -604,7 +604,8 @@ GDI_RenderPoint(SDL_Renderer * renderer, int x, int y)
SDL_AddDirtyRect(&data->dirty, &rect);
}

SetPixel(data->current_hdc, x, y, RGB(renderer->r, renderer->g, renderer->b));
SetPixel(data->current_hdc, x, y,
RGB(renderer->r, renderer->g, renderer->b));
return 0;
}

Expand Down

0 comments on commit a158763

Please sign in to comment.