mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-08-03 20:24:14 +02:00
allow Wii System Transfer and WagonCompat to call ES_SetUID
This commit is contained in:
@@ -283,7 +283,11 @@ static ReturnCode CheckIsAllowedToSetUID(EmulationKernel& kernel, ES::UIDSys* ui
|
||||
{
|
||||
const bool is_wiiu_transfer_tool =
|
||||
active_tmd.IsValid() && (active_tmd.GetTitleId() | 0xFF) == 0x00010001'484353ff;
|
||||
if (is_wiiu_transfer_tool)
|
||||
const bool is_wii_system_transfer =
|
||||
active_tmd.IsValid() && (active_tmd.GetTitleId() | 0xFF) == 0x00010001'484354ff;
|
||||
const bool is_wagoncompat_transfer =
|
||||
active_tmd.IsValid() && (active_tmd.GetTitleId() | 0xFF) == 0x00010008'48435aff;
|
||||
if (is_wiiu_transfer_tool || is_wii_system_transfer || is_wagoncompat_transfer)
|
||||
return IPC_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user