summaryrefslogtreecommitdiff
path: root/src/code/audio_thread_manager.c
diff options
context:
space:
mode:
authorAnghelo Carvajal <angheloalf95@gmail.com>2026-03-26 07:59:39 -0300
committerGitHub <noreply@github.com>2026-03-26 07:59:39 -0300
commita9da608e187f0f6874ee15491347751751fcedeb (patch)
tree3c6a69aad3623d66afd2ab6e46b2a693a2529b2d /src/code/audio_thread_manager.c
parent02eafced87237be63b32ddc187ea85faf92afe00 (diff)
[n64-jp-1.1] CIC6105.c matched (#1843)
* match CIC6105.c * Renames and fixes * Fix bss * format * Review * Version check inequalities
Diffstat (limited to 'src/code/audio_thread_manager.c')
-rw-r--r--src/code/audio_thread_manager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/audio_thread_manager.c b/src/code/audio_thread_manager.c
index d6661b700..25aa6c11f 100644
--- a/src/code/audio_thread_manager.c
+++ b/src/code/audio_thread_manager.c
@@ -16,7 +16,7 @@ void AudioMgr_HandleRetrace(AudioMgr* audioMgr) {
OSTimer timer;
s32 msg;
- if (SREG(20) > 0) {
+ if (R_AUDIOMGR_DEBUG_LEVEL > 0) {
audioMgr->rspTask = NULL;
}
@@ -37,7 +37,7 @@ void AudioMgr_HandleRetrace(AudioMgr* audioMgr) {
Sched_SendNotifyMsg(audioMgr->sched);
}
- if (SREG(20) >= 2) {
+ if (R_AUDIOMGR_DEBUG_LEVEL >= 2) {
rspTask = NULL;
} else {
rspTask = AudioThread_Update();