mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-02-01 02:34:41 +03:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user