1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-26 14:38:30 +02:00

Remove unused attribute Graphics::tl

For some reason, this `tl` is a `point`? But the only other time the
name `tl` is used elsewhere in the code is a float on a `textboxclass`.
Regardless, this is unused.
This commit is contained in:
Misa 2020-11-02 12:33:25 -08:00 committed by Ethan Lee
parent 06103cc4ca
commit 25ae117f6a
2 changed files with 0 additions and 2 deletions

View File

@ -117,7 +117,6 @@ void Graphics::init()
menubuffer = NULL;
screenbuffer = NULL;
tempBuffer = NULL;
tl = point();
towerbuffer = NULL;
towerbuffer_lerp = NULL;
footerbuffer = NULL;

View File

@ -221,7 +221,6 @@ public:
bool flipmode;
bool setflipmode;
bool notextoutline;
point tl;
//buffer objects. //TODO refactor buffer objects
SDL_Surface* backBuffer;
Screen* screenbuffer;