Fixing warnings.

This commit is contained in:
Ben Vanik 2015-06-20 17:37:07 -07:00
parent a0ec10fbea
commit 3738ccf18a
3 changed files with 4 additions and 3 deletions

View File

@ -23,7 +23,7 @@ using Xenia.Debug.Utilities;
namespace Xenia.Debug.UI {
public partial class MainWindow : Form {
private DeserializeDockContent deserializeDockContent;
// private DeserializeDockContent deserializeDockContent;
private BreakpointsPanel breakpointsPanel;
private CallstackPanel callstackPanel;

View File

@ -19,7 +19,7 @@
<IntermediateOutputPath>..\..\build\obj\Debug\</IntermediateOutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>false</Prefer32Bit>
@ -31,7 +31,7 @@
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>false</Prefer32Bit>

View File

@ -307,6 +307,7 @@ namespace Xenia.Debug {
private async Task BeginRunStateTransition() {
CurrentContext.SetRunState(RunState.Updating);
await Task.FromResult<int>(0);
}
private async Task CompleteRunStateTransition(RunState newRunState) {