Skip to content

Commit

Permalink
Fast-fail Mupen core ctor on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
YoshiRulz committed May 9, 2022
1 parent a949178 commit 6e46cb5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System;
using System.Threading;

using BizHawk.Common;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Cores.Nintendo.N64.NativeApi;

Expand All @@ -21,6 +22,8 @@ public partial class N64 : IEmulator, ISaveRam, IDebuggable, IStatable, IInputPo
[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();

Expand Down

0 comments on commit 6e46cb5

Please sign in to comment.