From a81188b4ff266aec55ae1fa012b7ed572bc6ec76 Mon Sep 17 00:00:00 2001 From: MeltyPlayer Date: Tue, 6 Dec 2022 17:27:14 -0600 Subject: [PATCH] Removed DEBUG_PRINT statements from alBnkfNew. --- src/decomp/pc/alBnkfNew.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/decomp/pc/alBnkfNew.c b/src/decomp/pc/alBnkfNew.c index fa003b1..bb04df3 100644 --- a/src/decomp/pc/alBnkfNew.c +++ b/src/decomp/pc/alBnkfNew.c @@ -1,19 +1,12 @@ #include "libultra_internal.h" #include "libaudio_internal.h" -#include "../../debug_print.h" - #define PATCH(SRC, BASE, TYPE) //SRC = (TYPE)((uintptr_t) SRC + (uintptr_t) BASE) void alSeqFileNew(ALSeqFile *f, u8 *base) { - DEBUG_PRINT("alSeqFileNew()"); int i; - DEBUG_PRINT("- patching %d entries", f->seqCount); for (i = 0; i < f->seqCount; i++) { - DEBUG_PRINT("- handling entry %d", i); - DEBUG_PRINT("- patching offset (%x) with base (%x)", f->seqArray[i].offset, base); PATCH(f->seqArray[i].offset, base, u8 *); - DEBUG_PRINT("- result is (%x)", f->seqArray[i].offset); } }