[Scummvm-cvs-logs] SF.net SVN: scummvm:[51601] scummvm/trunk/engines/sci/graphics/screen.cpp

m_kiewitz at users.sourceforge.net m_kiewitz at users.sourceforge.net
Mon Aug 2 00:59:58 CEST 2010


Revision: 51601
          http://scummvm.svn.sourceforge.net/scummvm/?rev=51601&view=rev
Author:   m_kiewitz
Date:     2010-08-01 22:59:58 +0000 (Sun, 01 Aug 2010)

Log Message:
-----------
SCI: switching to upscaled hires on pc98 games

instead of checking the language to be japanese for that

Modified Paths:
--------------
    scummvm/trunk/engines/sci/graphics/screen.cpp

Modified: scummvm/trunk/engines/sci/graphics/screen.cpp
===================================================================
--- scummvm/trunk/engines/sci/graphics/screen.cpp	2010-08-01 22:54:34 UTC (rev 51600)
+++ scummvm/trunk/engines/sci/graphics/screen.cpp	2010-08-01 22:59:58 UTC (rev 51601)
@@ -62,7 +62,7 @@
 	}
 
 	// Japanese versions of games use hi-res font on upscaled version of the game.
-	if ((g_sci->getLanguage() == Common::JA_JPN) && (getSciVersion() <= SCI_VERSION_1_1))
+	if ((g_sci->getPlatform() == Common::kPlatformPC98) && (getSciVersion() <= SCI_VERSION_1_1))
 		_upscaledHires = GFX_SCREEN_UPSCALED_640x400;
 
 	_pixels = _width * _height;


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