Debugger: Refresh PPU viewers on code break
This commit is contained in:
parent
b37eff42ab
commit
fd0aefd130
3 changed files with 3 additions and 0 deletions
|
@ -51,6 +51,7 @@ namespace Mesen.GUI.Debugger
|
|||
private void OnNotificationReceived(NotificationEventArgs e)
|
||||
{
|
||||
switch(e.NotificationType) {
|
||||
case ConsoleNotificationType.CodeBreak:
|
||||
case ConsoleNotificationType.ViewerRefresh:
|
||||
if(e.Parameter.ToInt32() == ctrlScanlineCycleSelect.ViewerId) {
|
||||
ctrlPaletteViewer.RefreshData();
|
||||
|
|
|
@ -68,6 +68,7 @@ namespace Mesen.GUI.Debugger
|
|||
private void OnNotificationReceived(NotificationEventArgs e)
|
||||
{
|
||||
switch(e.NotificationType) {
|
||||
case ConsoleNotificationType.CodeBreak:
|
||||
case ConsoleNotificationType.ViewerRefresh:
|
||||
if(e.Parameter.ToInt32() == ctrlScanlineCycleSelect.ViewerId) {
|
||||
RefreshData();
|
||||
|
|
|
@ -74,6 +74,7 @@ namespace Mesen.GUI.Debugger
|
|||
private void OnNotificationReceived(NotificationEventArgs e)
|
||||
{
|
||||
switch(e.NotificationType) {
|
||||
case ConsoleNotificationType.CodeBreak:
|
||||
case ConsoleNotificationType.ViewerRefresh:
|
||||
if(e.Parameter.ToInt32() == ctrlScanlineCycleSelect.ViewerId) {
|
||||
RefreshData();
|
||||
|
|
Loading…
Add table
Reference in a new issue