diff options
| author | SeraUX <62521228+SeraUX@users.noreply.github.com> | 2020-05-05 13:51:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-05 21:51:04 +1000 |
| commit | 8be73351762f44620417b0dbe15129d8c00af6e1 (patch) | |
| tree | 0858b2e6872f1b6e29835ee64528754b8f3b11f4 | |
| parent | 371b9999f268a07162039ad16dedd0861726d594 (diff) | |
Logging the current firmware version (#1199)
* Logging the curent firmware version
* fixed an error in cases when firmware is not installed
| -rw-r--r-- | Ryujinx/Ui/MainWindow.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Ryujinx/Ui/MainWindow.cs b/Ryujinx/Ui/MainWindow.cs index 9c77fddb..caf5d2d0 100644 --- a/Ryujinx/Ui/MainWindow.cs +++ b/Ryujinx/Ui/MainWindow.cs @@ -351,6 +351,8 @@ namespace Ryujinx.Ui Graphics.Gpu.GraphicsConfig.MaxAnisotropy = ConfigurationState.Instance.Graphics.MaxAnisotropy; Graphics.Gpu.GraphicsConfig.ShadersDumpPath = ConfigurationState.Instance.Graphics.ShadersDumpPath; + Logger.PrintInfo(LogClass.Application, $"Using Firmware Version: {_contentManager.GetCurrentFirmwareVersion()?.VersionString}"); + if (Directory.Exists(path)) { string[] romFsFiles = Directory.GetFiles(path, "*.istorage"); |
