[Scummvm-git-logs] scummvm master -> 7b9095d26fd27788e9b6b66dd7e37041573d78da

bluegr noreply at scummvm.org
Fri Apr 24 15:35:41 UTC 2026


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

Summary:
165f2a42d7 SCI: Add detection for the Hebrew fanmade translation of KQ6
7b9095d26f SCI: Update Unsupported pic-operation error message


Commit: 165f2a42d790a53befead25d0e7882ae87d8397f
    https://github.com/scummvm/scummvm/commit/165f2a42d790a53befead25d0e7882ae87d8397f
Author: SegMash (mashras77 at gmail.com)
Date: 2026-04-24T18:35:36+03:00

Commit Message:
SCI: Add detection for the Hebrew fanmade translation of KQ6

Changed paths:
    engines/sci/detection_tables.h


diff --git a/engines/sci/detection_tables.h b/engines/sci/detection_tables.h
index 48dc09c3a88..03ac70a34a7 100644
--- a/engines/sci/detection_tables.h
+++ b/engines/sci/detection_tables.h
@@ -2514,6 +2514,26 @@ static const struct ADGameDescription SciGameDescriptions[] = {
 		AD_LISTEND},
 		Common::KO_KOR, Common::kPlatformWindows, ADGF_CD, GUIO5(GUIO_NOASPECT, GAMEOPTION_WINDOWS_CURSORS, GAMEOPTION_PREFER_DIGITAL_SFX, GAMEOPTION_ORIGINAL_SAVELOAD, GAMEOPTION_MIDI_MODE)	},
 
+	// King's Quest 6 - Fanmade Hebrew translation Windows CD (based on the series GOG version)
+	// Executable scanning reports "1.cfs.158", VERSION file reports "1.000.00G"
+	// SCI interpreter version 1.001.054
+	{"kq6", "", {
+		{"resource.map", 0, "7a550ebfeae2575ca00d47703a6a774c", 9215},
+		{"resource.000", 0, "233394a5f33b475ae5975e7e9a420865", 8376352},
+		{"0.fon", 0, "a2fc0fd2c4ddcf1f1dc5207126cd998b", 3419},
+		AD_LISTEND},
+		Common::HE_ISR, Common::kPlatformDOS, ADGF_CD, GUIO_KQ6_CD},
+
+	// King's Quest 6 - Fanmade Hebrew translation Windows CD (based on the series GOG version)
+	// Executable scanning reports "1.cfs.158", VERSION file reports "1.000.00G"
+	// SCI interpreter version 1.001.054
+	{"kq6", "", {
+		{"resource.map", 0, "7a550ebfeae2575ca00d47703a6a774c", 9215},
+		{"resource.000", 0, "233394a5f33b475ae5975e7e9a420865", 8376352},
+		{"0.fon", 0, "a2fc0fd2c4ddcf1f1dc5207126cd998b", 3419},
+		AD_LISTEND},
+		Common::HE_ISR, Common::kPlatformWindows, ADGF_CD, GUIO_KQ6_CD_WINDOWS},
+
 	// King's Quest 6 - English Macintosh Floppy
 	// VERSION file reports "1.0"
 	{"kq6", "", {


Commit: 7b9095d26fd27788e9b6b66dd7e37041573d78da
    https://github.com/scummvm/scummvm/commit/7b9095d26fd27788e9b6b66dd7e37041573d78da
Author: SegMash (mashras77 at gmail.com)
Date: 2026-04-24T18:35:36+03:00

Commit Message:
SCI: Update Unsupported pic-operation error message

Changed paths:
    engines/sci/graphics/picture.cpp


diff --git a/engines/sci/graphics/picture.cpp b/engines/sci/graphics/picture.cpp
index 631927b882f..fef1cd011ed 100644
--- a/engines/sci/graphics/picture.cpp
+++ b/engines/sci/graphics/picture.cpp
@@ -721,7 +721,7 @@ void GfxPicture::drawVectorData(const SciSpan<const byte> &data) {
 			}
 			return;
 		default:
-			error("Unsupported pic-operation %X", pic_op);
+			error("Unsupported pic-operation %X at position %d", pic_op, curPos - 1);
 		}
 		if ((_EGAdrawingVisualize) && (isEGA)) {
 			_screen->copyToScreen();




More information about the Scummvm-git-logs mailing list