Decomped DseTrackEvent_Dummy1Byte

Decomped by @Snioflake
This commit is contained in:
AnonymousRandomPerson
2025-08-06 19:30:13 -04:00
parent fc2648c4a3
commit ad23efbadc
3 changed files with 7 additions and 7 deletions

View File

@@ -107,9 +107,3 @@ DseTrackEvent_SetBankLsb: ; 0x02071BBC
add r0, r4, #1
ldmia sp!, {r4, pc}
arm_func_end DseTrackEvent_SetBankLsb
arm_func_start DseTrackEvent_Dummy1Byte
DseTrackEvent_Dummy1Byte: ; 0x02071BEC
add r0, r0, #1
bx lr
arm_func_end DseTrackEvent_Dummy1Byte

View File

@@ -3,6 +3,7 @@
#include "dse.h"
u8* DseTrackEvent_SetInstrument(u8 *cur, struct dse_sequence *seq, struct dse_track *trk, struct dse_channel *chn);
u8* DseTrackEvent_Dummy1Byte(u8 *ptr_next_byte, struct dse_sequence *sequence, struct dse_track *track, struct dse_channel *channel);
u8* DseTrackEvent_SetInstrument(u8 *ptr_next_byte, struct dse_sequence *sequence, struct dse_track *track, struct dse_channel *channel);
#endif //PMDSKY_MAIN_02071BF4_H

View File

@@ -1,5 +1,10 @@
#include "main_02071BF4.h"
u8* DseTrackEvent_Dummy1Byte(u8 *ptr_next_byte, struct dse_sequence *sequence, struct dse_track *track, struct dse_channel *channel)
{
return ptr_next_byte + 1;
}
extern u32 DseChannel_SetInstrument(struct dse_channel *channel, u16 instrument_index);
u8* DseTrackEvent_SetInstrument(u8 *ptr_next_byte, struct dse_sequence *sequence, struct dse_track *track, struct dse_channel *channel)