..huh. fix building, and also change an int to a long where it was conceivably inadequate

This commit is contained in:
zeromus 2015-08-13 21:54:38 -05:00
parent 5bf21e391c
commit 432adc7874
2 changed files with 5 additions and 4 deletions

View File

@ -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);
}

View File

@ -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?
/// </summary>
class NDBDatabase : IDisposable
public class NDBDatabase : IDisposable
{
FileStream Stream;
int BlockSize;