mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 01:48:15 +03:00
Remove unused arguments from Graphics::drawtile2()
The 'r', 'g', and 'b' arguments do absolutely nothing. Except unlike Graphics::drawtile(), there's only one version of Graphics::drawtile2(), so just remove those args and update callers.
This commit is contained in:
@@ -563,7 +563,7 @@ void Graphics::drawtile( int x, int y, int t )
|
||||
}
|
||||
|
||||
|
||||
void Graphics::drawtile2( int x, int y, int t, int r, int g, int b )
|
||||
void Graphics::drawtile2( int x, int y, int t )
|
||||
{
|
||||
SDL_Rect rect = { Sint16(x), Sint16(y), tiles_rect.w, tiles_rect.h };
|
||||
BlitSurfaceStandard(tiles2[t], NULL, backBuffer, &rect);
|
||||
|
||||
Reference in New Issue
Block a user