diff options
| author | 2015-09-12 14:49:07 -0400 | |
|---|---|---|
| committer | 2015-09-12 14:49:07 -0400 | |
| commit | 5fdfd782cc7149e03a93cb33e1a701b7ad1aa74b (patch) | |
| tree | c8e5abda9387898fa9792ce2d53b078f383b60f9 /src/core/core_timing.cpp | |
| parent | Merge pull request #1151 from lioncash/return (diff) | |
| parent | memory_util: Remove unnecessary assignment in FreeMemoryPages (diff) | |
| download | yuzu-5fdfd782cc7149e03a93cb33e1a701b7ad1aa74b.tar.gz yuzu-5fdfd782cc7149e03a93cb33e1a701b7ad1aa74b.tar.xz yuzu-5fdfd782cc7149e03a93cb33e1a701b7ad1aa74b.zip | |
Merge pull request #1152 from lioncash/nullptr
Replace 0 literals with nullptr where applicable
Diffstat (limited to 'src/core/core_timing.cpp')
| -rw-r--r-- | src/core/core_timing.cpp | 2 |
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 | |||
| 207 | Event* new_event = GetNewTsEvent(); | 207 | Event* new_event = GetNewTsEvent(); |
| 208 | new_event->time = GetTicks() + cycles_into_future; | 208 | new_event->time = GetTicks() + cycles_into_future; |
| 209 | new_event->type = event_type; | 209 | new_event->type = event_type; |
| 210 | new_event->next = 0; | 210 | new_event->next = nullptr; |
| 211 | new_event->userdata = userdata; | 211 | new_event->userdata = userdata; |
| 212 | if (!ts_first) | 212 | if (!ts_first) |
| 213 | ts_first = new_event; | 213 | ts_first = new_event; |