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:
AloXado320
2025-05-11 19:00:37 -05:00
committed by GitHub
parent 1f9e0d7e6a
commit 30fef62f81
24 changed files with 145 additions and 1042 deletions
+4 -4
View File
@@ -4,10 +4,10 @@ def add_custom_arguments(parser):
group = parser.add_mutually_exclusive_group(required=False)
group.add_argument('-u', dest='lang', action='store_const', const='us',
help="Set version to US.")
group.add_argument('-eu10', dest='lang', action='store_const', const='eu-1.0',
help="Set version to EU.")
group.add_argument('-eu11', dest='lang', action='store_const', const='eu-final',
help="Set version to EU.")
group.add_argument('-eu10', dest='lang', action='store_const', const='eu.v10',
help="Set version to EU 1.0.")
group.add_argument('-eu11', dest='lang', action='store_const', const='eu.v11',
help="Set version to EU 1.1.")
def apply(config, args):
lang = args.lang or 'us'