From 1373c76eb9eb8251f6f12f69b4b26c8bd3f06518 Mon Sep 17 00:00:00 2001 From: bslhq Date: Mon, 5 Sep 2022 00:19:27 +0800 Subject: [PATCH] fix H264_IsBotW() return false while BotW's TitleRegion is JP (#174) --- src/Cafe/OS/libs/h264_avc/H264Dec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cafe/OS/libs/h264_avc/H264Dec.cpp b/src/Cafe/OS/libs/h264_avc/H264Dec.cpp index d15f6683..085a2e69 100644 --- a/src/Cafe/OS/libs/h264_avc/H264Dec.cpp +++ b/src/Cafe/OS/libs/h264_avc/H264Dec.cpp @@ -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; }