Added an entry for the DOS version of Little Red Riding Hood

svn-id: r39596
This commit is contained in:
Sven Hesse 2009-03-21 18:17:24 +00:00
parent e7a94e9dfe
commit 11df88f9ee
3 changed files with 20 additions and 2 deletions

View File

@ -1007,6 +1007,23 @@ static const GOBGameDescription gameDescriptions[] = {
"",
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
},

View File

@ -43,7 +43,7 @@ void Init_v1::initVideo() {
_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;

View File

@ -49,7 +49,8 @@ void Init_v2::initVideo() {
_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)))