libsnes: Hack about a bit to make the graphics debugger function again. It probably crashes somewhere...

This commit is contained in:
nattthebear 2017-06-13 17:54:26 -04:00
parent dee906ecb6
commit 1314912cf8
3 changed files with 1490 additions and 1475 deletions

File diff suppressed because it is too large Load Diff

View File

@ -201,7 +201,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES
public string CurrentProfile => "Compatibility"; // We no longer support performance, and accuracy isn't worth the effort so we shall just hardcode this one
private LibsnesApi Api { get; }
public LibsnesApi Api { get; }
public SnesColors.ColorType CurrPalette { get; private set; }

View File

@ -8,12 +8,13 @@
//TODO
//when a BG is not available, the last rendered BG still shows up. should clear it
using BizHawk.Common;
using System;
namespace BizHawk.Emulation.Cores.Nintendo.SNES
{
public unsafe class SNESGraphicsDecoder : IDisposable
public unsafe class SNESGraphicsDecoder : IDisposable, IMonitor
{
public class PaletteSelection
{
@ -1041,7 +1042,15 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES
screen[i] = directColorTable[screen[i]];
}
public void Enter()
{
((IMonitor)api).Enter();
}
public void Exit()
{
((IMonitor)api).Exit();
}
} //class SNESGraphicsDecoder
} //namespace