diff options
Diffstat (limited to 'plugins/SplashScreen/src/services.cpp')
-rw-r--r-- | plugins/SplashScreen/src/services.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SplashScreen/src/services.cpp b/plugins/SplashScreen/src/services.cpp index 8b9f6e4caf..efc798ba46 100644 --- a/plugins/SplashScreen/src/services.cpp +++ b/plugins/SplashScreen/src/services.cpp @@ -30,7 +30,7 @@ INT_PTR ShowSplashService(WPARAM wparam, LPARAM lparam) options.showtime = timetoshow;
wchar_t *pos = wcsrchr(filename, ':');
- if (pos == NULL)
+ if (pos == nullptr)
mir_snwprintf(szSplashFile, L"%s\\%s", szMirDir, filename);
else
mir_wstrcpy(szSplashFile, filename);
|