[Scummvm-git-logs] scummvm master -> 45544790bbe41e0da080aa7af99fa547711b5c73

kelmer44 noreply at scummvm.org
Fri Jul 10 09:29:09 UTC 2026


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:
45544790bb TOT: Restricts mouse when loading from scummvm launcher


Commit: 45544790bbe41e0da080aa7af99fa547711b5c73
    https://github.com/scummvm/scummvm/commit/45544790bbe41e0da080aa7af99fa547711b5c73
Author: kelmer (kelmer at gmail.com)
Date: 2026-07-10T11:28:59+02:00

Commit Message:
TOT: Restricts mouse when loading from scummvm launcher

Changed paths:
    engines/tot/tot.cpp


diff --git a/engines/tot/tot.cpp b/engines/tot/tot.cpp
index 980e62037a8..0a3544a24c8 100644
--- a/engines/tot/tot.cpp
+++ b/engines/tot/tot.cpp
@@ -134,6 +134,7 @@ void TotEngine::syncSoundSettings() {
 
 int TotEngine::engineStart() {
 	if (ConfMan.hasKey("save_slot")) {
+		_mouse->setMouseArea(Common::Rect(0, 0, 305, 185));
 		return startGame();
 	}
 	_graphics->clear();
@@ -164,7 +165,6 @@ int TotEngine::engineStart() {
 	if (_startNewGame && !shouldQuit()) {
 		newGame();
 	} else if (_continueGame && !shouldQuit()) {
-
 		resumeGame();
 	}
 	return startGame();




More information about the Scummvm-git-logs mailing list