diff options
| author | Lioncash <nope> | 2014-01-30 15:52:27 -0500 |
|---|---|---|
| committer | Lioncash <nope> | 2014-01-30 15:52:27 -0500 |
| commit | fea307624149b2e331d821e9a129f3bf5cd78f53 (patch) | |
| tree | eec31e77d8a871d8227b15cb76f3d99607aa05b9 /Source/Core | |
| parent | 72cc6431e5654250b49cb7d2c0efce42a8340c8a (diff) | |
Fix an unused variable within function GetScheduledEventsSummary() in CoreTiming.cpp.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/CoreTiming.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/CoreTiming.cpp b/Source/Core/Core/CoreTiming.cpp index 6dac07e567..5461692a22 100644 --- a/Source/Core/Core/CoreTiming.cpp +++ b/Source/Core/Core/CoreTiming.cpp @@ -469,7 +469,7 @@ std::string GetScheduledEventsSummary() if (!name) name = "[unknown]"; - text += StringFromFormat("%s : %i %08x%08x\n", event_types[ptr->type].name, ptr->time, ptr->userdata >> 32, ptr->userdata); + text += StringFromFormat("%s : %i %08x%08x\n", name, ptr->time, ptr->userdata >> 32, ptr->userdata); ptr = ptr->next; } return text; |
