diff options
| author | Dragorn421 <Dragorn421@users.noreply.github.com> | 2024-09-07 11:29:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-07 18:29:25 +0900 |
| commit | c54c1f2274fe762997ea13cf2b4a758f27db35e3 (patch) | |
| tree | 3b4ebb949aa4186a9018fcc8e73a22eb0d5b33f8 /src | |
| parent | 35cfc075909e5244fe42a3c6ae30ac33e721d33d (diff) | |
Move audio/general.c debug bss with the rest of bss (#2152)
* Move audio/general.c debug bss to own file and include with the rest of bss
* just inline the bss instead of include
Diffstat (limited to 'src')
| -rw-r--r-- | src/audio/debug.inc.c | 6 | ||||
| -rw-r--r-- | src/audio/general.c | 5 |
2 files changed, 5 insertions, 6 deletions
diff --git a/src/audio/debug.inc.c b/src/audio/debug.inc.c index 5af3030f3..29fbd50a3 100644 --- a/src/audio/debug.inc.c +++ b/src/audio/debug.inc.c @@ -1,9 +1,3 @@ -u32 sDebugPadHold; -u32 sDebugPadBtnLast; -u32 sDebugPadPress; -s32 sAudioUpdateTaskStart; -s32 sAudioUpdateTaskEnd; - f32 D_80131C8C = 0.0f; f32 sAudioUpdateDuration = 0.0f; f32 sAudioUpdateDurationMax = 0.0f; diff --git a/src/audio/general.c b/src/audio/general.c index af5ca719a..528b16a19 100644 --- a/src/audio/general.c +++ b/src/audio/general.c @@ -1297,6 +1297,11 @@ OcarinaNote sScarecrowsLongSongSecondNote; #if OOT_DEBUG u8 sIsMalonSinging; f32 sMalonSingingDist; +u32 sDebugPadHold; +u32 sDebugPadBtnLast; +u32 sDebugPadPress; +s32 sAudioUpdateTaskStart; +s32 sAudioUpdateTaskEnd; #endif void PadMgr_RequestPadData(PadMgr* padMgr, Input* inputs, s32 gameRequest); |
