diff options
Diffstat (limited to 'Ryujinx/Ui/GameTableContextMenu.cs')
-rw-r--r-- | Ryujinx/Ui/GameTableContextMenu.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Ryujinx/Ui/GameTableContextMenu.cs b/Ryujinx/Ui/GameTableContextMenu.cs index 2efe1d3e..1f8d9ba8 100644 --- a/Ryujinx/Ui/GameTableContextMenu.cs +++ b/Ryujinx/Ui/GameTableContextMenu.cs @@ -184,7 +184,7 @@ namespace Ryujinx.Ui control.UserAccountSaveDataSize = 0x4000; control.UserAccountSaveDataJournalSize = 0x4000; - Logger.PrintWarning(LogClass.Application, + Logger.Warning?.Print(LogClass.Application, "No control file was found for this game. Using a dummy one instead. This may cause inaccuracies in some games."); } @@ -328,7 +328,7 @@ namespace Ryujinx.Ui if (mainNca == null) { - Logger.PrintError(LogClass.Application, "Extraction failed. The main NCA was not present in the selected file."); + Logger.Error?.Print(LogClass.Application, "Extraction failed. The main NCA was not present in the selected file."); Gtk.Application.Invoke(delegate { @@ -389,7 +389,7 @@ namespace Ryujinx.Ui { if (resultCode.Value.IsFailure()) { - Logger.PrintError(LogClass.Application, $"LibHac returned error code: {resultCode.Value.ErrorCode}"); + Logger.Error?.Print(LogClass.Application, $"LibHac returned error code: {resultCode.Value.ErrorCode}"); Gtk.Application.Invoke(delegate { |