mirror of
https://github.com/tiennm99/godot.git
synced 2026-08-14 02:22:46 +00:00
Replace NULL with nullptr
This commit is contained in:
@@ -242,7 +242,7 @@ void PathFollow2D::_notification(int p_what) {
|
||||
} break;
|
||||
case NOTIFICATION_EXIT_TREE: {
|
||||
|
||||
path = NULL;
|
||||
path = nullptr;
|
||||
} break;
|
||||
}
|
||||
}
|
||||
@@ -421,7 +421,7 @@ PathFollow2D::PathFollow2D() {
|
||||
offset = 0;
|
||||
h_offset = 0;
|
||||
v_offset = 0;
|
||||
path = NULL;
|
||||
path = nullptr;
|
||||
rotate = true;
|
||||
cubic = true;
|
||||
loop = true;
|
||||
|
||||
Reference in New Issue
Block a user