[Scummvm-git-logs] scummvm master -> 534a30ea97499dec6a750eb06ec5989a9f16f787
athrxx
athrxx at scummvm.org
Sun Aug 1 11:42:05 UTC 2021
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:
534a30ea97 SCUMM: (FM-TOWNS) - disable smooth scrolling in fast (Ctrl+f) mode
Commit: 534a30ea97499dec6a750eb06ec5989a9f16f787
https://github.com/scummvm/scummvm/commit/534a30ea97499dec6a750eb06ec5989a9f16f787
Author: athrxx (athrxx at scummvm.org)
Date: 2021-08-01T13:40:52+02:00
Commit Message:
SCUMM: (FM-TOWNS) - disable smooth scrolling in fast (Ctrl+f) mode
Changed paths:
engines/scumm/gfx_towns.cpp
diff --git a/engines/scumm/gfx_towns.cpp b/engines/scumm/gfx_towns.cpp
index 184f0ba92b..2266970d44 100644
--- a/engines/scumm/gfx_towns.cpp
+++ b/engines/scumm/gfx_towns.cpp
@@ -155,7 +155,7 @@ void ScummEngine::towns_clearStrip(int strip) {
}
void ScummEngine::requestScroll(int dir) {
- if (_game.platform == Common::kPlatformFMTowns) {
+ if (_game.platform == Common::kPlatformFMTowns && !_fastMode) {
int lw = _townsScreen->getLayerWidth(0);
// Wait for opposite direction scroll to finish.
towns_waitForScroll(-dir);
More information about the Scummvm-git-logs
mailing list