From 0d7116ef0618dbce92c00aed0d6091e321b083fb Mon Sep 17 00:00:00 2001 From: nattthebear Date: Wed, 14 Jun 2017 19:58:13 -0400 Subject: [PATCH] they must never know my secret... --- BizHawk.Emulation.Cores/Waterbox/MemoryBlock.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Waterbox/MemoryBlock.cs b/BizHawk.Emulation.Cores/Waterbox/MemoryBlock.cs index b3917b2f18..700c1922b0 100644 --- a/BizHawk.Emulation.Cores/Waterbox/MemoryBlock.cs +++ b/BizHawk.Emulation.Cores/Waterbox/MemoryBlock.cs @@ -334,7 +334,7 @@ namespace BizHawk.Emulation.Cores.Waterbox { default: case SeekOrigin.Begin: - newpos = 0; + newpos = offset; break; case SeekOrigin.Current: newpos = _pos + offset;