[Scummvm-cvs-logs] SF.net SVN: scummvm:[39596] scummvm/trunk/engines/gob
drmccoy at users.sourceforge.net
drmccoy at users.sourceforge.net
Sat Mar 21 19:17:25 CET 2009
Revision: 39596
http://scummvm.svn.sourceforge.net/scummvm/?rev=39596&view=rev
Author: drmccoy
Date: 2009-03-21 18:17:24 +0000 (Sat, 21 Mar 2009)
Log Message:
-----------
Added an entry for the DOS version of Little Red Riding Hood
Modified Paths:
--------------
scummvm/trunk/engines/gob/detection.cpp
scummvm/trunk/engines/gob/init_v1.cpp
scummvm/trunk/engines/gob/init_v2.cpp
Modified: scummvm/trunk/engines/gob/detection.cpp
===================================================================
--- scummvm/trunk/engines/gob/detection.cpp 2009-03-21 18:00:41 UTC (rev 39595)
+++ scummvm/trunk/engines/gob/detection.cpp 2009-03-21 18:17:24 UTC (rev 39596)
@@ -1007,6 +1007,23 @@
"",
AD_ENTRY1s("intro.stk", "0b72992f5d8b5e6e0330572a5753ea25", 256490),
UNK_LANG,
+ kPlatformPC,
+ ADGF_NO_FLAGS
+ },
+ kGameTypeGob2,
+ kFeaturesAdlib | kFeaturesEGA,
+ "intro"
+ },
+ {
+ {
+ "littlered",
+ "",
+ {
+ {"intro.stk", 0, "0b72992f5d8b5e6e0330572a5753ea25", 256490},
+ {"mod.babayaga", 0, "43484cde74e0860785f8e19f0bc776d1", 60248},
+ {NULL, 0, NULL, 0}
+ },
+ UNK_LANG,
kPlatformAmiga,
ADGF_NO_FLAGS
},
Modified: scummvm/trunk/engines/gob/init_v1.cpp
===================================================================
--- scummvm/trunk/engines/gob/init_v1.cpp 2009-03-21 18:00:41 UTC (rev 39595)
+++ scummvm/trunk/engines/gob/init_v1.cpp 2009-03-21 18:17:24 UTC (rev 39596)
@@ -43,7 +43,7 @@
_vm->_global->_inVM = 0;
- if (_vm->_global->_videoMode == 0x13)
+ if ((_vm->_global->_videoMode == 0x13) && !_vm->isEGA())
_vm->_global->_colorCount = 256;
_vm->_global->_pPaletteDesc = &_vm->_global->_paletteStruct;
Modified: scummvm/trunk/engines/gob/init_v2.cpp
===================================================================
--- scummvm/trunk/engines/gob/init_v2.cpp 2009-03-21 18:00:41 UTC (rev 39595)
+++ scummvm/trunk/engines/gob/init_v2.cpp 2009-03-21 18:17:24 UTC (rev 39596)
@@ -49,7 +49,8 @@
_vm->_global->_inVM = 0;
_vm->_global->_colorCount = 16;
- if (((_vm->getPlatform() == Common::kPlatformPC) ||
+ if (!_vm->isEGA() &&
+ ((_vm->getPlatform() == Common::kPlatformPC) ||
(_vm->getPlatform() == Common::kPlatformMacintosh)) &&
((_vm->_global->_videoMode == 0x13) ||
(_vm->_global->_videoMode == 0x14)))
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