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 { namespace Xenia.Debug.UI {
public partial class MainWindow : Form { public partial class MainWindow : Form {
private DeserializeDockContent deserializeDockContent; // private DeserializeDockContent deserializeDockContent;
private BreakpointsPanel breakpointsPanel; private BreakpointsPanel breakpointsPanel;
private CallstackPanel callstackPanel; private CallstackPanel callstackPanel;

View File

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

View File

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