summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@users.noreply.github.com>2019-07-24 11:27:59 -0400
committerGitHub <noreply@github.com>2019-07-24 11:27:59 -0400
commitaf28a90c894c0323f33549ee1eb0780bb1a4d179 (patch)
tree488fc4d9fe54010e9d36a366a1fbe4d61ce91c36
parent1844977e0edf46db81b0eca7c22b19d14fd77968 (diff)
Fix signedness disagreement in sBigMonSizeTable
-rw-r--r--src/pokemon_size_record.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/pokemon_size_record.c b/src/pokemon_size_record.c
index 6a7ee69b3..31b879c2d 100644
--- a/src/pokemon_size_record.c
+++ b/src/pokemon_size_record.c
@@ -30,13 +30,13 @@ static const struct UnknownStruct sBigMonSizeTable[] =
{ 800, 100, 7710 },
{ 900, 150, 17710 },
{ 1000, 150, 32710 },
- { 1100, 100, -17826 },
- { 1200, 50, -7826 },
- { 1300, 20, -2826 },
- { 1400, 5, -826 },
- { 1500, 2, -326 },
- { 1600, 1, -126 },
- { 1700, 1, -26 },
+ { 1100, 100, 47710 },
+ { 1200, 50, 57710 },
+ { 1300, 20, 62710 },
+ { 1400, 5, 64710 },
+ { 1500, 2, 65210 },
+ { 1600, 1, 65410 },
+ { 1700, 1, 65510 },
};
#define CM_PER_INCH 2.54