Define OOT_DEBUG=0 in retail builds

This commit is contained in:
cadmic
2024-01-29 08:21:02 -08:00
parent 0f11f2f166
commit 4f337cffa2
11 changed files with 22 additions and 28 deletions
+3 -3
View File
@@ -27,9 +27,9 @@ an `if` block). Since retail MM versions use the same compiler flags as retail
OOT, checking MM decomp for similar code can help.
We can disable code that was removed in retail builds by adding
`#ifdef OOT_DEBUG` around these parts of the code. In order to keep the code
readable, we should try to minimize the amount of `#ifdef` noise whenever
possible.
`#if OOT_DEBUG ... #endif` or `if (OOT_DEBUG) { ... }` around these parts of the
code. In order to keep the code readable, we should try to minimize the amount of
`#if` noise whenever possible.
## Setup