Fast-fail Mupen core ctor on Linux

This commit is contained in:
YoshiRulz 2022-05-07 23:20:12 +10:00
parent a949178559
commit 6e46cb550b
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,7 @@
using System;
using System.Threading;
using BizHawk.Common;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Cores.Nintendo.N64.NativeApi;
@ -21,6 +22,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64
[CoreConstructor(VSystemID.Raw.N64)]
public N64(GameInfo game, byte[] file, byte[] rom, N64Settings settings, N64SyncSettings syncSettings)
{
if (OSTailoredCode.IsUnixHost) throw new NotImplementedException();
ServiceProvider = new BasicServiceProvider(this);
InputCallbacks = new InputCallbackSystem();