diff options
| author | Johannes Schickel | 2009-07-07 19:00:39 +0000 | 
|---|---|---|
| committer | Johannes Schickel | 2009-07-07 19:00:39 +0000 | 
| commit | e35dd4df1c1f84e29210a4ce263d4b85ea4caf53 (patch) | |
| tree | 242430d0c98e146519fdd9d374b3891558d79f8d | |
| parent | 8c65d4d4a94f5a0330b1c86f6378ffada20dd1be (diff) | |
| download | scummvm-rg350-e35dd4df1c1f84e29210a4ce263d4b85ea4caf53.tar.gz scummvm-rg350-e35dd4df1c1f84e29210a4ce263d4b85ea4caf53.tar.bz2 scummvm-rg350-e35dd4df1c1f84e29210a4ce263d4b85ea4caf53.zip  | |
Change "FM-Towns" to "FM-TOWNS" for consistency.
svn-id: r42232
| -rw-r--r-- | engines/kyra/detection.cpp | 4 | ||||
| -rw-r--r-- | engines/kyra/saveload.cpp | 2 | ||||
| -rw-r--r-- | engines/kyra/screen.cpp | 6 | ||||
| -rw-r--r-- | graphics/sjis.h | 2 | 
4 files changed, 7 insertions, 7 deletions
diff --git a/engines/kyra/detection.cpp b/engines/kyra/detection.cpp index 63d15419d2..3199a043e7 100644 --- a/engines/kyra/detection.cpp +++ b/engines/kyra/detection.cpp @@ -230,7 +230,7 @@ const KYRAGameDescription adGameDescs[] = {  		KYRA1_FLOPPY_FLAGS  	}, -	{ // FM-Towns version +	{ // FM-TOWNS version  		{  			"kyra1",  			0, @@ -638,7 +638,7 @@ const KYRAGameDescription adGameDescs[] = {  		KYRA2_DEMO_FLAGS  	}, -	{ // FM-Towns +	{ // FM-TOWNS  		{  			"kyra2",  			0, diff --git a/engines/kyra/saveload.cpp b/engines/kyra/saveload.cpp index ecd6bbe450..a1aaf77d51 100644 --- a/engines/kyra/saveload.cpp +++ b/engines/kyra/saveload.cpp @@ -168,7 +168,7 @@ Common::SeekableReadStream *KyraEngine_v1::openSaveForReading(const char *filena  				delete in;  				return 0;  			} else if ((header.flags & GF_FMTOWNS) && !(_flags.platform == Common::kPlatformFMTowns || _flags.platform == Common::kPlatformPC98)) { -				warning("Can not load FM-Towns/PC98 savefile for this (non FM-Towns/PC98) gameversion"); +				warning("Can not load FM-TOWNS/PC98 savefile for this (non FM-TOWNS/PC98) gameversion");  				delete in;  				return 0;  			} diff --git a/engines/kyra/screen.cpp b/engines/kyra/screen.cpp index f0e2aec987..426907c871 100644 --- a/engines/kyra/screen.cpp +++ b/engines/kyra/screen.cpp @@ -97,10 +97,10 @@ bool Screen::init() {  		if (_useSJIS) {  			if (!_sjisFont) { -				// we use the FM-Towns font rom for PC-98, too, until we feel +				// we use the FM-TOWNS font rom for PC-98, too, until we feel  				// like adding support for the PC-98 font  				//if (_vm->gameFlags().platform == Common::kPlatformFMTowns) { -					// FM-Towns +					// FM-TOWNS  					Common::SeekableReadStream *rom = _vm->resource()->createReadStream("FMT_FNT.ROM");  					Graphics::FontTowns *townsFont = new Graphics::FontTowns();  					if (!rom || !townsFont || !townsFont->loadFromStream(*rom)) @@ -658,7 +658,7 @@ void Screen::copyToPage0(int y, int h, uint8 page, uint8 *seqBuf) {  	}  	addDirtyRect(0, y, SCREEN_W, h);  	// This would remove the text in the end sequence of -	// the (Kyrandia 1) FM-Towns version. +	// the (Kyrandia 1) FM-TOWNS version.  	// Since this method is just used for the Seqplayer  	// this shouldn't be a problem anywhere else, so it's  	// safe to disable the call here. diff --git a/graphics/sjis.h b/graphics/sjis.h index 9a20670bf3..c7eeeed9f6 100644 --- a/graphics/sjis.h +++ b/graphics/sjis.h @@ -80,7 +80,7 @@ public:  };  /** - * FM-Towns ROM based SJIS compatible font. + * FM-TOWNS ROM based SJIS compatible font.   *   * This is used in KYRA and SCI.   */  | 
