summaryrefslogtreecommitdiff
path: root/src/berry.c
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@users.noreply.github.com>2020-07-28 11:10:00 -0400
committerGitHub <noreply@github.com>2020-07-28 11:10:00 -0400
commit70617d56e4ef0ef1432e0cc7fb3214a63d773578 (patch)
tree9f1551240478be6722a0be797d35eb4034e5608c /src/berry.c
parente8568b79efa2f12ce929a4db15c8786f1dccc359 (diff)
parent1e8ffcb8986aa0560bcb1113717ce26a58526be2 (diff)
Merge pull request #1104 from PokeCodec/Explcit-Casting
Reduce "Implicit conversion" warnings
Diffstat (limited to 'src/berry.c')
-rw-r--r--src/berry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/berry.c b/src/berry.c
index 98264f37b..d70e8c353 100644
--- a/src/berry.c
+++ b/src/berry.c
@@ -1331,7 +1331,7 @@ void ResetBerryTreeSparkleFlags(void)
s16 bottom;
int i;
- GetCameraCoords(&cam_left, &cam_top);
+ GetCameraCoords((u16*)&cam_left, (u16*)&cam_top);
left = cam_left;
top = cam_top + 3;
right = cam_left + 14;