Added Super Mario Odyssey (China)

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

View File

@ -136,6 +136,11 @@ namespace Ryujinx.Ava
"0100000000010000",
gameSpec =>
gameSpec.AddValueFormatter("is_kids_mode", val => val is 1 ? "Playing in Assist Mode" : "Playing in Regular Mode")
)
.AddSpec( // Super Mario Odyssey (China)
"010075000ECBE000",
gameSpec =>
gameSpec.AddValueFormatter("is_kids_mode", val => val is 1 ? "Playing in 帮助模式" : "Playing in 普通模式")
);
private static void HandlePlayReport(MessagePackObject playReport)