general: Replace 0 literals with nullptr where applicable
This commit is contained in:
parent
3d7a55923b
commit
1ab765ff61
5 changed files with 9 additions and 9 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue