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

22 lines
307 B
C#

using System;
using BizHawk.Common;
namespace BizHawk.Emulation.Cores.Libretro
{
unsafe partial class LibretroApi
{
bool Handle_BRK(eMessage msg)
{
switch (msg)
{
default:
return false;
} //switch(msg)
Message(eMessage.Resume);
return true;
}
}
}