Skip to content

Commit 2e3a91e

Browse files
committed
ios: correctly mask the PI irq on ios launch
1 parent 3ff7350 commit 2e3a91e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

libogc/ios.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ s32 __IOS_LaunchNewIOS(int version)
281281
__ES_Reset();
282282

283283
// Mask IPC IRQ while we're busy reloading
284-
__MaskIrq(IRQ_PI_ACR);
284+
__MaskIrq(IM_PI_ACR);
285285
irq_handler = IRQ_Free(IRQ_PI_ACR);
286286

287287
#ifdef DEBUG_IOS
@@ -316,7 +316,7 @@ s32 __IOS_LaunchNewIOS(int version)
316316
#endif
317317

318318
IRQ_Request(IRQ_PI_ACR, irq_handler, NULL);
319-
__UnmaskIrq(IRQ_PI_ACR);
319+
__UnmaskIrq(IM_PI_ACR);
320320

321321
__IPC_Reinitialize();
322322

0 commit comments

Comments
 (0)