mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 16:05:07 +01:00
kernel: fix typo in recorder.cpp (#6686)
This commit is contained in:
parent
b738584832
commit
6da4853360
@ -74,7 +74,7 @@ void Recorder::SetRequestInfo(const std::shared_ptr<Kernel::Thread>& client_thre
|
|||||||
const u32 thread_id = client_thread->GetThreadId();
|
const u32 thread_id = client_thread->GetThreadId();
|
||||||
if (!record_map.count(thread_id)) {
|
if (!record_map.count(thread_id)) {
|
||||||
// This is possible when the recorder is enabled after application started
|
// 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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -113,7 +113,7 @@ void Recorder::SetReplyInfo(const std::shared_ptr<Kernel::Thread>& client_thread
|
|||||||
const u32 thread_id = client_thread->GetThreadId();
|
const u32 thread_id = client_thread->GetThreadId();
|
||||||
if (!record_map.count(thread_id)) {
|
if (!record_map.count(thread_id)) {
|
||||||
// This is possible when the recorder is enabled after application started
|
// 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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -133,7 +133,7 @@ void Recorder::SetHLEUnimplemented(const std::shared_ptr<Kernel::Thread>& client
|
|||||||
const u32 thread_id = client_thread->GetThreadId();
|
const u32 thread_id = client_thread->GetThreadId();
|
||||||
if (!record_map.count(thread_id)) {
|
if (!record_map.count(thread_id)) {
|
||||||
// This is possible when the recorder is enabled after application started
|
// 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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user