diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/retail_versions.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/retail_versions.md b/docs/retail_versions.md index 6c34869f9..e39a047c8 100644 --- a/docs/retail_versions.md +++ b/docs/retail_versions.md @@ -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 |
