From c2dc4c870881be48d33feb8db040c37f2ad501c3 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 7 Jan 2019 04:51:46 +0100 Subject: [PATCH] PHASE no longer needs using namespace arg --- hyper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyper.h b/hyper.h index 4637ea6f..1b04dc99 100644 --- a/hyper.h +++ b/hyper.h @@ -2174,7 +2174,7 @@ namespace arg { int readLocal(); // an useful macro -#define PHASE(x) { if(arg::curphase > x) phaseerror(x); else if(arg::curphase < x) return 2; } +#define PHASE(x) { if(arg::curphase > x) arg::phaseerror(x); else if(arg::curphase < x) return 2; } #define PHASEFROM(x) { if(arg::curphase < x) return 2; } inline void cheat() { autocheat = true; cheater++; timerghost = false; }