Commit 7e239077 authored by David Reid's avatar David Reid

Remove another unnecessary volatile.

parent b000c3fb
...@@ -48646,7 +48646,7 @@ MA_API void ma_atomic_vec3f_set(ma_atomic_vec3f* v, ma_vec3f value) ...@@ -48646,7 +48646,7 @@ MA_API void ma_atomic_vec3f_set(ma_atomic_vec3f* v, ma_vec3f value)
ma_spinlock_unlock(&v->lock); 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; ma_vec3f r;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment