Skip to content

Commit f12e487

Browse files
author
Niko
committed
progress
1 parent 31566ed commit f12e487

File tree

5 files changed

+7
-22
lines changed

5 files changed

+7
-22
lines changed

decompile/General/HOWL/h107_Music_SetIntro.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ void DECOMP_Music_SetIntro(void)
1111

1212
while(DECOMP_Bank_AssignSpuAddrs() == 0) {}
1313

14-
DECOMP_howl_SetSong(28);
14+
howl_SetSong(28);
1515

16-
while(DECOMP_howl_loadSong() == 0) {}
16+
while(howl_LoadSong() == 0) {}
1717
}

decompile/General/HOWL/h109_Music_AsyncParseBanks.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -250,13 +250,13 @@ u_int DECOMP_Music_AsyncParseBanks(void)
250250

251251
else break;
252252

253-
DECOMP_howl_SetSong(index);
253+
howl_SetSong(index);
254254
break;
255255

256256
// Finish Level Song Bank
257257
case 4:
258258

259-
if (DECOMP_howl_loadSong() == 0)
259+
if (howl_LoadSong() == 0)
260260
goto PARSE_FINISH;
261261

262262
// go to next stage

decompile/General/HOWL/h36_howl_LoadSong.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <common.h>
22

33
// similar to h23_Bank_AssignSpuAddrs, and h34_howl_LoadHeader
4-
int DECOMP_howl_loadSong()
4+
int DECOMP_howl_LoadSong()
55
{
66
int ret;
77

ghidra/HOWL.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2013,7 +2013,7 @@ undefined4 FUN_80029c40(uint param_1)
20132013
}
20142014

20152015

2016-
//howl_loadSong
2016+
//howl_LoadSong
20172017
uint FUN_80029ca4(void)
20182018

20192019
{

include/functions.h

+1-16
Original file line numberDiff line numberDiff line change
@@ -268,10 +268,7 @@ void CseqMusic_StopAll();
268268

269269
// howl
270270

271-
//howl_InstrumentPitch()
272-
void howl_InitGlobals(char* howlFilepath);
273-
//howl_ParseHeader()
274-
//howl_ParseCseqHeader()
271+
275272
//howl_LoadHeader()
276273
//howl_SetSong()
277274
//howl_LoadSong()
@@ -329,10 +326,6 @@ void CseqMusic_StopAll();
329326

330327
// not even the last of howl
331328

332-
short howl_VolumeGet(int volumeType);
333-
void howl_VolumeSet(int volumeType, unsigned char volume);
334-
char howl_ModeGet();
335-
void howl_ModeSet(char volumeMode);
336329

337330
// OptionsMenu...
338331

@@ -362,14 +355,6 @@ void CseqMusic_StopAll();
362355

363356
// this is the last of ho- got em
364357

365-
void howl_PlayAudio_Update();
366-
void howl_InitChannelAttr_EngineFX(struct ChannelStats* channel, struct ChannelAttr* attr, int volume, int LR, int distortion);
367-
void howl_InitChannelAttr_OtherFX(char* ptrCseq, struct ChannelAttr* attr, int volume, int param_4, int distortion);
368-
void howl_PauseAudio();
369-
//howl_UnPauseChannel()
370-
void howl_UnPauseAudio();
371-
void howl_StopAudio(int clearBackupStats, int bool_DestroyMusic, int bool_DestroyAllSFX);
372-
373358
// Voiceline
374359

375360
//Voiceline_PoolInit()

0 commit comments

Comments
 (0)