Skip to content
This repository

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

Download ZIP
Browse code

Merge pull request #153 from lioncash/dsptool-string

Fix DSPTool string output for disassembly.
  • Loading branch information...
commit 2632db8075e4e11f92671710dd148cdb21595337 2 parents 84b4f98 + 76b2dde
Pierre Bourdon authored

Showing 1 changed file with 9 additions and 2 deletions. Show Diff Stats Hide Diff Stats

  1. 11  Source/DSPTool/DSPTool.cpp
11  Source/DSPTool/DSPTool.cpp
@@ -486,8 +486,15 @@ int main(int argc, const char *argv[])
486 486
 		source.clear();
487 487
 	}
488 488
 
489  
-	if(!outputSize)
490  
-		printf("Assembly completed successfully!\n");
  489
+	if (disassemble)
  490
+	{
  491
+		printf("Disassembly completed successfully!\n");
  492
+	}
  493
+	else
  494
+	{
  495
+		if (!outputSize)
  496
+			printf("Assembly completed successfully!\n");
  497
+	}
491 498
 
492 499
 	return 0;
493 500
 }

0 notes on commit 2632db8

Please sign in to comment.
Something went wrong with that request. Please try again.