diff options
| author | Kevin Alexis Contreras <36680385+KiritoDv@users.noreply.github.com> | 2022-06-20 12:33:38 -0500 |
|---|---|---|
| committer | Kevin Alexis Contreras <36680385+KiritoDv@users.noreply.github.com> | 2022-06-20 12:33:38 -0500 |
| commit | 4e754885670f9ca4be663a6ce9d8f11da5bba08c (patch) | |
| tree | 8c1de4e1698018dd989f07e0ec6d1685bf5b71df | |
| parent | e945a86d46d93bc1c27ae06fee44786de9e76255 (diff) | |
Removed ifdefs for audio heap sizes
| -rw-r--r-- | soh/include/z64.h | 3 | ||||
| -rw-r--r-- | soh/src/code/audio_init_params.c | 5 |
2 files changed, 1 insertions, 7 deletions
diff --git a/soh/include/z64.h b/soh/include/z64.h index ef48ec319..663671048 100644 --- a/soh/include/z64.h +++ b/soh/include/z64.h @@ -32,9 +32,6 @@ #if defined(_WIN64) || defined(__x86_64__) || defined(__arm64__) #define _SOH64 -#define AUDIO_HEAP_SIZE 0x3800000 -#else -#define AUDIO_HEAP_SIZE 0x3800000 #endif #define SYSTEM_HEAP_SIZE (1024 * 1024 * 4) diff --git a/soh/src/code/audio_init_params.c b/soh/src/code/audio_init_params.c index 480f5f213..f5bae8fd8 100644 --- a/soh/src/code/audio_init_params.c +++ b/soh/src/code/audio_init_params.c @@ -10,11 +10,8 @@ const s16 D_8014A6C0[] = { 0x0030, // gTatumsPerBeat }; -#ifdef _SOH64 // OTRTODO: This might be overkill... +// OTRTODO: This might be overkill... const AudioContextInitSizes D_8014A6C4 = { 0x37F000, 0xE0E00, 0xBCE00 }; -#else -const AudioContextInitSizes D_8014A6C4 = { 0x37F000, 0xE0E00, 0xBCE00 }; -#endif ReverbSettings D_80133420[][3] = { { |
