diff --git a/Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_stm.cpp b/Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_stm.cpp index edc63221f2..07d2747ba0 100644 --- a/Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_stm.cpp +++ b/Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_stm.cpp @@ -106,6 +106,12 @@ IPCCommandResult CWII_IPC_HLE_Device_stm_eventhook::IOCtl(u32 command_address) return GetDefaultReply(); } + if (s_event_hook_address != 0) + { + Memory::Write_U32(FS_EEXIST, command_address + 4); + return GetDefaultReply(); + } + // IOCTL_STM_EVENTHOOK waits until the reset button or power button // is pressed. s_event_hook_address = command_address;