[Scummvm-cvs-logs] SF.net SVN: scummvm: [20488] tools/trunk/extract_mm_nes.c

kirben at users.sourceforge.net kirben at users.sourceforge.net
Fri Feb 10 22:45:01 CET 2006


Revision: 20488
Author:   kirben
Date:     2006-02-10 22:43:48 -0800 (Fri, 10 Feb 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm?rev=20488&view=rev

Log Message:
-----------
Correct output messages

Modified Paths:
--------------
    tools/trunk/extract_mm_nes.c
Modified: tools/trunk/extract_mm_nes.c
===================================================================
--- tools/trunk/extract_mm_nes.c	2006-02-11 06:41:33 UTC (rev 20487)
+++ tools/trunk/extract_mm_nes.c	2006-02-11 06:43:48 UTC (rev 20488)
@@ -1017,7 +1017,7 @@
 	if (argc < 2)
 	{
 		printf("Syntax: %s <infile.PRG>\n",argv[0]);
-		printf("\tSupported versions: USA, Europe, Sweden, France, Spain, Germany, USA Prototype\n");
+		printf("\tSupported versions: Europe, France, Germany, Sweden and USA\n");
 		printf("\tJapanese version is NOT supported!\n");
 		return 1;
 	}
@@ -1026,7 +1026,7 @@
 
 	if ((readByte(input) == 'N') && (readByte(input) == 'E') && (readByte(input) == 'S') && (readByte(input) == 0x1A)) {
 		printf("You have specified an iNES formatted ROM image, which is not supported.\n"
-			"You must input the PRG section only - see ScummVM README section 3.9.");
+			"You must input the PRG section only - see Maniac Mansion NES notes section of README.");
 		return 1;
 	}
 	rewind(input);







More information about the Scummvm-git-logs mailing list