mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-13 15:59:23 +01:00
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();
|
source.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!outputSize)
|
if (disassemble)
|
||||||
|
{
|
||||||
|
printf("Disassembly completed successfully!\n");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (!outputSize)
|
||||||
printf("Assembly completed successfully!\n");
|
printf("Assembly completed successfully!\n");
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user