diff options
| author | Agustin Insua <Nistenf@users.noreply.github.com> | 2021-09-11 16:16:48 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-11 21:16:48 +0200 |
| commit | bcbe6ef6cdbd22d22566cb17d5cd80f9cd15bbac (patch) | |
| tree | e7e4852baf60d2c43e6453069388131268debdec | |
| parent | 830d1f097d62ea4888d2d405f3c74b54948889aa (diff) | |
Update game metadata when stopping emulation (#2610)
* Update game metadata when stopping emulation
* Fix formatting
| -rw-r--r-- | Ryujinx/Ui/MainWindow.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Ryujinx/Ui/MainWindow.cs b/Ryujinx/Ui/MainWindow.cs index fa46de61..41916b3c 100644 --- a/Ryujinx/Ui/MainWindow.cs +++ b/Ryujinx/Ui/MainWindow.cs @@ -1276,6 +1276,11 @@ namespace Ryujinx.Ui private void StopEmulation_Pressed(object sender, EventArgs args) { + if (_emulationContext != null) + { + UpdateGameMetadata(_emulationContext.Application.TitleIdText); + } + RendererWidget?.Exit(); } |
