[Scummvm-git-logs] scummvm master -> bbeaa0ead2acf033f4ac97405905814ac32e9a7d

neuromancer noreply at scummvm.org
Tue Oct 15 07:47: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:
bbeaa0ead2 FREESCAPE: correctly load title screen for dark and eclipse atari


Commit: bbeaa0ead2acf033f4ac97405905814ac32e9a7d
    https://github.com/scummvm/scummvm/commit/bbeaa0ead2acf033f4ac97405905814ac32e9a7d
Author: neuromancer (gustavo.grieco at gmail.com)
Date: 2024-10-15T09:48:39+02:00

Commit Message:
FREESCAPE: correctly load title screen for dark and eclipse atari

Changed paths:
    engines/freescape/games/dark/atari.cpp
    engines/freescape/games/eclipse/atari.cpp


diff --git a/engines/freescape/games/dark/atari.cpp b/engines/freescape/games/dark/atari.cpp
index 50c0eba5c52..5a47940356d 100644
--- a/engines/freescape/games/dark/atari.cpp
+++ b/engines/freescape/games/dark/atari.cpp
@@ -49,6 +49,11 @@ Common::String centerAndPadString(const Common::String &str, int size) {
 }
 
 void DarkEngine::loadAssetsAtariFullGame() {
+	Common::File file;
+	file.open("0.drk");
+	_title = loadAndConvertNeoImage(&file, 0x13ec);
+	file.close();
+
 	Common::SeekableReadStream *stream = decryptFileAmigaAtari("1.drk", "0.drk", 840);
 	parseAmigaAtariHeader(stream);
 
diff --git a/engines/freescape/games/eclipse/atari.cpp b/engines/freescape/games/eclipse/atari.cpp
index d419f86778d..d33c8985076 100644
--- a/engines/freescape/games/eclipse/atari.cpp
+++ b/engines/freescape/games/eclipse/atari.cpp
@@ -159,6 +159,11 @@ void EclipseEngine::drawCPCUI(Graphics::Surface *surface) {
 }*/
 
 void EclipseEngine::loadAssetsAtariFullGame() {
+	Common::File file;
+	file.open("0.tec");
+	_title = loadAndConvertNeoImage(&file, 0x17ac);
+	file.close();
+
     Common::SeekableReadStream *stream = decryptFileAmigaAtari("1.tec", "0.tec", 0x1774 - 4 * 1024);
 	parseAmigaAtariHeader(stream);
 




More information about the Scummvm-git-logs mailing list