[Scummvm-git-logs] scummvm master -> 640d5a730a79fcb17871ad1eb8562445ebecbf5b
Die4Ever
noreply at scummvm.org
Tue Jan 11 08:26:31 UTC 2022
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
19e9458394 GROOVIE: TLC specify modified dates in detection entries
640d5a730a GROOVIE: adjust script timer ticks
Commit: 19e945839404be512cfeddf779c7fd0e91b2bb17
https://github.com/scummvm/scummvm/commit/19e945839404be512cfeddf779c7fd0e91b2bb17
Author: Die4Ever (die4ever2005 at gmail.com)
Date: 2022-01-11T02:25:54-06:00
Commit Message:
GROOVIE: TLC specify modified dates in detection entries
Modified date from TLCMAIN.GRV
Changed paths:
engines/groovie/detection.cpp
diff --git a/engines/groovie/detection.cpp b/engines/groovie/detection.cpp
index ec0f0406c17..edd04331f01 100644
--- a/engines/groovie/detection.cpp
+++ b/engines/groovie/detection.cpp
@@ -337,7 +337,7 @@ static const GroovieGameDescription gameDescriptions[] = {
kGroovieUHP
},
- // Tender Loving Care PC English (CD-ROM)
+ // Tender Loving Care PC English (CD-ROM 1998-05-01)
{
{
"tlc", "CD",
@@ -349,10 +349,10 @@ static const GroovieGameDescription gameDescriptions[] = {
kGroovieTLC
},
- // Tender Loving Care PC English (DVD-ROM) (eriktorbjorn's copy)
+ // Tender Loving Care PC English (DVD-ROM 1998-08-26)
{
{
- "tlc", "DVD",
+ "tlc", "DVD 1998-08-26",
AD_ENTRY2s("tlcmain.grv", "151af191015beb6f662919153e6c28d8", 17379,
"tlcnav.gjd", nullptr, -1),
Common::EN_ANY, Common::kPlatformWindows, ADGF_UNSTABLE,
@@ -361,10 +361,10 @@ static const GroovieGameDescription gameDescriptions[] = {
kGroovieTLC
},
- // Tender Loving Care PC English (DVD-ROM) (Liron's copy)
+ // Tender Loving Care PC English (DVD-ROM 1998-06-12)
{
{
- "tlc", "DVD",
+ "tlc", "DVD 1998-06-12",
AD_ENTRY2s("tlcmain.grv", "8a591c47d24dde38615e6ea2e79b51a5", 17375,
"tlcnav.gjd", nullptr, -1),
Common::EN_ANY, Common::kPlatformWindows, ADGF_UNSTABLE,
Commit: 640d5a730a79fcb17871ad1eb8562445ebecbf5b
https://github.com/scummvm/scummvm/commit/640d5a730a79fcb17871ad1eb8562445ebecbf5b
Author: Die4Ever (die4ever2005 at gmail.com)
Date: 2022-01-11T02:26:01-06:00
Commit Message:
GROOVIE: adjust script timer ticks
ScummVM 2.5.1 was 200ms per tick, I feel like 1000ms per tick is too slow but 200ms is too fast. This makes the biggest difference in T7G puzzles like the cake and knights.
Official releases differ and are not consistent. For example, Clandestiny on iOS uses a timer based on the OS suggested audio buffer size. Windows 95 T7G runs the timer incredibly fast, all of the queens dialog will play before you can even click anything.
Changed paths:
engines/groovie/groovie.cpp
diff --git a/engines/groovie/groovie.cpp b/engines/groovie/groovie.cpp
index c222d5e6987..5c4e4aa9776 100644
--- a/engines/groovie/groovie.cpp
+++ b/engines/groovie/groovie.cpp
@@ -321,7 +321,7 @@ Common::Error GroovieEngine::run() {
// Wait a little bit between increments. While mouse is moving, this triggers
// only negligably slower.
- if (tmr >= 1000) {
+ if (tmr >= 500) {
_script->timerTick();
tmr = 0;
}
More information about the Scummvm-git-logs
mailing list