summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2019-02-12 21:47:13 -0500
committerGravatar Lioncash2019-02-12 21:47:18 -0500
commit83ba3515ec73aa213b12411c6cae6b8e6ea77780 (patch)
treec337e5d01d43c91a6207692eff145b37c5fff30f /src
parentMerge pull request #2114 from lioncash/global (diff)
downloadyuzu-83ba3515ec73aa213b12411c6cae6b8e6ea77780.tar.gz
yuzu-83ba3515ec73aa213b12411c6cae6b8e6ea77780.tar.xz
yuzu-83ba3515ec73aa213b12411c6cae6b8e6ea77780.zip
core_timing: Make EmptyTimedCallback a local variable
Given this is only used in one place, it can be moved closest to its usage site.
Diffstat (limited to 'src')
-rw-r--r--src/core/core_timing.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/core_timing.cpp b/src/core/core_timing.cpp
index 2b7ca9766..2c44651f2 100644
--- a/src/core/core_timing.cpp
+++ b/src/core/core_timing.cpp
@@ -70,8 +70,6 @@ static bool is_global_timer_sane;
70 70
71static EventType* ev_lost = nullptr; 71static EventType* ev_lost = nullptr;
72 72
73static void EmptyTimedCallback(u64 userdata, s64 cyclesLate) {}
74
75EventType* RegisterEvent(const std::string& name, TimedCallback callback) { 73EventType* RegisterEvent(const std::string& name, TimedCallback callback) {
76 // check for existing type with same name. 74 // check for existing type with same name.
77 // we want event type names to remain unique so that we can use them for serialization. 75 // we want event type names to remain unique so that we can use them for serialization.
@@ -104,7 +102,9 @@ void Init() {
104 is_global_timer_sane = true; 102 is_global_timer_sane = true;
105 103
106 event_fifo_id = 0; 104 event_fifo_id = 0;
107 ev_lost = RegisterEvent("_lost_event", &EmptyTimedCallback); 105
106 const auto empty_timed_callback = [](u64, s64) {};
107 ev_lost = RegisterEvent("_lost_event", empty_timed_callback);
108} 108}
109 109
110void Shutdown() { 110void Shutdown() {