BizHawk/BizHawk.Emulation.Cores/Libretro/LibretroApi_BRK.cs

21 lines
319 B
C#

namespace BizHawk.Emulation.Cores.Libretro
{
unsafe partial class LibretroApi
{
bool Handle_BRK(eMessage msg)
{
switch (msg)
{
default:
return false;
} //switch(msg)
// TODO: do we want this ever?
#if false
Message(eMessage.Resume);
return true;
#endif
}
}
}