This commit is contained in:
Alejandro Javier Asenjo Nitti 2024-06-07 19:12:48 -03:00
parent f381dea7ab
commit dc6fdbcf69
2 changed files with 3 additions and 3 deletions

View File

@ -1187,7 +1187,7 @@ extern u16 gHaasEffectDelaySizes[64];
extern EnvelopePoint gDefaultEnvelope[]; extern EnvelopePoint gDefaultEnvelope[];
extern NoteSubEu gZeroNoteSub; extern NoteSubEu gZeroNoteSub;
extern NoteSubEu gDefaultNoteSub; extern NoteSubEu gDefaultNoteSub;
extern s16 D_800DD200[]; extern s16 gD_800DD200[];
extern f32 gHeadsetPanVolume[128]; extern f32 gHeadsetPanVolume[128];
extern f32 gStereoPanVolume[128]; extern f32 gStereoPanVolume[128];
extern f32 gDefaultPanVolume[128]; extern f32 gDefaultPanVolume[128];

View File

@ -916,10 +916,10 @@ Acmd* func_8000A700(s32 noteIndex, NoteSubEu* noteSub, NoteSynthesisState* synth
if ((bookSample->codec == 0) && (currentBook != bookSample->book->book)) { if ((bookSample->codec == 0) && (currentBook != bookSample->book->book)) {
switch (noteSub->bitField1.bookOffset) { switch (noteSub->bitField1.bookOffset) {
case 1: case 1:
currentBook = &D_800DD200[1]; currentBook = &gD_800DD200[1];
break; break;
case 2: case 2:
currentBook = &D_800DD200[2]; currentBook = &gD_800DD200[2];
break; break;
default: default:
case 3: case 3: