mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
Merge pull request #153 from lioncash/dsptool-string
Fix DSPTool string output for disassembly.
This commit is contained in:
commit
2632db8075
1 changed files with 9 additions and 2 deletions
|
@ -486,8 +486,15 @@ int main(int argc, const char *argv[])
|
|||
source.clear();
|
||||
}
|
||||
|
||||
if(!outputSize)
|
||||
printf("Assembly completed successfully!\n");
|
||||
if (disassemble)
|
||||
{
|
||||
printf("Disassembly completed successfully!\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!outputSize)
|
||||
printf("Assembly completed successfully!\n");
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue