From 3cb8016b2cb012097be65b21e7dafa3bcdb1eff7 Mon Sep 17 00:00:00 2001 From: Akash Mozumdar Date: Sun, 20 Jan 2019 15:09:38 -0500 Subject: [PATCH] show when h code has no agth equivalent --- GUI/misc.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/GUI/misc.cpp b/GUI/misc.cpp index b508f4d..db18fa2 100644 --- a/GUI/misc.cpp +++ b/GUI/misc.cpp @@ -226,6 +226,7 @@ namespace if (hp.offset < 0) hp.offset += 4; if (hp.split < 0) hp.split += 4; + if (hp.text_fun || hp.filter_fun || hp.hook_fun) codeBuilder << "X"; // no AGTH equivalent codeBuilder << hp.offset; if (hp.type & DATA_INDIRECT) codeBuilder << "*" << hp.index; if (hp.type & USING_SPLIT) codeBuilder << ":" << hp.split;