diff options
| author | fig02 <fig02srl@gmail.com> | 2024-11-17 17:02:07 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-17 17:02:07 -0500 |
| commit | 17edb82c0d22fb78135033f92a624bd6cde6f495 (patch) | |
| tree | 1f5f077c12e3a693745fcbb0aa450b35cf8ff9b6 /src/libc | |
| parent | cf4dc98cc934cdb62ed8b5001602468fac6dfeb3 (diff) | |
Decouple Debug Features From gc-eu-mq-dbg (#2296)
* rename OOT_DEBUG to DEBUG_FEATURES
* makefile changes
* add DEBUG_ASSETS
* fix DEBUG_FEATURES usages
* format
* fix errors
* review
* fix problem and review2
* review
* add DEBUG_FEATURES to DEBUG_ASSETS check
* review
* whoops
* format
Diffstat (limited to 'src/libc')
| -rw-r--r-- | src/libc/absf.s | 2 | ||||
| -rw-r--r-- | src/libc/sqrt.s | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libc/absf.s b/src/libc/absf.s index 9df0c0a38..b42333461 100644 --- a/src/libc/absf.s +++ b/src/libc/absf.s @@ -1,6 +1,6 @@ #include "ultra64/asm.h" -#if OOT_DEBUG +#if DEBUG_FEATURES .set noreorder #endif diff --git a/src/libc/sqrt.s b/src/libc/sqrt.s index b4246ec86..6ffb2b708 100644 --- a/src/libc/sqrt.s +++ b/src/libc/sqrt.s @@ -1,6 +1,6 @@ #include "ultra64/asm.h" -#if OOT_DEBUG +#if DEBUG_FEATURES .set noreorder #endif |
