diff --git a/src/core/hle/kernel/ipc_debugger/recorder.cpp b/src/core/hle/kernel/ipc_debugger/recorder.cpp index 1aad9fe3d..546b85034 100644 --- a/src/core/hle/kernel/ipc_debugger/recorder.cpp +++ b/src/core/hle/kernel/ipc_debugger/recorder.cpp @@ -74,7 +74,7 @@ void Recorder::SetRequestInfo(const std::shared_ptr& client_thre const u32 thread_id = client_thread->GetThreadId(); if (!record_map.count(thread_id)) { // This is possible when the recorder is enabled after application started - LOG_ERROR(Kernel, "No request is assoicated with the thread"); + LOG_ERROR(Kernel, "No request is associated with the thread"); return; } @@ -113,7 +113,7 @@ void Recorder::SetReplyInfo(const std::shared_ptr& client_thread const u32 thread_id = client_thread->GetThreadId(); if (!record_map.count(thread_id)) { // This is possible when the recorder is enabled after application started - LOG_ERROR(Kernel, "No request is assoicated with the thread"); + LOG_ERROR(Kernel, "No request is associated with the thread"); return; } @@ -133,7 +133,7 @@ void Recorder::SetHLEUnimplemented(const std::shared_ptr& client const u32 thread_id = client_thread->GetThreadId(); if (!record_map.count(thread_id)) { // This is possible when the recorder is enabled after application started - LOG_ERROR(Kernel, "No request is assoicated with the thread"); + LOG_ERROR(Kernel, "No request is associated with the thread"); return; }