fix SaveStateManager, oops. Also move BinarySavestate to client.common
This commit is contained in:
parent
3e429736d5
commit
0edfc03e34
|
@ -5,7 +5,7 @@ using System.Text;
|
||||||
using ICSharpCode.SharpZipLib.Zip;
|
using ICSharpCode.SharpZipLib.Zip;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace BizHawk.MultiClient
|
namespace BizHawk.Client.Common
|
||||||
{
|
{
|
||||||
public class BinaryStateFileNames
|
public class BinaryStateFileNames
|
||||||
{
|
{
|
|
@ -82,6 +82,7 @@
|
||||||
<Compile Include="7z\SevenZipExtractorAsynchronous.cs" />
|
<Compile Include="7z\SevenZipExtractorAsynchronous.cs" />
|
||||||
<Compile Include="7z\SevenZipSfx.cs" />
|
<Compile Include="7z\SevenZipSfx.cs" />
|
||||||
<Compile Include="7z\StreamWrappers.cs" />
|
<Compile Include="7z\StreamWrappers.cs" />
|
||||||
|
<Compile Include="BinarySaveStates.cs" />
|
||||||
<Compile Include="config\Binding.cs" />
|
<Compile Include="config\Binding.cs" />
|
||||||
<Compile Include="config\Config.cs" />
|
<Compile Include="config\Config.cs" />
|
||||||
<Compile Include="config\ConfigService.cs" />
|
<Compile Include="config\ConfigService.cs" />
|
||||||
|
@ -105,6 +106,7 @@
|
||||||
<Compile Include="RecentFiles.cs" />
|
<Compile Include="RecentFiles.cs" />
|
||||||
<Compile Include="helpers\StringHelpers.cs" />
|
<Compile Include="helpers\StringHelpers.cs" />
|
||||||
<Compile Include="RomGame.cs" />
|
<Compile Include="RomGame.cs" />
|
||||||
|
<Compile Include="SavestateManager.cs" />
|
||||||
<Compile Include="tools\Cheat.cs" />
|
<Compile Include="tools\Cheat.cs" />
|
||||||
<Compile Include="tools\CheatList.cs" />
|
<Compile Include="tools\CheatList.cs" />
|
||||||
<Compile Include="tools\RamSearchEngine.cs" />
|
<Compile Include="tools\RamSearchEngine.cs" />
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
namespace BizHawk.Client.Common
|
namespace BizHawk.Client.Common
|
||||||
{
|
{
|
||||||
class SavestateManager
|
public class SavestateManager
|
||||||
{
|
{
|
||||||
private readonly bool[] slots = new bool[10];
|
private readonly bool[] slots = new bool[10];
|
||||||
private readonly bool[] redo = new bool[10];
|
private readonly bool[] redo = new bool[10];
|
||||||
|
|
|
@ -152,7 +152,6 @@
|
||||||
<DependentUpon>VideoWriterChooserForm.cs</DependentUpon>
|
<DependentUpon>VideoWriterChooserForm.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="AVOut\WavWriter.cs" />
|
<Compile Include="AVOut\WavWriter.cs" />
|
||||||
<Compile Include="BinarySaveStates.cs" />
|
|
||||||
<Compile Include="BizBox.cs">
|
<Compile Include="BizBox.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
@ -974,7 +973,6 @@
|
||||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Properties\svnrev.cs" />
|
<Compile Include="Properties\svnrev.cs" />
|
||||||
<Compile Include="SavestateManager.cs" />
|
|
||||||
<Compile Include="Throttle.cs" />
|
<Compile Include="Throttle.cs" />
|
||||||
<Compile Include="tools\InputPrompt.cs">
|
<Compile Include="tools\InputPrompt.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
|
|
Loading…
Reference in New Issue