From 432adc78747d424f9d8cb78167fda8e8bb885634 Mon Sep 17 00:00:00 2001 From: zeromus Date: Thu, 13 Aug 2015 21:54:38 -0500 Subject: [PATCH] ..huh. fix building, and also change an int to a long where it was conceivably inadequate --- BizHawk.Client.Common/movie/tasproj/TasStateManager.cs | 7 ++++--- BizHawk.Common/NDBDatabase.cs | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs index eca21d54ff..b95d87e81a 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs @@ -5,6 +5,7 @@ using System.IO; using System.Linq; using System.Text; +using BizHawk.Common; using BizHawk.Emulation.Common; using BizHawk.Emulation.Common.IEmulatorExtensions; @@ -12,12 +13,12 @@ namespace BizHawk.Client.Common { class tsmState : IDisposable { - static int state_id = 0; + static long state_id = 0; TasStateManager _manager; byte[] _state; int frame; - int ID; + long ID; public tsmState(TasStateManager manager, byte[] state) { @@ -25,7 +26,7 @@ namespace BizHawk.Client.Common _state = state; //I still think this is a bad idea. IDs may need scavenging somehow - if (state_id > int.MaxValue - 100) + if (state_id > long.MaxValue - 100) throw new InvalidOperationException(); ID = System.Threading.Interlocked.Increment(ref state_id); } diff --git a/BizHawk.Common/NDBDatabase.cs b/BizHawk.Common/NDBDatabase.cs index 96365ac993..989c348b6a 100644 --- a/BizHawk.Common/NDBDatabase.cs +++ b/BizHawk.Common/NDBDatabase.cs @@ -11,7 +11,7 @@ namespace BizHawk.Common /// Blocks can be differently sized than the basic block size. Wastage will occur. /// TODO: Mount on memory as well? /// - class NDBDatabase : IDisposable + public class NDBDatabase : IDisposable { FileStream Stream; int BlockSize;