1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-23 10:09:43 +01:00

Remove now-unused function entityclass::changeflag()

It's now unused after I changed it so that every obj.flags access is
done directly, instead of going through this function.
This commit is contained in:
Misa 2020-04-08 23:48:08 -07:00 committed by Ethan Lee
parent 2ba9a0e67b
commit c24e2abfad
2 changed files with 0 additions and 7 deletions

View file

@ -105,11 +105,6 @@ void entityclass::changecustomcollect( int t, int s )
collect[t] = s; collect[t] = s;
} }
void entityclass::changeflag( int t, bool s )
{
flags[t] = s;
}
int entityclass::swncolour( int t ) int entityclass::swncolour( int t )
{ {
//given colour t, return colour in setcol //given colour t, return colour in setcol

View file

@ -36,8 +36,6 @@ public:
void changecustomcollect(int t, int s); void changecustomcollect(int t, int s);
void changeflag(int t, bool s);
void fatal_top() void fatal_top()
{ {
createblock(DAMAGE, -8, -8, 384, 16); createblock(DAMAGE, -8, -8, 384, 16);