Added Super Mario Odyssey

This commit is contained in:
Piplup 2025-02-03 01:55:44 +00:00
parent b38b5a1e70
commit 9bb371e875
No known key found for this signature in database
GPG Key ID: AADE53FD75F1BEAD

View File

@ -131,6 +131,11 @@ namespace Ryujinx.Ava
"01007ef00011e000", "01007ef00011e000",
gameSpec => gameSpec =>
gameSpec.AddValueFormatter("IsHardMode", val => val is 1 ? "Playing Master Mode" : "Playing Normal Mode") gameSpec.AddValueFormatter("IsHardMode", val => val is 1 ? "Playing Master Mode" : "Playing Normal Mode")
)
.AddSpec( // Super Mario Odyssey
"0100000000010000",
gameSpec =>
gameSpec.AddValueFormatter("is_kids_mode", val => val is 1 ? "Playing in Assist Mode" : "Playing in Regular Mode")
); );
private static void HandlePlayReport(MessagePackObject playReport) private static void HandlePlayReport(MessagePackObject playReport)