-CpuCoreGenerator: To build successfully, removed nonexistent "app.config" from project.
-HuC6280/Execute.cs seems to be modified manually, so CpuCoreGenerator follows it.
This commit is contained in:
parent
434bfebb1f
commit
866f3c9e93
|
@ -68,9 +68,6 @@
|
||||||
<Compile Include="Program.cs" />
|
<Compile Include="Program.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<None Include="app.config" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
||||||
<Visible>False</Visible>
|
<Visible>False</Visible>
|
||||||
|
|
|
@ -434,6 +434,7 @@ namespace HuC6280
|
||||||
{
|
{
|
||||||
var w = new StreamWriter(file, false);
|
var w = new StreamWriter(file, false);
|
||||||
w.WriteLine("using System;");
|
w.WriteLine("using System;");
|
||||||
|
w.WriteLine("using BizHawk.Emulation.Consoles.TurboGrafx;");
|
||||||
w.WriteLine();
|
w.WriteLine();
|
||||||
w.WriteLine("// Do not modify this file directly! This is GENERATED code.");
|
w.WriteLine("// Do not modify this file directly! This is GENERATED code.");
|
||||||
w.WriteLine("// Please open the CpuCoreGenerator solution and make your modifications there.");
|
w.WriteLine("// Please open the CpuCoreGenerator solution and make your modifications there.");
|
||||||
|
@ -530,7 +531,7 @@ namespace HuC6280
|
||||||
w.WriteLine(" }");
|
w.WriteLine(" }");
|
||||||
w.WriteLine(" }");
|
w.WriteLine(" }");
|
||||||
w.WriteLine(" }");
|
w.WriteLine(" }");
|
||||||
w.WriteLine(" ThinkAction();");
|
w.WriteLine(" ThinkAction(delta);");
|
||||||
w.WriteLine(" }");
|
w.WriteLine(" }");
|
||||||
w.WriteLine(" }");
|
w.WriteLine(" }");
|
||||||
w.WriteLine(" }");
|
w.WriteLine(" }");
|
||||||
|
|
Loading…
Reference in New Issue