[Scummvm-cvs-logs] SF.net SVN: scummvm:[48931] tools/trunk

joostp at users.sourceforge.net joostp at users.sourceforge.net
Tue May 4 13:39:57 CEST 2010


Revision: 48931
          http://scummvm.svn.sourceforge.net/scummvm/?rev=48931&view=rev
Author:   joostp
Date:     2010-05-04 11:39:56 +0000 (Tue, 04 May 2010)

Log Message:
-----------
spelling/consistency fixes for tool descriptions

Modified Paths:
--------------
    tools/trunk/README
    tools/trunk/engines/agos/compress_agos.cpp
    tools/trunk/engines/agos/extract_agos.cpp
    tools/trunk/engines/cruise/extract_cruise_pc.cpp
    tools/trunk/engines/queen/compress_queen.cpp
    tools/trunk/engines/sci/compress_sci.cpp
    tools/trunk/engines/scumm/compress_scumm_bun.cpp
    tools/trunk/engines/scumm/compress_scumm_san.cpp
    tools/trunk/engines/scumm/compress_scumm_sou.cpp
    tools/trunk/engines/sword1/compress_sword1.cpp
    tools/trunk/engines/tinsel/compress_tinsel.cpp
    tools/trunk/engines/tucker/compress_tucker.cpp

Modified: tools/trunk/README
===================================================================
--- tools/trunk/README	2010-05-04 10:50:20 UTC (rev 48930)
+++ tools/trunk/README	2010-05-04 11:39:56 UTC (rev 48931)
@@ -203,7 +203,7 @@
                 - The unsupported early DOS demo of Inherit the Earth
 
         compress_scumm_bun
-                Used to the compress '.bun' music/voice files with MP3, Vorbis
+                Used to compress '.bun' music/voice files with MP3, Vorbis
                 or FLAC.
 
                 Example of usage:

Modified: tools/trunk/engines/agos/compress_agos.cpp
===================================================================
--- tools/trunk/engines/agos/compress_agos.cpp	2010-05-04 10:50:20 UTC (rev 48930)
+++ tools/trunk/engines/agos/compress_agos.cpp	2010-05-04 11:39:56 UTC (rev 48931)
@@ -37,7 +37,7 @@
 	input.format = "*.*";
 	_inputPaths.push_back(input);
 
-	_shorthelp = "Compresses Simon the Sorcer and Feeble Files data files.";
+	_shorthelp = "Compresses Simon the Sorcerer and Feeble Files data files.";
 	_helptext = "\nUsage: " + getName() + " [mode params] [-o outfile] [--mac] <infile>\n";
 }
 

Modified: tools/trunk/engines/agos/extract_agos.cpp
===================================================================
--- tools/trunk/engines/agos/extract_agos.cpp	2010-05-04 10:50:20 UTC (rev 48930)
+++ tools/trunk/engines/agos/extract_agos.cpp	2010-05-04 11:39:56 UTC (rev 48931)
@@ -34,7 +34,7 @@
 	input.format = "*.*";
 	_inputPaths.push_back(input);
 
-	_shorthelp = "Used to extract Simon the Sorcer and Feeble Files data files.";
+	_shorthelp = "Used to extract Simon the Sorcerer and Feeble Files data files.";
 	_helptext = "\nUsage: " + getName() + " [-o outputname] infilename\n" + _shorthelp + "\n";
 }
 

Modified: tools/trunk/engines/cruise/extract_cruise_pc.cpp
===================================================================
--- tools/trunk/engines/cruise/extract_cruise_pc.cpp	2010-05-04 10:50:20 UTC (rev 48930)
+++ tools/trunk/engines/cruise/extract_cruise_pc.cpp	2010-05-04 11:39:56 UTC (rev 48931)
@@ -224,7 +224,7 @@
 	input.format = "*.*";
 	_inputPaths.push_back(input);
 
-	_shorthelp = "Extract data files from the PC version of CRuise for a Corpse.";
+	_shorthelp = "Extract data files from the PC version of Cruise for a Corpse.";
 	_helptext = "Usage: " + _name + " [-o outputdir] <infile>\n" + _shorthelp + "\n";
 }
 

Modified: tools/trunk/engines/queen/compress_queen.cpp
===================================================================
--- tools/trunk/engines/queen/compress_queen.cpp	2010-05-04 10:50:20 UTC (rev 48930)
+++ tools/trunk/engines/queen/compress_queen.cpp	2010-05-04 11:39:56 UTC (rev 48931)
@@ -98,7 +98,7 @@
 	input.format = "queen.1";
 	_inputPaths.push_back(input);
 
-	_shorthelp = "Used to compress Flight of the Amazon Queen data files. Output filename is " + std::string(FINAL_OUT) + " .";
+	_shorthelp = "Used to compress Flight of the Amazon Queen data files.";
 	_helptext = "\nUsage: " + getName() + " [mode] [mode params] [-o outputdir] <inputfile (queen.1)>\n\t" + _shorthelp + "\n";
 }
 

Modified: tools/trunk/engines/sci/compress_sci.cpp
===================================================================
--- tools/trunk/engines/sci/compress_sci.cpp	2010-05-04 10:50:20 UTC (rev 48930)
+++ tools/trunk/engines/sci/compress_sci.cpp	2010-05-04 11:39:56 UTC (rev 48931)
@@ -58,7 +58,7 @@
 
 	_outputToDirectory = false;
 
-	_shorthelp = "Used to compress sierra resource.aud/resource.sfx files. (NOT SCI32 compatible!)";
+	_shorthelp = "Used to compress Sierra resource.aud/resource.sfx files. (NOT SCI32 compatible!)";
 	_helptext = "\nUsage: " + getName() + " [mode-params] [-o outputname] <inputname>\n";
 }
 

Modified: tools/trunk/engines/scumm/compress_scumm_bun.cpp
===================================================================
--- tools/trunk/engines/scumm/compress_scumm_bun.cpp	2010-05-04 10:50:20 UTC (rev 48930)
+++ tools/trunk/engines/scumm/compress_scumm_bun.cpp	2010-05-04 11:39:56 UTC (rev 48931)
@@ -1079,7 +1079,7 @@
 	input.format = "*.bun";
 	_inputPaths.push_back(input);
 
-	_shorthelp = "Used to compress the .bun data files from The Curse of Monkey Island games.";
+	_shorthelp = "Used to compress .bun data files from The Curse of Monkey Island.";
 	_helptext = "\nUsage: " + getName() + " [mode] [mode-params] [-o outputfile = inputfile.bun] <inputfile>\n";
 }
 

Modified: tools/trunk/engines/scumm/compress_scumm_san.cpp
===================================================================
--- tools/trunk/engines/scumm/compress_scumm_san.cpp	2010-05-04 10:50:20 UTC (rev 48930)
+++ tools/trunk/engines/scumm/compress_scumm_san.cpp	2010-05-04 11:39:56 UTC (rev 48931)
@@ -541,7 +541,7 @@
 	input.format = "*.san";
 	_inputPaths.push_back(input);
 
-	_shorthelp = "Used to compress the .san smush files.";
+	_shorthelp = "Used to compress .san files found in the later SCUMM games.";
 	// TODO: Feature set seems more limited than what kCompressionAudioHelp contains
 	_helptext = "\nUsage: " + getName() + " [mode] [mode-params] [-o outpufile = inputfile.san] <inputfile>\n";
 }

Modified: tools/trunk/engines/scumm/compress_scumm_sou.cpp
===================================================================
--- tools/trunk/engines/scumm/compress_scumm_sou.cpp	2010-05-04 10:50:20 UTC (rev 48930)
+++ tools/trunk/engines/scumm/compress_scumm_sou.cpp	2010-05-04 11:39:56 UTC (rev 48931)
@@ -39,7 +39,7 @@
 	input.format = "*.sou";
 	_inputPaths.push_back(input);
 
-	_shorthelp = "Used to compress the .sou data files.";
+	_shorthelp = "Used to compress .sou files of SCUMM games.";
 	_helptext = "\nUsage: " + getName() + " [mode] [mode params] monster.sou\n";
 	_supportsProgressBar = true;
 }

Modified: tools/trunk/engines/sword1/compress_sword1.cpp
===================================================================
--- tools/trunk/engines/sword1/compress_sword1.cpp	2010-05-04 10:50:20 UTC (rev 48930)
+++ tools/trunk/engines/sword1/compress_sword1.cpp	2010-05-04 11:39:56 UTC (rev 48931)
@@ -740,7 +740,7 @@
 	input.format = "*.*";
 	_inputPaths.push_back(input);
 
-	_shorthelp = "Used to compress the Broken Sword 1 data files.";
+	_shorthelp = "Used to compress Broken Sword 1 data files.";
 	_helptext = "\nUsage: " + getName() + " [mode] [mode params] [-o outputdir] [only] <inputdir>\n"
 		"only can be either:\n"
 		" --speech-only  only encode speech clusters\n"

Modified: tools/trunk/engines/tinsel/compress_tinsel.cpp
===================================================================
--- tools/trunk/engines/tinsel/compress_tinsel.cpp	2010-05-04 10:50:20 UTC (rev 48930)
+++ tools/trunk/engines/tinsel/compress_tinsel.cpp	2010-05-04 11:39:56 UTC (rev 48931)
@@ -60,7 +60,7 @@
 	input2.format = "*.idx";
 	_inputPaths.push_back(input2);
 
-	_shorthelp = "Used to compress tinsel .smp files.";
+	_shorthelp = "Used to compress Tinsel .smp files.";
 	_helptext = "\nUsage: " + getName() + " [mode-params] [-o outputname] <infile.smp> <infile.idx>\n";
 }
 

Modified: tools/trunk/engines/tucker/compress_tucker.cpp
===================================================================
--- tools/trunk/engines/tucker/compress_tucker.cpp	2010-05-04 10:50:20 UTC (rev 48930)
+++ tools/trunk/engines/tucker/compress_tucker.cpp	2010-05-04 11:39:56 UTC (rev 48931)
@@ -50,7 +50,7 @@
 	input.format = "/";
 	_inputPaths.push_back(input);
 
-	_shorthelp = "Used to compress the tucker data files.";
+	_shorthelp = "Used to compress the Bud Tucker data files.";
 	_helptext = "\nUsage: " + getName() + " [mode params] [-o outputdir] inputdir\n";
 }
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list