mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Remove unused function entityclass::confirmflags()
Same as before, flags can never be the number 2, and never could be even before I changed all flags to be bools. Also this function is unused.
This commit is contained in:
parent
ee5f8dce78
commit
7493129044
2 changed files with 0 additions and 10 deletions
|
@ -78,14 +78,6 @@ void entityclass::resetallflags()
|
|||
}
|
||||
}
|
||||
|
||||
void entityclass::confirmflags()
|
||||
{
|
||||
for (int i = 0; i < 100; i++)
|
||||
{
|
||||
if (flags[i] == 2) flags[i] = 1;
|
||||
}
|
||||
}
|
||||
|
||||
int entityclass::swncolour( int t )
|
||||
{
|
||||
//given colour t, return colour in setcol
|
||||
|
|
|
@ -28,8 +28,6 @@ public:
|
|||
|
||||
void resetallflags();
|
||||
|
||||
void confirmflags();
|
||||
|
||||
void fatal_top()
|
||||
{
|
||||
createblock(DAMAGE, -8, -8, 384, 16);
|
||||
|
|
Loading…
Reference in a new issue