summaryrefslogtreecommitdiff
path: root/src/core/core_timing.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/core_timing.cpp')
-rw-r--r--src/core/core_timing.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/core_timing.cpp b/src/core/core_timing.cpp
index b7b988cf1..fb88ecaf2 100644
--- a/src/core/core_timing.cpp
+++ b/src/core/core_timing.cpp
@@ -23,11 +23,9 @@ int g_clock_rate_arm11 = 268123480;
23 23
24namespace CoreTiming { 24namespace CoreTiming {
25struct EventType { 25struct EventType {
26 EventType() { 26 EventType() {}
27 }
28 27
29 EventType(TimedCallback cb, const char* n) : callback(cb), name(n) { 28 EventType(TimedCallback cb, const char* n) : callback(cb), name(n) {}
30 }
31 29
32 TimedCallback callback; 30 TimedCallback callback;
33 const char* name; 31 const char* name;