mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-04 18:12:25 -07:00
Undertale boots
This commit is contained in:
committed by
Isaac Marovitz
parent
ce5f5a6442
commit
00fce5a51d
22
src/Ryujinx.Graphics.Metal/Program.cs
Normal file
22
src/Ryujinx.Graphics.Metal/Program.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using Ryujinx.Graphics.GAL;
|
||||
|
||||
namespace Ryujinx.Graphics.Metal
|
||||
{
|
||||
public class Program : IProgram
|
||||
{
|
||||
public void Dispose()
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
public ProgramLinkStatus CheckProgramLink(bool blocking)
|
||||
{
|
||||
return ProgramLinkStatus.Failure;
|
||||
}
|
||||
|
||||
public byte[] GetBinary()
|
||||
{
|
||||
return new byte[] {};
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user