From aede989546f8e845cdf6fcb3a6403009542b5b8d Mon Sep 17 00:00:00 2001 From: BuildTools Date: Sun, 9 Aug 2020 09:51:33 -0600 Subject: [PATCH] Match code to documentation --- src/fileioc/fileioc.asm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/fileioc/fileioc.asm b/src/fileioc/fileioc.asm index 0a1778749..9abee8387 100644 --- a/src/fileioc/fileioc.asm +++ b/src/fileioc/fileioc.asm @@ -1417,15 +1417,15 @@ ti_SetGCBehavior: or a,a sbc hl,de jr nz,.notdefault1 - ld hl,util_pre_gc_default_handler + ld hl,util_post_gc_default_handler .notdefault1: - ld (util_pre_gc_handler),hl + ld (util_post_gc_handler),hl sbc hl,hl adc hl,bc jr nz,.notdefault2 - ld hl,util_post_gc_default_handler + ld hl,util_pre_gc_default_handler .notdefault2: - ld (util_post_gc_handler),hl + ld (util_pre_gc_handler),hl ret util_post_gc_default_handler := util_no_op util_pre_gc_default_handler := util_no_op