Fix C64 rom loading
This commit is contained in:
parent
3858ff9b95
commit
cc4c0ed693
|
@ -1366,7 +1366,7 @@ namespace BizHawk.MultiClient
|
|||
if (path == null) return false;
|
||||
using (var file = new HawkFile())
|
||||
{
|
||||
string[] romExtensions = new string[] { "SMS", "SMC", "SFC", "PCE", "SGX", "GG", "SG", "BIN", "GEN", "MD", "SMD", "GB", "NES", "FDS", "ROM", "INT", "GBC", "UNF", "A78", "C64" };
|
||||
string[] romExtensions = new string[] { "SMS", "SMC", "SFC", "PCE", "SGX", "GG", "SG", "BIN", "GEN", "MD", "SMD", "GB", "NES", "FDS", "ROM", "INT", "GBC", "UNF", "A78", "CRT" };
|
||||
|
||||
//lets not use this unless we need to
|
||||
//file.NonArchiveExtensions = romExtensions;
|
||||
|
@ -1647,6 +1647,7 @@ namespace BizHawk.MultiClient
|
|||
break;
|
||||
case "C64":
|
||||
C64 c64 = new C64(game, rom.RomData); //TODO: need to load in BIOSes?
|
||||
nextEmulator = c64;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -400,6 +400,11 @@ namespace BizHawk.MultiClient
|
|||
{
|
||||
return "|.|";
|
||||
}
|
||||
if (ControlType == "Atari 7800 Basic Controller")
|
||||
{
|
||||
return "|.|"; //TODO
|
||||
}
|
||||
|
||||
else if (ControlType == "SNES Controller")
|
||||
{
|
||||
return GetSNESControllersAsMnemonic();
|
||||
|
|
Loading…
Reference in New Issue