Fixing warnings.
This commit is contained in:
parent
a0ec10fbea
commit
3738ccf18a
|
@ -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;
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue