From 93d6b5ab284cd46e60f32047c4a0b281aa5822a0 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sat, 16 Dec 2023 18:18:17 -0800 Subject: sdl_fb,modules/sparkler: make bit fields unsigned This oversight was triggering warnings on an M1 Macbook/clang. --- src/modules/sparkler/particle.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/sparkler') diff --git a/src/modules/sparkler/particle.h b/src/modules/sparkler/particle.h index 491dc65..708ab95 100644 --- a/src/modules/sparkler/particle.h +++ b/src/modules/sparkler/particle.h @@ -14,8 +14,8 @@ typedef struct particle_props_t { float velocity; /* linear velocity */ float mass; /* mass of particle */ float drag; /* drag of particle */ - int of_use:1; /* are these properties of use/meaningful? */ - int virtual:1; /* is this a virtual particle? (not to be moved or otherwise acted upon) */ + unsigned of_use:1; /* are these properties of use/meaningful? */ + unsigned virtual:1; /* is this a virtual particle? (not to be moved or otherwise acted upon) */ } particle_props_t; typedef enum particle_status_t { -- cgit v1.2.3