mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-09 00:00:44 +00:00
[iQue] Build some C files with EGCS (#2396)
This commit is contained in:
parent
ffc9f2d4f1
commit
9dafc2f2e4
19 changed files with 121 additions and 37 deletions
|
@ -201,11 +201,9 @@ typedef struct AdpcmBookHeader {
|
|||
* The procedure used to design the codeBook is based on an adaptive clustering algorithm.
|
||||
* The size of the codeBook is (8 * order * numPredictors) and is 8-byte aligned
|
||||
*/
|
||||
typedef s16 AdpcmBookData[];
|
||||
|
||||
typedef struct AdpcmBook {
|
||||
/* 0x00 */ AdpcmBookHeader header;
|
||||
/* 0x08 */ AdpcmBookData book; // size 8 * order * numPredictors. 8-byte aligned
|
||||
/* 0x08 */ s16 book[1]; // size 8 * order * numPredictors. 8-byte aligned
|
||||
} AdpcmBook; // size >= 0x8
|
||||
|
||||
typedef struct Sample {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue