From 4de1d244ce7584bfb570fbdf29830d9d10a5ee17 Mon Sep 17 00:00:00 2001 From: zeromus Date: Wed, 18 Nov 2015 18:12:05 -0600 Subject: [PATCH] fix endianness of sprintf floats. i thought i checked this, but i guess not --- BizHawk.Common/Sprintf.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Common/Sprintf.cs b/BizHawk.Common/Sprintf.cs index 45bfafbe14..9d940625f9 100644 --- a/BizHawk.Common/Sprintf.cs +++ b/BizHawk.Common/Sprintf.cs @@ -244,9 +244,9 @@ namespace BizHawk.Common static double GetDouble(IntPtr first, IntPtr second) { var ms = new MemoryStream(8); - var bw = new BinaryWriter(ms); + var bw = new BinaryWriter(ms); + bw.Write(first.ToInt32()); bw.Write(second.ToInt32()); - bw.Write(first.ToInt32()); bw.Flush(); ms.Position = 0; var br = new BinaryReader(ms);