summaryrefslogtreecommitdiffstats
path: root/platform/windows/godot_windows.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-04-02 14:41:58 +0200
committerRémi Verschelde <rverschelde@gmail.com>2020-04-02 14:56:01 +0200
commitea7b497065a615b6fd4e165b331f50613a63a329 (patch)
treebe20ea6b308f2a989a76042ae4b7448711891f84 /platform/windows/godot_windows.cpp
parent058a0afdeca83145d58a95c426dd01216c397ea9 (diff)
downloadredot-engine-ea7b497065a615b6fd4e165b331f50613a63a329.tar.gz
Replace more occurrences of NULL with nullptr
Diffstat (limited to 'platform/windows/godot_windows.cpp')
-rw-r--r--platform/windows/godot_windows.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/windows/godot_windows.cpp b/platform/windows/godot_windows.cpp
index 28884f70d2..2aa928c2a7 100644
--- a/platform/windows/godot_windows.cpp
+++ b/platform/windows/godot_windows.cpp
@@ -176,7 +176,7 @@ int _main() {
wc_argv = CommandLineToArgvW(GetCommandLineW(), &argc);
- if (NULL == wc_argv) {
+ if (nullptr == wc_argv) {
wprintf(L"CommandLineToArgvW failed\n");
return 0;
}