mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
Core: Change NULLs to nullptrs.
This commit is contained in:
@ -29,7 +29,7 @@
|
||||
#if !defined(_WIN32) && !defined(ANDROID)
|
||||
static locale_t GetCLocale()
|
||||
{
|
||||
static locale_t c_locale = newlocale(LC_ALL_MASK, "C", NULL);
|
||||
static locale_t c_locale = newlocale(LC_ALL_MASK, "C", nullptr);
|
||||
return c_locale;
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user