1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-15 20:35:13 +00:00

[PAL N64] Match handwritten audio sequences (#2210)

* [PAL N64] Match handwritten audio sequences

* Remove offset comments from PAL-only audio code

* Reorder includes
This commit is contained in:
cadmic 2024-09-21 04:30:52 -07:00 committed by GitHub
parent a1a192b1a2
commit 5178011b64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 268 additions and 234 deletions

View file

@ -39,4 +39,11 @@
#define OOT_MQ 0
#endif
// Macro for constants that change in 50 Hz N64 PAL versions.
#if !OOT_PAL_N64
#define FRAMERATE_CONST(value60Hz, value50Hz) (value60Hz)
#else
#define FRAMERATE_CONST(value60Hz, value50Hz) (value50Hz)
#endif
#endif