From 3738ccf18a3e54cf59dac2b3bd10b3f77ed969f7 Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Sat, 20 Jun 2015 17:37:07 -0700 Subject: [PATCH] Fixing warnings. --- src/Xenia.Debug.UI/MainWindow.cs | 2 +- src/Xenia.Debug.UI/Xenia.Debug.UI.csproj | 4 ++-- src/Xenia.Debug/Debugger.cs | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Xenia.Debug.UI/MainWindow.cs b/src/Xenia.Debug.UI/MainWindow.cs index a0bd3bfd0..e4843db07 100644 --- a/src/Xenia.Debug.UI/MainWindow.cs +++ b/src/Xenia.Debug.UI/MainWindow.cs @@ -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; diff --git a/src/Xenia.Debug.UI/Xenia.Debug.UI.csproj b/src/Xenia.Debug.UI/Xenia.Debug.UI.csproj index 3b87864b9..60c0e82c7 100644 --- a/src/Xenia.Debug.UI/Xenia.Debug.UI.csproj +++ b/src/Xenia.Debug.UI/Xenia.Debug.UI.csproj @@ -19,7 +19,7 @@ ..\..\build\obj\Debug\ DEBUG;TRACE full - AnyCPU + x64 prompt MinimumRecommendedRules.ruleset false @@ -31,7 +31,7 @@ TRACE true pdbonly - AnyCPU + x64 prompt MinimumRecommendedRules.ruleset false diff --git a/src/Xenia.Debug/Debugger.cs b/src/Xenia.Debug/Debugger.cs index 705071a84..0038eb37f 100644 --- a/src/Xenia.Debug/Debugger.cs +++ b/src/Xenia.Debug/Debugger.cs @@ -307,6 +307,7 @@ namespace Xenia.Debug { private async Task BeginRunStateTransition() { CurrentContext.SetRunState(RunState.Updating); + await Task.FromResult(0); } private async Task CompleteRunStateTransition(RunState newRunState) {