summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2014-09-12 21:18:46 -0400
committerGravatar Lioncash2014-09-12 21:18:46 -0400
commit093d6fbcdca8412ddc49250140e3dfa838811209 (patch)
treedb671af7f6d40afb5b11a5e9150393037fd5e176 /src
parentMerge pull request #105 from kevinhartman/hid (diff)
downloadyuzu-093d6fbcdca8412ddc49250140e3dfa838811209.tar.gz
yuzu-093d6fbcdca8412ddc49250140e3dfa838811209.tar.xz
yuzu-093d6fbcdca8412ddc49250140e3dfa838811209.zip
Core: Replace a sprintf in core_timing with StringFromFormat
Diffstat (limited to 'src')
-rw-r--r--src/core/core_timing.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/core/core_timing.cpp b/src/core/core_timing.cpp
index 25fccce76..0116cb376 100644
--- a/src/core/core_timing.cpp
+++ b/src/core/core_timing.cpp
@@ -7,11 +7,12 @@
7#include <atomic> 7#include <atomic>
8#include <mutex> 8#include <mutex>
9 9
10#include "common/msg_handler.h"
11#include "common/chunk_file.h" 10#include "common/chunk_file.h"
11#include "common/msg_handler.h"
12#include "common/string_util.h"
12 13
13#include "core/core_timing.h"
14#include "core/core.h" 14#include "core/core.h"
15#include "core/core_timing.h"
15 16
16int g_clock_rate_arm11 = 268123480; 17int g_clock_rate_arm11 = 268123480;
17 18
@@ -586,9 +587,10 @@ std::string GetScheduledEventsSummary()
586 const char *name = event_types[ptr->type].name; 587 const char *name = event_types[ptr->type].name;
587 if (!name) 588 if (!name)
588 name = "[unknown]"; 589 name = "[unknown]";
589 char temp[512]; 590
590 sprintf(temp, "%s : %i %08x%08x\n", name, (int)ptr->time, (u32)(ptr->userdata >> 32), (u32)(ptr->userdata)); 591 text += Common::StringFromFormat("%s : %i %08x%08x\n", name, (int)ptr->time,
591 text += temp; 592 (u32)(ptr->userdata >> 32), (u32)(ptr->userdata));
593
592 ptr = ptr->next; 594 ptr = ptr->next;
593 } 595 }
594 return text; 596 return text;