Completed Routes4 music data channel 1 and fixed minor program bug

hg-commit-id: ce15c0659a12
This commit is contained in:
KuroiIeWa5Da 2012-01-23 05:07:16 -06:00
parent 053990927e
commit 0ea0ae063f
2 changed files with 162 additions and 2 deletions

View file

@ -72,7 +72,7 @@ string Modulation::GenAsm()
if(tmpRet != "") return tmpRet;
stringstream tmpAsmOut;
tmpAsmOut << "mus_mod " << hex << (short)delay << ", " << (short)depth << ", " << (short)rate;
tmpAsmOut << "mus_mod " << (short)delay << ", " << (short)depth << ", " << (short)rate;
return tmpAsmOut.str();
}