1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-20 12:20:01 +00:00

arg::cheat() is now inline

This commit is contained in:
Zeno Rogue 2018-07-21 18:03:53 +02:00
parent 66f352178e
commit 304e48d4b4

View File

@ -1832,7 +1832,7 @@ namespace arg {
#define PHASE(x) { if(arg::curphase > x) phaseerror(x); else if(arg::curphase < x) return 2; }
#define PHASEFROM(x) { if(arg::curphase < x) return 2; }
void cheat() { autocheat = true; cheater++; timerghost = false; }
inline void cheat() { autocheat = true; cheater++; timerghost = false; }
#define TOGGLE(x, param, act) \
else if(args()[0] == '-' && args()[1] == x && !args()[2]) { PHASEFROM(2); showstartmenu = false; act; } \