mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 09:28:15 +03:00
Remove unused function edentclear()
This function was marked as unused by cppcheck.
This commit is contained in:
@@ -2196,15 +2196,6 @@ int edentat( int xp, int yp )
|
||||
return -1;
|
||||
}
|
||||
|
||||
bool edentclear( int xp, int yp )
|
||||
{
|
||||
for(size_t i=0; i<edentity.size(); i++)
|
||||
{
|
||||
if(edentity[i].x==xp && edentity[i].y==yp) return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
void fillbox( int x, int y, int x2, int y2, int c )
|
||||
{
|
||||
FillRect(graphics.backBuffer, x, y, x2-x, 1, c);
|
||||
|
||||
@@ -276,8 +276,6 @@ void removeedentity(int t);
|
||||
int edentat(int xp, int yp);
|
||||
|
||||
|
||||
bool edentclear(int xp, int yp);
|
||||
|
||||
void fillbox(int x, int y, int x2, int y2, int c);
|
||||
|
||||
void fillboxabs(int x, int y, int x2, int y2, int c);
|
||||
|
||||
Reference in New Issue
Block a user