Minor wording fixes... Except I'm doing it for all of Ryujinx. (#2078)
* Minor wording fixes * Exit dialogue. * Update MainWindow.cs * Update DlcWindow.cs * I found an actual typo for once. * There we go. * Fix * Update MainWindow.cs * MainWindow is done * Update ControllerWindow.cs
This commit is contained in:
parent
a56423802c
commit
ca848d6359
5 changed files with 15 additions and 15 deletions
|
@ -452,7 +452,7 @@ namespace Ryujinx.Ui
|
|||
{
|
||||
if (_gameLoaded)
|
||||
{
|
||||
GtkDialog.CreateInfoDialog("A game has already been loaded", "Please close it first and try again.");
|
||||
GtkDialog.CreateInfoDialog("A game has already been loaded", "Please stop emulation or close the emulator before launching another game.");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -559,14 +559,14 @@ namespace Ryujinx.Ui
|
|||
_emulationContext.LoadNsp(path);
|
||||
break;
|
||||
default:
|
||||
Logger.Info?.Print(LogClass.Application, "Loading as homebrew.");
|
||||
Logger.Info?.Print(LogClass.Application, "Loading as Homebrew.");
|
||||
try
|
||||
{
|
||||
_emulationContext.LoadProgram(path);
|
||||
}
|
||||
catch (ArgumentOutOfRangeException)
|
||||
{
|
||||
Logger.Error?.Print(LogClass.Application, "The file which you have specified is unsupported by Ryujinx.");
|
||||
Logger.Error?.Print(LogClass.Application, "The specified file is not supported by Ryujinx.");
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
@ -1230,7 +1230,7 @@ namespace Ryujinx.Ui
|
|||
{
|
||||
Updater.BeginParse(this, true).ContinueWith(task =>
|
||||
{
|
||||
Logger.Error?.Print(LogClass.Application, $"Updater Error: {task.Exception}");
|
||||
Logger.Error?.Print(LogClass.Application, $"Updater error: {task.Exception}");
|
||||
}, TaskContinuationOptions.OnlyOnFaulted);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue