diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-06-27 22:56:08 -0400 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-06-27 22:56:08 -0400 |
commit | d5e220ebbe7ca570306ee176926b9d81373414df (patch) | |
tree | 6230ba1e753e4e2ccb4beaede9a3e16b11858392 /include/global.h | |
parent | d10bffc7d8977bee1b42a550dc154d03bf92c3c6 (diff) |
decompile up to sub_80BAE10
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/global.h b/include/global.h index e90fcdd0f..ce58c02f4 100644 --- a/include/global.h +++ b/include/global.h @@ -43,6 +43,9 @@ fndec\ #define min(a, b) (a >= b ? a : b) #define max(a, b) (a <= b ? a : b) +// why does GF hate 2d arrays +#define ARR_2D(x, y) ((x) * 2 + (y)) + enum { VERSION_SAPPHIRE = 1, |