diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-28 13:35:26 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-28 14:39:52 -0400 |
commit | b47bfbd813cc7981ff3b99baa7913933f28d67b9 (patch) | |
tree | 0fea9afdc675ac7381e661f6fd344c55dcb32374 /engine/debug | |
parent | 9483cf47dd62d3c513dade49747e868f49f0e374 (diff) |
Identify more WRAM labels, and start a <X>_DummyFunction label convention
Diffstat (limited to 'engine/debug')
-rw-r--r-- | engine/debug/color_picker.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/debug/color_picker.asm b/engine/debug/color_picker.asm index 324d6c57..2ebf4861 100644 --- a/engine/debug/color_picker.asm +++ b/engine/debug/color_picker.asm @@ -913,13 +913,13 @@ DebugColor_FillBoxWithByte: ret DebugColor_PushSGBPals: - ld a, [wd8ba] + ld a, [wJoypadDisable] push af - set 7, a - ld [wd8ba], a + set JOYPAD_DISABLE_SGB_TRANSFER_F, a + ld [wJoypadDisable], a call _DebugColor_PushSGBPals pop af - ld [wd8ba], a + ld [wJoypadDisable], a ret _DebugColor_PushSGBPals: |