Debugger: Fixed break on power on not working as expected for GB games

Can't step 1 ppu cycle on GB because LCD is disabled at power on
This commit is contained in:
Sour 2020-07-03 16:23:19 -04:00
parent 071f634f94
commit 7a6b600d34

View file

@ -578,7 +578,7 @@ namespace Mesen.GUI.Debugger
switch(e.NotificationType) {
case ConsoleNotificationType.GameLoaded: {
if(ConfigManager.Config.Debug.Debugger.BreakOnPowerCycleReset) {
DebugApi.Step(_cpuType, 1, StepType.PpuStep);
DebugApi.Step(_cpuType, 1, StepType.Step);
}
BreakpointManager.SetBreakpoints();