object_is_valid now takes a constant pointer

pull/12/head
Sara 2023-07-12 02:46:26 +02:00
parent 59de57fe3a
commit 78c0e3a9c0
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ object_t object_default();
void object_draw_sprite(object_t* object);
static inline
int object_is_valid(object_t* object) {
int object_is_valid(const object_t* object) {
return object == NULL || object->active == 0;
}