mirror of
https://github.com/thornAvery/kep-hack.git
synced 2026-02-06 15:45:24 +13:00
Finsihed MeetRival Channel 1 Music Data and made some improvements to Music Disassembler
hg-commit-id: 1dcd37dff2f3
This commit is contained in:
parent
bf19682979
commit
000b0f74b3
2 changed files with 174 additions and 2 deletions
|
|
@ -64,7 +64,9 @@ string Parser::GetParsedAsm()
|
|||
|
||||
for(unsigned int i = 0; i < parsedString.size(); i++)
|
||||
{
|
||||
tmpStr += parsedString[i] + "\n";
|
||||
// Ensure each line isn't already a new-line, this prevents double or tripple empty lines from piling up
|
||||
if(parsedString[i] != "\n") tmpStr += parsedString[i] + "\n";
|
||||
else tmpStr += parsedString[i];
|
||||
}
|
||||
|
||||
return tmpStr;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue