mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 15:19:09 +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();
|
source.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!outputSize)
|
if (disassemble)
|
||||||
printf("Assembly completed successfully!\n");
|
{
|
||||||
|
printf("Disassembly completed successfully!\n");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (!outputSize)
|
||||||
|
printf("Assembly completed successfully!\n");
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue