-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:
taotao54321 2012-03-08 15:31:19 +00:00
parent 434bfebb1f
commit 866f3c9e93
2 changed files with 2 additions and 4 deletions

View File

@ -68,9 +68,6 @@
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
<Visible>False</Visible>

View File

@ -434,6 +434,7 @@ namespace HuC6280
{
var w = new StreamWriter(file, false);
w.WriteLine("using System;");
w.WriteLine("using BizHawk.Emulation.Consoles.TurboGrafx;");
w.WriteLine();
w.WriteLine("// Do not modify this file directly! This is GENERATED code.");
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(" ThinkAction();");
w.WriteLine(" ThinkAction(delta);");
w.WriteLine(" }");
w.WriteLine(" }");
w.WriteLine(" }");