DKC3: fix missing default options in Utils.py

This commit is contained in:
Fabian Dill
2022-07-26 19:25:49 +02:00
committed by Fabian Dill
parent e5b868e0e9
commit 4565b3af8d

View File

@@ -277,7 +277,12 @@ def get_default_options() -> dict:
}, },
"oot_options": { "oot_options": {
"rom_file": "The Legend of Zelda - Ocarina of Time.z64", "rom_file": "The Legend of Zelda - Ocarina of Time.z64",
} },
"dkc3_options": {
"rom_file": "Donkey Kong Country 3 - Dixie Kong's Double Trouble! (USA) (En,Fr).sfc",
"sni": "SNI",
"rom_start": True,
},
} }
return options return options