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:
Misa
2021-08-22 20:44:18 -07:00
parent 52918ba510
commit 0489293885
2 changed files with 12 additions and 12 deletions

View File

@@ -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);