mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-08 18:09:45 +01:00
Remove unused function editorclass::placetile()
This function was marked as unused by cppcheck.
This commit is contained in:
parent
916a19c09c
commit
945961c1fb
2 changed files with 0 additions and 10 deletions
|
@ -932,14 +932,6 @@ int editorclass::getenemyframe(int t)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void editorclass::placetile( int x, int y, int t )
|
|
||||||
{
|
|
||||||
if(x>=0 && y>=0 && x<mapwidth*40 && y<mapheight*30)
|
|
||||||
{
|
|
||||||
contents[x+(levx*40)+vmult[y+(levy*30)]]=t;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void editorclass::placetilelocal( int x, int y, int t )
|
void editorclass::placetilelocal( int x, int y, int t )
|
||||||
{
|
{
|
||||||
if(x>=0 && y>=0 && x<40 && y<30)
|
if(x>=0 && y>=0 && x<40 && y<30)
|
||||||
|
|
|
@ -121,8 +121,6 @@ class editorclass{
|
||||||
void getlin(const enum textmode mode, const std::string& prompt, std::string* ptr);
|
void getlin(const enum textmode mode, const std::string& prompt, std::string* ptr);
|
||||||
const short* loadlevel(int rxi, int ryi);
|
const short* loadlevel(int rxi, int ryi);
|
||||||
|
|
||||||
void placetile(int x, int y, int t);
|
|
||||||
|
|
||||||
void placetilelocal(int x, int y, int t);
|
void placetilelocal(int x, int y, int t);
|
||||||
|
|
||||||
int getenemyframe(int t);
|
int getenemyframe(int t);
|
||||||
|
|
Loading…
Reference in a new issue