diff options
author | camthesaxman <cameronghall@cox.net> | 2018-01-04 22:26:27 -0600 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2018-01-04 22:26:27 -0600 |
commit | d7970fba2fef5fd8949eb1b2c24f0556103bda27 (patch) | |
tree | 457fbf6d3e536b53bdea8cc1613493fc3e7eb6a3 /include/global.h | |
parent | c6fd37b0dffe1975159699cee3ce57c9ea5716d4 (diff) |
decompile sub_80E9620 - sub_80EA184
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/global.h b/include/global.h index 27b4b84a2..c7027eccf 100644 --- a/include/global.h +++ b/include/global.h @@ -41,7 +41,7 @@ fndec\ #define POKEMON_NAME_LENGTH 10 #define OT_NAME_LENGTH 7 -#define min(a, b) ((a) <= (b) ? (a) : (b)) +#define min(a, b) ((a) < (b) ? (a) : (b)) #define max(a, b) ((a) >= (b) ? (a) : (b)) // why does GF hate 2d arrays |