libsnes: Hack about a bit to make the graphics debugger function again. It probably crashes somewhere...
This commit is contained in:
parent
dee906ecb6
commit
1314912cf8
File diff suppressed because it is too large
Load Diff
|
@ -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; }
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue