Set `GPGX.PCRegisterName` correctly in SMS/etc. mode (resolves #4226)
This commit is contained in:
parent
084497a28a
commit
33571d4cd3
|
@ -15,7 +15,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx
|
|||
}
|
||||
}
|
||||
|
||||
public string PCRegisterName => "M68K PC";
|
||||
public string PCRegisterName { get; }
|
||||
|
||||
public IEnumerable<string> AvailableCpus { get; } = [ "M68000" ];
|
||||
|
||||
|
|
|
@ -48,6 +48,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx
|
|||
_ => throw new InvalidOperationException("Invalid system id")
|
||||
};
|
||||
}
|
||||
PCRegisterName = SystemId is VSystemID.Raw.GEN ? "M68K PC" : "Z80 pc";
|
||||
|
||||
// three or six button?
|
||||
// http://www.sega-16.com/forum/showthread.php?4398-Forgotten-Worlds-giving-you-GAME-OVER-immediately-Fix-inside&highlight=forgotten%20worlds
|
||||
|
|
Loading…
Reference in New Issue