Reduce the AsyncEvent struct size

The "user" message length is significantly reduced to fit the struct in 256
bytes, rather than 1KB.
This commit is contained in:
Chris Robinson 2019-08-01 15:54:17 -07:00
parent 0be823320d
commit 4917024c94

View File

@ -39,7 +39,7 @@ struct AsyncEvent {
ALenum type;
ALuint id;
ALuint param;
ALchar msg[1008];
ALchar msg[232];
} user;
EffectState *mEffectState;
} u{};