(更新:Kawase Tomohiro) UTL_SetFatalError()を割り込み禁止にする。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2333 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
(no author) 2008-08-30 00:39:56 +00:00
parent 48281ae97c
commit e28c4a8207

View File

@ -287,7 +287,9 @@ BOOL UTL_CheckNintendoLogoData( ROM_Header_Short *rh )
// FATALエラーをセット
void UTL_SetFatalError( FatalErrorCode error )
{
OSIntrMode enable = OS_DisableInterrupts();
s_fatalError |= (u64)1 << error;
OS_RestoreInterrupts( enable );
}