mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 20:07:57 -05:00
Change NULLs to nullptrs.
This commit is contained in:
@ -77,7 +77,7 @@
|
||||
inline struct tm* localtime_r(const time_t *clock, struct tm *result) {
|
||||
if (localtime_s(result, clock) == 0)
|
||||
return result;
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
#else
|
||||
|
Reference in New Issue
Block a user