Remove unused arguments from Graphics::drawtile()

The 'r', 'g', and 'b' arguments do absolutely nothing, even though
they're used in the version of Graphics::drawtile() that's more used. So
delete the other version without those extra arguments, and then remove
the extra arguments from the remaining version. And then update callers.
This commit is contained in:
Misa
2020-04-01 15:42:22 -07:00
committed by Ethan Lee
parent af8d7345c9
commit 5c60b8df5f
3 changed files with 25 additions and 34 deletions

View File

@@ -162,12 +162,10 @@ public:
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 drawtile( int x, int y, int t, int r, int g, int b );
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 );
void drawtile(int x, int y, int t);
void drawmap();
void drawforetile(int x, int y, int t);