libgambatte can now get into game (with recognizable graphics). exceptions everywhere and nothing is hooked up, though.
This commit is contained in:
parent
588d6214d5
commit
7b9bbe6b31
|
@ -119,31 +119,31 @@ namespace BizHawk.Emulation.Consoles.Gambatte
|
|||
|
||||
public void SaveStateText(System.IO.TextWriter writer)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
|
||||
}
|
||||
|
||||
public void LoadStateText(System.IO.TextReader reader)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
|
||||
}
|
||||
|
||||
public void SaveStateBinary(System.IO.BinaryWriter writer)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
|
||||
}
|
||||
|
||||
public void LoadStateBinary(System.IO.BinaryReader reader)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
|
||||
}
|
||||
|
||||
public byte[] SaveStateBinary()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
return new byte[0];
|
||||
}
|
||||
|
||||
|
||||
public CoreInputComm CoreInputComm{ get; set; }
|
||||
public CoreInputComm CoreInputComm { get; set; }
|
||||
|
||||
CoreOutputComm GbOutputComm = new CoreOutputComm
|
||||
{
|
||||
|
|
|
@ -39,11 +39,11 @@
|
|||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<OutDir>$(ProjectDir)$(Configuration)\</OutDir>
|
||||
<OutDir>$(SolutionDir)\BizHawk.MultiClient\output\</OutDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<OutDir>$(ProjectDir)$(Configuration)\</OutDir>
|
||||
<OutDir>$(SolutionDir)\BizHawk.MultiClient\output\</OutDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
|
|
Loading…
Reference in New Issue