From 5d9e4ad7a48f0032157e9cbfd158bcf195d67830 Mon Sep 17 00:00:00 2001 From: Willians Date: Mon, 17 Feb 2025 02:22:36 -0300 Subject: [PATCH 1/4] Add Super Mario Party Jamboree to compatibility list (#673) --- docs/compatibility.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/compatibility.csv b/docs/compatibility.csv index cee90c541..4cad8e8db 100644 --- a/docs/compatibility.csv +++ b/docs/compatibility.csv @@ -2839,6 +2839,7 @@ 01009B90006DC000,"Super Mario Maker™ 2",online-broken;ldn-broken,playable,2024-08-25 11:05:19 0100000000010000,"Super Mario Odyssey™",nvdec;intel-vendor-bug;mac-bug,playable,2024-08-25 01:32:34 010036B0034E4000,"Super Mario Party™",gpu;Needs Update;ldn-works,ingame,2024-06-21 05:10:16 +0100965017338000,"Super Mario Party Jamboree",mac-bug;gpu,ingame,2025-02-17 02:09:20 0100BC0018138000,"Super Mario RPG™",gpu;audio;nvdec,ingame,2024-06-19 17:43:42 ,"Super Mario World",homebrew,boots,2024-06-13 01:40:31 010049900F546000,"Super Mario™ 3D All-Stars",services-horizon;slow;vulkan;amd-vendor-bug,ingame,2024-05-07 02:38:16 From 18238736bec0914830105d76c2dbc2910fa8fe85 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Sun, 16 Feb 2025 23:55:36 -0600 Subject: [PATCH 2/4] Early exit when outdated Windows detected --- src/Ryujinx/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Ryujinx/Program.cs b/src/Ryujinx/Program.cs index 831e4294c..d7987534f 100644 --- a/src/Ryujinx/Program.cs +++ b/src/Ryujinx/Program.cs @@ -47,6 +47,7 @@ namespace Ryujinx.Ava if (OperatingSystem.IsWindows() && !OperatingSystem.IsWindowsVersionAtLeast(10, 0, 19041)) { _ = MessageBoxA(nint.Zero, "You are running an outdated version of Windows.\n\nRyujinx supports Windows 10 version 20H1 and newer.\n", $"Ryujinx {Version}", MbIconwarning); + return 0; } PreviewerDetached = true; From 719be560ec26371b4b44c6284e2917c80c318701 Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Mon, 17 Feb 2025 02:04:18 -0600 Subject: [PATCH 3/4] UI: RPC: Hogwarts Legacy asset image --- src/Ryujinx.Common/TitleIDs.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Ryujinx.Common/TitleIDs.cs b/src/Ryujinx.Common/TitleIDs.cs index 76d873f60..c8ebaa0b5 100644 --- a/src/Ryujinx.Common/TitleIDs.cs +++ b/src/Ryujinx.Common/TitleIDs.cs @@ -230,6 +230,7 @@ namespace Ryujinx.Common "01008c8012920000", // Dying Light Platinum Edition "01001cc01b2d4000", // Goat Simulator 3 "01003620068ea000", // Hand of Fate 2 + "0100f7e00c70e000", // Hogwarts Legacy "010085500130a000", // Lego City: Undercover "010073c01af34000", // LEGO Horizon Adventures "0100d71004694000", // Minecraft From 12f0dbcc707430821901c98eeae4093d7ae4672d Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Mon, 17 Feb 2025 13:43:28 -0600 Subject: [PATCH 4/4] metal: Commented Bayonetta & New Pokemon Snap for Metal for more testing, removed Astral Chain --- src/Ryujinx.Common/TitleIDs.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Ryujinx.Common/TitleIDs.cs b/src/Ryujinx.Common/TitleIDs.cs index c8ebaa0b5..1bf788c96 100644 --- a/src/Ryujinx.Common/TitleIDs.cs +++ b/src/Ryujinx.Common/TitleIDs.cs @@ -53,10 +53,9 @@ namespace Ryujinx.Common "0100000000010000", // Super Mario Odyssey // Further testing is appreciated, I did not test the entire game: - "01007300020fa000", // Astral Chain - "010076f0049a2000", // Bayonetta - "0100cf5010fec000", // Bayonetta Origins: Cereza and the Lost Demon - "0100f4300bf2c000", // New Pokemon Snap + //"010076f0049a2000", // Bayonetta + //"0100cf5010fec000", // Bayonetta Origins: Cereza and the Lost Demon + //"0100f4300bf2c000", // New Pokemon Snap ]; public static string GetDiscordGameAsset(string titleId)