mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-27 08:04:36 -04:00
9b1fe6e91b
* Import audio init params * Add comments describing what these sizes represents * Fix variables.txt * Remove leading zero's from gTatumsPerBeat * Name variables
13 lines
258 B
C
13 lines
258 B
C
#include "global.h"
|
|
|
|
const s16 gAudioTatumInit[] = {
|
|
0x1C00, // unused
|
|
0x30, // gTatumsPerBeat
|
|
};
|
|
|
|
const AudioContextInitSizes gAudioContextInitSizes = {
|
|
0x137F00, // heapSize
|
|
0x1C480, // initPoolSize
|
|
0x1A000, // permanentPoolSize
|
|
};
|