aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/screen.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2009-07-07 19:00:39 +0000
committerJohannes Schickel2009-07-07 19:00:39 +0000
commite35dd4df1c1f84e29210a4ce263d4b85ea4caf53 (patch)
tree242430d0c98e146519fdd9d374b3891558d79f8d /engines/kyra/screen.cpp
parent8c65d4d4a94f5a0330b1c86f6378ffada20dd1be (diff)
downloadscummvm-rg350-e35dd4df1c1f84e29210a4ce263d4b85ea4caf53.tar.gz
scummvm-rg350-e35dd4df1c1f84e29210a4ce263d4b85ea4caf53.tar.bz2
scummvm-rg350-e35dd4df1c1f84e29210a4ce263d4b85ea4caf53.zip
Change "FM-Towns" to "FM-TOWNS" for consistency.
svn-id: r42232
Diffstat (limited to 'engines/kyra/screen.cpp')
-rw-r--r--engines/kyra/screen.cpp6
1 files changed, 3 insertions, 3 deletions
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.