summaryrefslogtreecommitdiff
path: root/src/item_use.c
diff options
context:
space:
mode:
authorPokeCodec <doremylover456@gmail.com>2020-07-19 15:57:20 -0400
committerPokeCodec <doremylover456@gmail.com>2020-07-28 15:22:15 -0400
commitebcb982e16a0fd6b22185d159234495c44a15874 (patch)
tree1276cdd422e6d0944350a8a91db566356bb2a8fc /src/item_use.c
parente8568b79efa2f12ce929a4db15c8786f1dccc359 (diff)
Change signedness and add casts to avoid implicit conversion warnings
Diffstat (limited to 'src/item_use.c')
-rwxr-xr-xsrc/item_use.c2
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);