diff options
author | gAlfonso-bit <83477269+gAlfonso-bit@users.noreply.github.com> | 2021-05-27 08:32:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-27 07:32:09 -0500 |
commit | c9c558606899f898c7b14ad4a35f19ce2831d66a (patch) | |
tree | a1e68544a630832a17e57c2a041d6367a12adb45 /gflib/bg.h | |
parent | 2b062e89c11c4a8804d2196d04fe95cfe0ac434c (diff) |
Fixed ChangeBgY_ScreenOff‘s signature. (#1447)
* Fix Functions
* Fix ChangeBgY_ScreenOff signature
* Remove unneeded changes
* Fix argument mismatch
Just to get this out of the way
* Not needed
* Update palette.c
Diffstat (limited to 'gflib/bg.h')
-rw-r--r-- | gflib/bg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gflib/bg.h b/gflib/bg.h index 3c7eee292..58fd1282c 100644 --- a/gflib/bg.h +++ b/gflib/bg.h @@ -59,7 +59,7 @@ u16 GetBgAttribute(u8 bg, u8 attributeId); s32 ChangeBgX(u8 bg, s32 value, u8 op); s32 GetBgX(u8 bg); s32 ChangeBgY(u8 bg, s32 value, u8 op); -s32 ChangeBgY_ScreenOff(u8 bg, u32 value, u8 op); +s32 ChangeBgY_ScreenOff(u8 bg, s32 value, u8 op); s32 GetBgY(u8 bg); void SetBgAffine(u8 bg, s32 srcCenterX, s32 srcCenterY, s16 dispCenterX, s16 dispCenterY, s16 scaleX, s16 scaleY, u16 rotationAngle); u8 Unused_AdjustBgMosaic(u8 a1, u8 a2); |