mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 03:34:15 +01:00
Fix order of initial vol command
This commit is contained in:
parent
25e469b664
commit
f613176308
@ -334,8 +334,6 @@ void PrintAgbTrack(std::vector<Event>& events)
|
|||||||
{
|
{
|
||||||
std::fprintf(g_outputFile, "\n@**************** Track %u (Midi-Chn.%u) ****************@\n\n", g_agbTrack, g_midiChan + 1);
|
std::fprintf(g_outputFile, "\n@**************** Track %u (Midi-Chn.%u) ****************@\n\n", g_agbTrack, g_midiChan + 1);
|
||||||
std::fprintf(g_outputFile, "%s_%u:\n", g_asmLabel.c_str(), g_agbTrack);
|
std::fprintf(g_outputFile, "%s_%u:\n", g_asmLabel.c_str(), g_agbTrack);
|
||||||
PrintWait(g_initialWait);
|
|
||||||
PrintByte("KEYSH , %s_key%+d", g_asmLabel.c_str(), 0);
|
|
||||||
|
|
||||||
int wholeNoteCount = 0;
|
int wholeNoteCount = 0;
|
||||||
int loopEndBlockNum = 0;
|
int loopEndBlockNum = 0;
|
||||||
@ -359,6 +357,9 @@ void PrintAgbTrack(std::vector<Event>& events)
|
|||||||
if (!foundVolBeforeNote)
|
if (!foundVolBeforeNote)
|
||||||
PrintByte("\tVOL , 127*%s_mvl/mxv", g_asmLabel.c_str());
|
PrintByte("\tVOL , 127*%s_mvl/mxv", g_asmLabel.c_str());
|
||||||
|
|
||||||
|
PrintWait(g_initialWait);
|
||||||
|
PrintByte("KEYSH , %s_key%+d", g_asmLabel.c_str(), 0);
|
||||||
|
|
||||||
for (unsigned i = 0; events[i].type != EventType::EndOfTrack; i++)
|
for (unsigned i = 0; events[i].type != EventType::EndOfTrack; i++)
|
||||||
{
|
{
|
||||||
const Event& event = events[i];
|
const Event& event = events[i];
|
||||||
|
Loading…
Reference in New Issue
Block a user