Make ma_lcg.state uint32 to avoid UB on signed arthimethic overflow

This commit is contained in:
David Reid
2025-08-19 08:32:06 +10:00
parent 6e1cd41622
commit 6315130ec6
+1 -1
View File
@@ -4378,7 +4378,7 @@ typedef struct
typedef struct
{
ma_int32 state;
ma_uint32 state;
} ma_lcg;