X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fgame_object.cpp;h=ee63ec1c1547acc9820a54b1278111ee8da11eae;hb=99199c39ed744bf40e3fa60e26ba64c29c014ddc;hp=1f75d62bc9808a9b6ed8c6c1e2e7c3852d0a9eb0;hpb=07ddaed2a657e4d2a3d038fed223fc5827159caf;p=supertux.git diff --git a/src/game_object.cpp b/src/game_object.cpp index 1f75d62bc..ee63ec1c1 100644 --- a/src/game_object.cpp +++ b/src/game_object.cpp @@ -23,7 +23,7 @@ #include "object_remove_listener.hpp" GameObject::GameObject() - : wants_to_die(false), remove_listeners(0), flags(0) + : wants_to_die(false), remove_listeners(NULL) { } @@ -31,10 +31,11 @@ GameObject::~GameObject() { // call remove listeners (and remove them from the list) RemoveListenerListEntry* entry = remove_listeners; - while(entry != 0) { + while(entry != NULL) { RemoveListenerListEntry* next = entry->next; entry->listener->object_removed(this); delete entry; entry = next; } } +