From e245a13bb5c00fd410df2c3da1de6f608e22253b Mon Sep 17 00:00:00 2001 From: mailwl Date: Wed, 4 Sep 2019 09:30:08 +0300 Subject: [PATCH] Fix event name --- src/core/hle/service/am/am.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index 4e9c2ea268..111633ba3e 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp @@ -1068,7 +1068,7 @@ IApplicationFunctions::IApplicationFunctions() : ServiceFramework("IApplicationF auto& kernel = Core::System::GetInstance().Kernel(); gpu_error_detected_event = Kernel::WritableEvent::CreateEventPair( - kernel, Kernel::ResetType::Manual, "ISelfController:GpuErrorDetectedSystemEvent"); + kernel, Kernel::ResetType::Manual, "IApplicationFunctions:GpuErrorDetectedSystemEvent"); } IApplicationFunctions::~IApplicationFunctions() = default;