1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Replace remaining uses of NULL with nullptr

Follow-up to #38736 (these uses were likely added after this PR was merged).
This commit is contained in:
Rémi Verschelde
2021-04-29 11:47:24 +02:00
parent c11502711e
commit 5b16020846
32 changed files with 98 additions and 98 deletions

View File

@@ -253,7 +253,7 @@ bool WebXRInterfaceJS::initialize() {
void WebXRInterfaceJS::uninitialize() {
if (initialized) {
XRServer *xr_server = XRServer::get_singleton();
if (xr_server != NULL) {
if (xr_server != nullptr) {
// no longer our primary interface
xr_server->clear_primary_interface_if(this);
}