Remove another unnecessary volatile.

This commit is contained in:
David Reid
2022-12-11 21:12:31 +10:00
parent b000c3fbec
commit 7e2390777c
+1 -1
View File
@@ -48646,7 +48646,7 @@ MA_API void ma_atomic_vec3f_set(ma_atomic_vec3f* v, ma_vec3f value)
ma_spinlock_unlock(&v->lock);
}
MA_API ma_vec3f ma_atomic_vec3f_get(volatile ma_atomic_vec3f* v)
MA_API ma_vec3f ma_atomic_vec3f_get(ma_atomic_vec3f* v)
{
ma_vec3f r;