Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #153 from lioncash/dsptool-string
Fix DSPTool string output for disassembly.
  • Loading branch information
delroth committed Mar 9, 2014
2 parents 84b4f98 + 76b2dde commit 2632db8
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions Source/DSPTool/DSPTool.cpp
Expand Up @@ -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;
}

0 comments on commit 2632db8

Please sign in to comment.