Merge pull request #9061 from jdgleaver/rsound-c89-fix

(rsound) C89 build fix
This commit is contained in:
Twinaphex 2019-07-05 13:24:26 +02:00 committed by GitHub
commit 46c80632f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -106,7 +106,7 @@ enum rsd_format
RSD_S32_NE = 0x1000,
RSD_U32_LE = 0x2000,
RSD_U32_BE = 0x4000,
RSD_U32_NE = 0x8000,
RSD_U32_NE = 0x8000
};
/* Defines operations that can be used with rsd_set_param() */