mirror of
https://github.com/n64decomp/mk64
synced 2026-07-11 13:48:45 -04:00
Fix EU build and related cleanup and fixes (#710)
* Fix EU build and eu-final offsets * Fix instrument align and bring EU matches * Fix EU trig table segment * Label audio_init * Simplify float comments * Proper EU name version defines
This commit is contained in:
+6
-1
@@ -52,9 +52,14 @@
|
||||
#define DEMO_MODE_ACTIVE 1
|
||||
#define DEMO_MODE_INACTIVE 0
|
||||
|
||||
// Float version required for matching
|
||||
#ifdef VERSION_EU
|
||||
#define COURSE_TIMER_ITER 0.020041665999999999 // 1 / 50
|
||||
#define COURSE_TIMER_ITER_f 0.020041665999999999f // 1 / 50
|
||||
#ifdef AVOID_UB
|
||||
#define COURSE_TIMER_ITER_f 0.020041665999999999f // 1 / 50
|
||||
#else
|
||||
#define COURSE_TIMER_ITER_f 0.01666666f //! 1 / 60 - Float unchanged in EU
|
||||
#endif
|
||||
#else
|
||||
#define COURSE_TIMER_ITER 0.01666666 // 1 / 60
|
||||
#define COURSE_TIMER_ITER_f 0.01666666f // 1 / 60
|
||||
|
||||
Reference in New Issue
Block a user