From 136021033122128e9fd638656bc41fa931b5482b Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Thu, 2 Jul 2020 10:04:58 +1000 Subject: [PATCH] This was flooding stdout in Release builds --- src/BizHawk.Client.Common/rewind/ZwinderBuffer.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.Common/rewind/ZwinderBuffer.cs b/src/BizHawk.Client.Common/rewind/ZwinderBuffer.cs index cb692e1fa9..ce843b79ae 100644 --- a/src/BizHawk.Client.Common/rewind/ZwinderBuffer.cs +++ b/src/BizHawk.Client.Common/rewind/ZwinderBuffer.cs @@ -2,6 +2,8 @@ using System; using System.Collections.Generic; using System.IO; using System.IO.Compression; + +using BizHawk.Common; using BizHawk.Emulation.Common; namespace BizHawk.Client.Common @@ -161,7 +163,7 @@ namespace BizHawk.Client.Common _states[_nextStateIndex].Size = (int)stream.Length; _nextStateIndex = (_nextStateIndex + 1) & StateMask; - Console.WriteLine($"Size: {Size >> 20}MiB, Used: {Used >> 20}MiB, States: {Count}"); + Util.DebugWriteLine($"Size: {Size >> 20}MiB, Used: {Used >> 20}MiB, States: {Count}"); } private Stream MakeLoadStream(int index) @@ -211,7 +213,7 @@ namespace BizHawk.Client.Common if ((uint)index > (uint)Count) throw new IndexOutOfRangeException(); _nextStateIndex = (index + _firstStateIndex) & StateMask; - Console.WriteLine($"Size: {Size >> 20}MiB, Used: {Used >> 20}MiB, States: {Count}"); + Util.DebugWriteLine($"Size: {Size >> 20}MiB, Used: {Used >> 20}MiB, States: {Count}"); } public void SaveStateBinary(BinaryWriter writer)