diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-04-06 11:02:47 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-04-06 11:02:47 +0200 |
| commit | ff50b0c39178c9065b4815c68cd7c5cab3fdf336 (patch) | |
| tree | 3ee2375b55f6438d16b3edc6242fdae69f4ea8b3 | |
| parent | 23e7d5c370f672773f04f70da2feb80a3b99b764 (diff) | |
| download | box64-ff50b0c39178c9065b4815c68cd7c5cab3fdf336.tar.gz box64-ff50b0c39178c9065b4815c68cd7c5cab3fdf336.zip | |
Fixed SDL AudioSpec structure definition
| -rwxr-xr-x | src/wrapped/wrappedsdl2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wrapped/wrappedsdl2.c b/src/wrapped/wrappedsdl2.c index 19fb7378..e0f5f78c 100755 --- a/src/wrapped/wrappedsdl2.c +++ b/src/wrapped/wrappedsdl2.c @@ -40,6 +40,7 @@ typedef struct { uint8_t channels; uint8_t silence; uint16_t samples; + uint16_t padding; uint32_t size; void (*callback)(void *userdata, uint8_t *stream, int32_t len); void *userdata; |