diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-07-28 11:10:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-28 11:10:00 -0400 |
commit | 70617d56e4ef0ef1432e0cc7fb3214a63d773578 (patch) | |
tree | 9f1551240478be6722a0be797d35eb4034e5608c /src/item_use.c | |
parent | e8568b79efa2f12ce929a4db15c8786f1dccc359 (diff) | |
parent | 1e8ffcb8986aa0560bcb1113717ce26a58526be2 (diff) |
Merge pull request #1104 from PokeCodec/Explcit-Casting
Reduce "Implicit conversion" warnings
Diffstat (limited to 'src/item_use.c')
-rwxr-xr-x | src/item_use.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/item_use.c b/src/item_use.c index 0aae441c8..fa3f13081 100755 --- a/src/item_use.c +++ b/src/item_use.c @@ -721,7 +721,7 @@ static void ItemUseOnFieldCB_WailmerPailBerry(u8 taskId) static bool8 TryToWaterSudowoodo(void) { - u16 x, y; + s16 x, y; u8 z; u8 objId; GetXYCoordsOneStepInFrontOfPlayer(&x, &y); |