Fix DSPTool string output for disassembly.
Would previously print that assembly had succeeded.
This commit is contained in:
parent
d71aef8843
commit
76b2dde3d7
|
@ -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