summaryrefslogtreecommitdiffstats
path: root/src/core/core_timing.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-04-28 04:46:19 +0200
committerbunnei <bunneidev@gmail.com>2015-05-02 00:27:05 +0200
commit5a855bdb2f263c143c54c0f37609aaa22e61c281 (patch)
tree2fe59e088641c1fefabfc840bc3dd69da622e0af /src/core/core_timing.cpp
parentHLE: Properly initialize and shutdown remaining modules. (diff)
downloadyuzu-5a855bdb2f263c143c54c0f37609aaa22e61c281.tar
yuzu-5a855bdb2f263c143c54c0f37609aaa22e61c281.tar.gz
yuzu-5a855bdb2f263c143c54c0f37609aaa22e61c281.tar.bz2
yuzu-5a855bdb2f263c143c54c0f37609aaa22e61c281.tar.lz
yuzu-5a855bdb2f263c143c54c0f37609aaa22e61c281.tar.xz
yuzu-5a855bdb2f263c143c54c0f37609aaa22e61c281.tar.zst
yuzu-5a855bdb2f263c143c54c0f37609aaa22e61c281.zip
Diffstat (limited to '')
-rw-r--r--src/core/core_timing.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/core/core_timing.cpp b/src/core/core_timing.cpp
index 6f716b1ca..f70c84c3d 100644
--- a/src/core/core_timing.cpp
+++ b/src/core/core_timing.cpp
@@ -160,6 +160,16 @@ void Init() {
last_global_time_us = 0;
has_ts_events = 0;
mhz_change_callbacks.clear();
+
+ first = nullptr;
+ ts_first = nullptr;
+ ts_last = nullptr;
+
+ event_pool = nullptr;
+ event_ts_pool = nullptr;
+ allocated_ts_events = 0;
+
+ advance_callback = nullptr;
}
void Shutdown() {