diff --git a/src/BizHawk.Emulation.Cores/Waterbox/WaterboxHost.cs b/src/BizHawk.Emulation.Cores/Waterbox/WaterboxHost.cs index b044fc78b5..deaeb7e515 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/WaterboxHost.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/WaterboxHost.cs @@ -149,8 +149,8 @@ namespace BizHawk.Emulation.Cores.Waterbox } // cache these delegates so they aren't GC'd - private readonly ReadCallback _readCallback = ReadCallback; - private readonly WriteCallback _writeCallback = WriteCallback; + private static readonly ReadCallback _readCallback = ReadCallback; + private static readonly WriteCallback _writeCallback = WriteCallback; public WaterboxHost(WaterboxOptions opt) {