Skip to content
This repository has been archived by the owner on Oct 13, 2022. It is now read-only.

Commit

Permalink
Update paths in wizard
Browse files Browse the repository at this point in the history
  • Loading branch information
valters-tomsons committed Jul 18, 2020
1 parent 96151e1 commit eda6d90
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/SpectabisNext/Pages/FirstTimeWizard.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ private async Task Open_BrowseConfiguration()

_configuration.Directories.PCSX2ConfigurationPath = new Uri(browserResult, UriKind.Absolute);
await _configuration.WriteConfiguration(_configuration.Directories).ConfigureAwait(true);
_viewModel.ConfigurationPath = browserResult;
}

private void BrowseExecutableClick(object sender, RoutedEventArgs e)
Expand All @@ -96,6 +97,7 @@ private async Task Open_BrowseExectuable()

_configuration.Directories.PCSX2Executable = new Uri(browserResult, UriKind.Absolute);
await _configuration.WriteConfiguration(_configuration.Directories).ConfigureAwait(true);
_viewModel.ExecutablePath= browserResult;
}

private void FirstButtonClick(object sender, RoutedEventArgs e)
Expand Down

0 comments on commit eda6d90

Please sign in to comment.