diff options
author | riperiperi <rhy3756547@hotmail.com> | 2022-12-06 22:00:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-06 19:00:25 -0300 |
commit | e211c3f00a847f50b286349918e5c51967862e93 (patch) | |
tree | 5c703923741ee42362c86fef3981bdf745f881a4 /Ryujinx/Modules/Updater/UpdateDialog.cs | |
parent | d3709a753f88e6b02d6a1760835227a7fdcc5a19 (diff) |
UI: Add Metal surface creation for MoltenVK (#3980)1.1.439
* Initial implementation of metal surface across UIs
* Fix SDL2 on windows
* Update Ryujinx/Ryujinx.csproj
Co-authored-by: Mary-nyan <thog@protonmail.com>
* Address Feedback
Co-authored-by: Mary-nyan <thog@protonmail.com>
Diffstat (limited to 'Ryujinx/Modules/Updater/UpdateDialog.cs')
-rw-r--r-- | Ryujinx/Modules/Updater/UpdateDialog.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx/Modules/Updater/UpdateDialog.cs b/Ryujinx/Modules/Updater/UpdateDialog.cs index cb71fafc..a1556713 100644 --- a/Ryujinx/Modules/Updater/UpdateDialog.cs +++ b/Ryujinx/Modules/Updater/UpdateDialog.cs @@ -25,7 +25,7 @@ namespace Ryujinx.Modules public UpdateDialog(MainWindow mainWindow, Version newVersion, string buildUrl) : this(new Builder("Ryujinx.Modules.Updater.UpdateDialog.glade"), mainWindow, newVersion, buildUrl) { } - private UpdateDialog(Builder builder, MainWindow mainWindow, Version newVersion, string buildUrl) : base(builder.GetObject("UpdateDialog").Handle) + private UpdateDialog(Builder builder, MainWindow mainWindow, Version newVersion, string buildUrl) : base(builder.GetRawOwnedObject("UpdateDialog")) { builder.Autoconnect(this); |