[Scummvm-git-logs] scummvm master -> 935392cb5f2cfce355162ced479f41c4bc0ca270
moralrecordings
noreply at scummvm.org
Fri Oct 3 08:50:03 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
935392cb5f DIRECTOR: add carriage return line feed to the TKKG game quirks
Commit: 935392cb5f2cfce355162ced479f41c4bc0ca270
https://github.com/scummvm/scummvm/commit/935392cb5f2cfce355162ced479f41c4bc0ca270
Author: Lariaa (30549703+Lariaa at users.noreply.github.com)
Date: 2025-10-03T16:49:59+08:00
Commit Message:
DIRECTOR: add carriage return line feed to the TKKG game quirks
Changed paths:
engines/director/game-quirks.cpp
diff --git a/engines/director/game-quirks.cpp b/engines/director/game-quirks.cpp
index 121955cb820..30d548dd631 100644
--- a/engines/director/game-quirks.cpp
+++ b/engines/director/game-quirks.cpp
@@ -106,22 +106,22 @@ struct CachedFile {
{"tkkg1", Common::kPlatformWindows,
// TKKG1 checks a file to determine the location of the CD.
"PATH.INI",
- (const byte *)"[cd-path]\r\npath=d:\\", -1
+ (const byte *)"[cd-path]\r\npath=d:\\\r\n", -1
},
{"tkkg2", Common::kPlatformWindows,
// TKKG2 checks a file to determine the location of the CD.
"PATH.INI",
- (const byte *)"[cd-path]\r\npath=d:\\", -1
+ (const byte *)"[cd-path]\r\npath=d:\\\r\n", -1
},
{"tkkg3", Common::kPlatformWindows,
// TKKG3 checks a file to determine the location of the CD.
"PATH.INI",
- (const byte *)"[cd-path]\r\npath=d:\\", -1
+ (const byte *)"[cd-path]\r\npath=d:\\\r\n", -1
},
{"tkkg4", Common::kPlatformWindows,
// TKKG4 checks a file to determine the location of the CD.
"PATH.INI",
- (const byte *)"[cd-path]\r\npath=d:\\", -1
+ (const byte *)"[cd-path]\r\npath=d:\\\r\n", -1
},
// Professor Finkle's Times Table Factory has an installer that copies a bunch of empty files,
More information about the Scummvm-git-logs
mailing list