diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-28 13:35:39 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-28 14:34:38 -0400 |
commit | ea426a88794b1d216a278b54d18cefafbf7d8771 (patch) | |
tree | 732c7a81c528251b651b6441d0f4a974548beb2c /engine/debug | |
parent | 6d333bed5fde0c2da0a6a9df2ccae83933400e42 (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 d14efc59f..40261a391 100644 --- a/engine/debug/color_picker.asm +++ b/engine/debug/color_picker.asm @@ -929,13 +929,13 @@ DebugColor_FillBoxWithByte: ret DebugColor_PushSGBPals: - ld a, [wcfbe] + ld a, [wJoypadDisable] push af - set 7, a - ld [wcfbe], a + set JOYPAD_DISABLE_SGB_TRANSFER_F, a + ld [wJoypadDisable], a call _DebugColor_PushSGBPals pop af - ld [wcfbe], a + ld [wJoypadDisable], a ret _DebugColor_PushSGBPals: |