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:
+4
-4
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user