mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 23:31:57 +00:00
Added an entry for the DOS version of Little Red Riding Hood
svn-id: r39596
This commit is contained in:
parent
e7a94e9dfe
commit
11df88f9ee
@ -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
|
||||
},
|
||||
|
@ -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;
|
||||
|
@ -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)))
|
||||
|
Loading…
x
Reference in New Issue
Block a user