From 401f26efa3b19d985bef2d0ac65d5b52c59fa716 Mon Sep 17 00:00:00 2001 From: yosiokat Date: Thu, 24 Jul 2008 08:38:24 +0000 Subject: [PATCH] =?UTF-8?q?Rev.1962=E3=81=AE=E5=A4=89=E6=9B=B4=E3=82=92?= =?UTF-8?q?=E3=83=9E=E3=83=BC=E3=82=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@1984 b08762b0-b915-fc4b-9d8c-17b2551a87ff --- include/sysmenu/util.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/sysmenu/util.h b/include/sysmenu/util.h index a28f4b07..3e54fd10 100644 --- a/include/sysmenu/util.h +++ b/include/sysmenu/util.h @@ -123,7 +123,13 @@ extern u64 UTL_GetFatalError( void ); // FATAL // リージョンチェック static inline BOOL UTL_CheckAppRegion( u32 card_region_bitmap ) { +#ifdef SYSMENU_DEBUGGER_BUILD +#pragma unused(card_region_bitmap) + // 2008.07.23 ISデバッガの暫定対応 + return TRUE; +#else return ( card_region_bitmap & ( 0x00000001 << OS_GetRegion() ) ) ? TRUE : FALSE; +#endif } // CRCチェック