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

orgads noreply at scummvm.org
Thu Aug 11 19:59:09 UTC 2022


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:
b3d0813300 SCUMM: Fix indentation


Commit: b3d0813300f5e5d7f8a575b6e1e3b26bfbbaf304
    https://github.com/scummvm/scummvm/commit/b3d0813300f5e5d7f8a575b6e1e3b26bfbbaf304
Author: Orgad Shaneh (orgads at gmail.com)
Date: 2022-08-11T22:58:54+03:00

Commit Message:
SCUMM: Fix indentation

Amends commit 4451101b80f07197e441cfad8cbd7fd2498b4bc8.

Changed paths:
    engines/scumm/script_v5.cpp


diff --git a/engines/scumm/script_v5.cpp b/engines/scumm/script_v5.cpp
index 0e6fdba4ce1..4e6f0141645 100644
--- a/engines/scumm/script_v5.cpp
+++ b/engines/scumm/script_v5.cpp
@@ -756,7 +756,7 @@ void ScummEngine_v5::o5_breakHere() {
 	// least intrusive way of adding the delay. The script calls it a number
 	// of times, but only once from room 69.
 
-  if (_game.id == GID_LOOM && _game.platform == Common::kPlatformPCEngine && _language == Common::EN_ANY && vm.slot[_currentScript].number == 44 && _currentRoom == 69) {
+	if (_game.id == GID_LOOM && _game.platform == Common::kPlatformPCEngine && _language == Common::EN_ANY && vm.slot[_currentScript].number == 44 && _currentRoom == 69) {
 		vm.slot[_currentScript].delay = 120;
 		vm.slot[_currentScript].status = ssPaused;
 	}




More information about the Scummvm-git-logs mailing list