mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-02-01 21:55:01 +01:00
Remove unnecessary stub destructors
It's a bit misleading to have these stub destructors when they don't do anything special.
This commit is contained in:
parent
307cdefb8e
commit
3932c75acc
4 changed files with 0 additions and 11 deletions
|
@ -394,10 +394,6 @@ void Game::init(void)
|
|||
disablepause = false;
|
||||
}
|
||||
|
||||
Game::~Game(void)
|
||||
{
|
||||
}
|
||||
|
||||
void Game::lifesequence()
|
||||
{
|
||||
if (lifeseq > 0)
|
||||
|
|
|
@ -89,7 +89,6 @@ class Game
|
|||
{
|
||||
public:
|
||||
void init(void);
|
||||
~Game(void);
|
||||
|
||||
|
||||
int crewrescued();
|
||||
|
|
|
@ -161,11 +161,6 @@ int Graphics::font_idx(uint32_t ch) {
|
|||
}
|
||||
}
|
||||
|
||||
Graphics::~Graphics()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void Graphics::drawspritesetcol(int x, int y, int t, int c)
|
||||
{
|
||||
if (!INBOUNDS(t, sprites))
|
||||
|
|
|
@ -23,7 +23,6 @@ class Graphics
|
|||
{
|
||||
public:
|
||||
void init();
|
||||
~Graphics();
|
||||
|
||||
GraphicsResources grphx;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue