mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 09:54:10 +03:00
Remove default arguments from ed switch_* funcs
I don't like default arguments and if we're going to be moving to C we'll need to remove them anyway.
This commit is contained in:
@@ -186,10 +186,10 @@ class editorclass{
|
||||
|
||||
int backmatch(int x, int y);
|
||||
|
||||
void switch_tileset(const bool reversed = false);
|
||||
void switch_tilecol(const bool reversed = false);
|
||||
void clamp_tilecol(const int rx, const int ry, const bool wrap = false);
|
||||
void switch_enemy(const bool reversed = false);
|
||||
void switch_tileset(const bool reversed);
|
||||
void switch_tilecol(const bool reversed);
|
||||
void clamp_tilecol(const int rx, const int ry, const bool wrap);
|
||||
void switch_enemy(const bool reversed);
|
||||
|
||||
bool load(std::string& _path);
|
||||
bool save(std::string& _path);
|
||||
|
||||
Reference in New Issue
Block a user