mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-13 10:18:30 +12:00
fix H264_IsBotW() return false while BotW's TitleRegion is JP
This cause fail to playback the 1080p videos from the BotW Switch version if BotW's TitleRegion is JP.
This commit is contained in:
parent
76126e69b2
commit
bbf29eea0c
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ namespace H264
|
|||
// both of these are required to allow Breath of the Wild to playback the higher res (1080p) videos from the Switch version
|
||||
// we mirror these hacks for user convenience and because there are no downsides
|
||||
uint64 currentTitleId = CafeSystem::GetForegroundTitleId();
|
||||
if (currentTitleId == 0x00050000101c9500 || currentTitleId == 0x00050000101c9400 || currentTitleId == 0x0005000e101c9300)
|
||||
if (currentTitleId == 0x00050000101c9500 || currentTitleId == 0x00050000101c9400 || currentTitleId == 0x00050000101c9300)
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue