AGI: Winnie Apple ][ was mislabeled as Apple //gs

This commit is contained in:
Eugene Sandulenko 2020-08-26 22:00:34 +02:00
parent d07c009d7e
commit 1b17c8f371
2 changed files with 6 additions and 6 deletions

View File

@ -670,8 +670,8 @@ static const AGIGameDescription gameDescriptions[] = {
// Winnie the Pooh in the Hundred Acre Wood (C64) // Winnie the Pooh in the Hundred Acre Wood (C64)
GAMEpre_P("winnie", "", "title.pic", "d4eb97cffc866110f71e1ec9f84fe643", 0x0000, GID_WINNIE, Common::kPlatformC64), GAMEpre_P("winnie", "", "title.pic", "d4eb97cffc866110f71e1ec9f84fe643", 0x0000, GID_WINNIE, Common::kPlatformC64),
// Winnie the Pooh in the Hundred Acre Wood (Apple //gs) // Winnie the Pooh in the Hundred Acre Wood (Apple ][)
GAMEpre_P("winnie", "", "title.pic", "45e06010a3c61d78f4661103c901ae11", 0x0000, GID_WINNIE, Common::kPlatformApple2GS), GAMEpre_P("winnie", "", "title.pic", "45e06010a3c61d78f4661103c901ae11", 0x0000, GID_WINNIE, Common::kPlatformApple2),
// Xmas Card 1986 (PC) [AGI 2.272] // Xmas Card 1986 (PC) [AGI 2.272]
GAME("xmascard", "1986-11-13 [version 1]", "3067b8d5957e2861e069c3c0011bd43d", 0x2272, GID_XMASCARD), GAME("xmascard", "1986-11-13 [version 1]", "3067b8d5957e2861e069c3c0011bd43d", 0x2272, GID_XMASCARD),

View File

@ -96,7 +96,7 @@ uint32 WinnieEngine::readRoom(int iRoom, uint8 *buffer, WTP_ROOM_HDR &roomHdr) {
fileName = Common::String::format(IDS_WTP_ROOM_AMIGA, iRoom); fileName = Common::String::format(IDS_WTP_ROOM_AMIGA, iRoom);
else if (getPlatform() == Common::kPlatformC64) else if (getPlatform() == Common::kPlatformC64)
fileName = Common::String::format(IDS_WTP_ROOM_C64, iRoom); fileName = Common::String::format(IDS_WTP_ROOM_C64, iRoom);
else if (getPlatform() == Common::kPlatformApple2GS) else if (getPlatform() == Common::kPlatformApple2)
fileName = Common::String::format(IDS_WTP_ROOM_APPLE, iRoom); fileName = Common::String::format(IDS_WTP_ROOM_APPLE, iRoom);
Common::File file; Common::File file;
@ -129,7 +129,7 @@ uint32 WinnieEngine::readObj(int iObj, uint8 *buffer) {
fileName = Common::String::format(IDS_WTP_OBJ_AMIGA, iObj); fileName = Common::String::format(IDS_WTP_OBJ_AMIGA, iObj);
else if (getPlatform() == Common::kPlatformC64) else if (getPlatform() == Common::kPlatformC64)
fileName = Common::String::format(IDS_WTP_OBJ_C64, iObj); fileName = Common::String::format(IDS_WTP_OBJ_C64, iObj);
else if (getPlatform() == Common::kPlatformApple2GS) else if (getPlatform() == Common::kPlatformApple2)
fileName = Common::String::format(IDS_WTP_OBJ_APPLE, iObj); fileName = Common::String::format(IDS_WTP_OBJ_APPLE, iObj);
Common::File file; Common::File file;
@ -1366,7 +1366,7 @@ void WinnieEngine::init() {
_objOffset = 0; _objOffset = 0;
} }
if (getPlatform() == Common::kPlatformC64 || getPlatform() == Common::kPlatformApple2GS) if (getPlatform() == Common::kPlatformC64 || getPlatform() == Common::kPlatformApple2)
_picture->setPictureVersion(AGIPIC_C64); _picture->setPictureVersion(AGIPIC_C64);
hotspotNorth = Common::Rect(20, 0, (IDI_WTP_PIC_WIDTH + 10) * 2, 10); hotspotNorth = Common::Rect(20, 0, (IDI_WTP_PIC_WIDTH + 10) * 2, 10);
@ -1380,7 +1380,7 @@ Common::Error WinnieEngine::go() {
randomize(); randomize();
// The intro is not supported on these platforms yet // The intro is not supported on these platforms yet
if (getPlatform() != Common::kPlatformC64 && getPlatform() != Common::kPlatformApple2GS) if (getPlatform() != Common::kPlatformC64 && getPlatform() != Common::kPlatformApple2)
intro(); intro();
gameLoop(); gameLoop();