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:
Misa
2020-04-01 15:47:35 -07:00
committed by Ethan Lee
parent 5c60b8df5f
commit 6a28c5de30
3 changed files with 10 additions and 10 deletions

View File

@@ -161,7 +161,7 @@ public:
void drawbackground(int t);
void drawtile3( int x, int y, int t, int off );
void drawentcolours( int x, int y, int t);
void drawtile2( int x, int y, int t, int r, int g, int b );
void drawtile2( int x, int y, int t );
void drawtile( int x, int y, int t );
void drawtowertile( int x, int y, int t );
void drawtowertile3( int x, int y, int t, int off );