mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-02 19:12:47 +02:00
Merge pull request #153 from lioncash/dsptool-string
Fix DSPTool string output for disassembly.
This commit is contained in:
commit
2632db8075
@ -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…
Reference in New Issue
Block a user