[Scummvm-git-logs] scummvm master -> 6e493b3acecde3035a7f3a43cd2ce35dd04fbd46

athrxx noreply at scummvm.org
Wed Dec 25 23:59:14 UTC 2024


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
6e493b3ace SCI: (SCI01) - fix regression from PR 6328


Commit: 6e493b3acecde3035a7f3a43cd2ce35dd04fbd46
    https://github.com/scummvm/scummvm/commit/6e493b3acecde3035a7f3a43cd2ce35dd04fbd46
Author: athrxx (athrxx at scummvm.org)
Date: 2024-12-26T00:58:13+01:00

Commit Message:
SCI: (SCI01) - fix regression from PR 6328

(wrong version ranges, breaking transitions in SCI01 games)

Changed paths:
    engines/sci/graphics/drivers/init.cpp


diff --git a/engines/sci/graphics/drivers/init.cpp b/engines/sci/graphics/drivers/init.cpp
index 431cad229d9..175c4909ae1 100644
--- a/engines/sci/graphics/drivers/init.cpp
+++ b/engines/sci/graphics/drivers/init.cpp
@@ -93,8 +93,8 @@ static const GfxDriverInfo _gfxDriverInfos[] = {
 	{ Common::kRenderDefault, Common::kPlatformWindows, SCI_VERSION_1_1, SCI_VERSION_1_1, GID_KQ6, Common::UNK_LANG, kEnable, INITPROCS1(WindowsGfx256Colors), 1 },
 	{ Common::kRenderDefault, Common::kPlatformDOS, SCI_VERSION_1_1, SCI_VERSION_1_1, GID_KQ6, Common::UNK_LANG, kEnable, INITPROCS1(WindowsGfx256Colors), 1 },
 	{ Common::kRenderDefault, Common::kPlatformUnknown, SCI_VERSION_0_EARLY, SCI_VERSION_1_1, GID_ALL, Common::KO_KOR, kUnused, INITPROCS1(UpscaledGfx), 0 },
-	{ Common::kRenderDefault, Common::kPlatformUnknown, SCI_VERSION_0_EARLY, SCI_VERSION_1_EGA_ONLY, GID_ALL, Common::UNK_LANG, kUnused, INITPROCS1(GfxDefault), 0 },
-	{ Common::kRenderDefault, Common::kPlatformUnknown, SCI_VERSION_1_EARLY, SCI_VERSION_1_1, GID_ALL, Common::UNK_LANG, kUnused, INITPROCS1(GfxDefault), 1 }
+	{ Common::kRenderDefault, Common::kPlatformUnknown, SCI_VERSION_0_EARLY, SCI_VERSION_0_LATE, GID_ALL, Common::UNK_LANG, kUnused, INITPROCS1(GfxDefault), 0 },
+	{ Common::kRenderDefault, Common::kPlatformUnknown, SCI_VERSION_01, SCI_VERSION_1_1, GID_ALL, Common::UNK_LANG, kUnused, INITPROCS1(GfxDefault), 1 }
 };
 
 #undef INITPROCS1




More information about the Scummvm-git-logs mailing list