summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-09-12 05:04:19 +0200
committerLioncash <mathew1800@gmail.com>2015-09-12 05:11:01 +0200
commit07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b (patch)
tree7a17a8078e8b65765d369b4cfa2c34120aec11d6 /src/core
parentMerge pull request #1151 from lioncash/return (diff)
downloadyuzu-07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b.tar
yuzu-07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b.tar.gz
yuzu-07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b.tar.bz2
yuzu-07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b.tar.lz
yuzu-07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b.tar.xz
yuzu-07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b.tar.zst
yuzu-07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/core_timing.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core_timing.cpp b/src/core/core_timing.cpp
index 20f2da0fe..56615502c 100644
--- a/src/core/core_timing.cpp
+++ b/src/core/core_timing.cpp
@@ -207,7 +207,7 @@ void ScheduleEvent_Threadsafe(s64 cycles_into_future, int event_type, u64 userda
Event* new_event = GetNewTsEvent();
new_event->time = GetTicks() + cycles_into_future;
new_event->type = event_type;
- new_event->next = 0;
+ new_event->next = nullptr;
new_event->userdata = userdata;
if (!ts_first)
ts_first = new_event;