mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-16 16:09:42 +01:00
Remove unused function entityclass::resetflags()
This looks like a weird hack, but there's no way a flag will ever end up being 2, not even before I changed all flags to be bools instead.
This commit is contained in:
parent
0648d6bb0f
commit
ee5f8dce78
2 changed files with 0 additions and 10 deletions
|
@ -78,14 +78,6 @@ void entityclass::resetallflags()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void entityclass::resetflags()
|
|
||||||
{
|
|
||||||
for (int i = 0; i < 100; i++)
|
|
||||||
{
|
|
||||||
if (flags[i] == 2) flags[i] = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void entityclass::confirmflags()
|
void entityclass::confirmflags()
|
||||||
{
|
{
|
||||||
for (int i = 0; i < 100; i++)
|
for (int i = 0; i < 100; i++)
|
||||||
|
|
|
@ -28,8 +28,6 @@ public:
|
||||||
|
|
||||||
void resetallflags();
|
void resetallflags();
|
||||||
|
|
||||||
void resetflags();
|
|
||||||
|
|
||||||
void confirmflags();
|
void confirmflags();
|
||||||
|
|
||||||
void fatal_top()
|
void fatal_top()
|
||||||
|
|
Loading…
Reference in a new issue