From e8b84b466b0f4f88ea776bbea8f9ea067e423734 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sat, 6 Jun 2020 10:02:51 -0400 Subject: [PATCH] More hacks, just need to unblock yoshi and fix this for real later pinky swear --- src/BizHawk.BizInvoke/CallingConventionAdapter.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/BizHawk.BizInvoke/CallingConventionAdapter.cs b/src/BizHawk.BizInvoke/CallingConventionAdapter.cs index 84bd044896..da1443f992 100644 --- a/src/BizHawk.BizInvoke/CallingConventionAdapter.cs +++ b/src/BizHawk.BizInvoke/CallingConventionAdapter.cs @@ -82,9 +82,11 @@ namespace BizHawk.BizInvoke static CallingConventionAdapters() { - Waterbox = OSTailoredCode.IsUnixHost - ? (ICallingConventionAdapter)new SysVHostMsGuest() - : new NativeConvention(); + Waterbox = new NativeConvention(); + // OSTailoredCode.IsUnixHost + // // TODO: This will not work properly on linux, but it gets us past some stuff until we're ready to implement this for real + // ? (ICallingConventionAdapter)new SysVHostMsGuest() + // : new NativeConvention(); } ///