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

dwatteau noreply at scummvm.org
Tue Aug 25 09:42:25 UTC 2026


This automated email contains information about 3 new commits which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
9778f5e397 JANITORIAL: BAGEL: Fix "less then" -> "less than" typo
892e2a151b JANITORIAL: QDENGINE: Fix "more then" -> "more than" typos
f35608c90c JANITORIAL: SAGA2: Fix "less then" -> "less than" typos


Commit: 9778f5e397288527869e92cad1a9d98a70b1be8a
    https://github.com/scummvm/scummvm/commit/9778f5e397288527869e92cad1a9d98a70b1be8a
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2026-08-25T11:39:29+02:00

Commit Message:
JANITORIAL: BAGEL: Fix "less then" -> "less than" typo

Changed paths:
    engines/bagel/spacebar/sraf_computer.cpp


diff --git a/engines/bagel/spacebar/sraf_computer.cpp b/engines/bagel/spacebar/sraf_computer.cpp
index 6e7df435131..41a198fe931 100644
--- a/engines/bagel/spacebar/sraf_computer.cpp
+++ b/engines/bagel/spacebar/sraf_computer.cpp
@@ -3080,7 +3080,7 @@ bool SrafComputer::reportMeetingStatus(int nTeamNumber) {
 	assert(pVar != nullptr);
 	int nCurTime = pVar->getNumValue();
 
-	// If less then 5 turns have elapsed, then we're still in the driving stage...
+	// If less than 5 turns have elapsed, then we're still in the driving stage...
 	if ((teamListItem._nDispatchTime + kDrivingTime) >= nCurTime) {
 		bDone = true;
 		bTimeElapsed = false;


Commit: 892e2a151b415b9cae57d5e418397f566d7f3bbf
    https://github.com/scummvm/scummvm/commit/892e2a151b415b9cae57d5e418397f566d7f3bbf
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2026-08-25T11:40:04+02:00

Commit Message:
JANITORIAL: QDENGINE: Fix "more then" -> "more than" typos

Changed paths:
    engines/qdengine/qdcore/util/LZ77.cpp


diff --git a/engines/qdengine/qdcore/util/LZ77.cpp b/engines/qdengine/qdcore/util/LZ77.cpp
index 0f6576fa425..b795b93d56d 100644
--- a/engines/qdengine/qdcore/util/LZ77.cpp
+++ b/engines/qdengine/qdcore/util/LZ77.cpp
@@ -84,7 +84,7 @@ void CLZ77::encode(byte *target, int32 &tlen, const byte *source, int32 slen) {
 
 	block = 0;              // block - bit in single flag byte
 	shift = 16;             // shift offset to most significant bits
-	border = 1;             // offset can`t be more then border
+	border = 1;             // offset can't be more than border
 	flag = target;          // flag for every 8 entities
 	tlen++;                 // byte for first flag
 	*flag = 0;
@@ -142,7 +142,7 @@ int32 CLZ77::decode(byte *target, int32 &tlen, const byte *source, int32 slen) {
 	flag = (const byte *)source;
 	block = 0;              // block - bit in single flag byte
 	shift = 16;             // shift offset to most significant bits
-	border = 1;             // offset can`t be more then border
+	border = 1;             // offset can't be more than border
 	for (s = (const byte *)source + 1; (s < source + slen) && (t - target < tlen);) {
 		if (shift > BITS_LEN)
 			while (t - target >= (int)border) {


Commit: f35608c90c8a0edd536036fdd4ec4d1297d4ac1c
    https://github.com/scummvm/scummvm/commit/f35608c90c8a0edd536036fdd4ec4d1297d4ac1c
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2026-08-25T11:40:48+02:00

Commit Message:
JANITORIAL: SAGA2: Fix "less then" -> "less than" typos

Changed paths:
    engines/saga2/contain.cpp
    engines/saga2/player.cpp


diff --git a/engines/saga2/contain.cpp b/engines/saga2/contain.cpp
index 313bfd3c401..e336a7326a6 100644
--- a/engines/saga2/contain.cpp
+++ b/engines/saga2/contain.cpp
@@ -636,7 +636,7 @@ void ContainerView::pointerRelease(gPanelMessage &) {
 
 void ContainerView::timerTick(gPanelMessage &msg) {
 	// validate objToGet and make sure that the number selected for move
-	// is less then or equal to the number of items present in the merged object
+	// is less than or equal to the number of items present in the merged object
 	if (g_vm->_cnm->_objToGet && g_vm->_cnm->_amountIndY != -1) {
 		int32   rate = (g_vm->_cnm->_amountIndY - msg._pickAbsPos.y);
 
@@ -906,7 +906,7 @@ void ReadyContainerView::setScrollOffset(int8 num) {
 
 void ReadyContainerView::timerTick(gPanelMessage &msg) {
 	// validate objToGet and make sure that the number selected for move
-	// is less then or equal to the number of items present in the merged object
+	// is less than or equal to the number of items present in the merged object
 	if (g_vm->_cnm->_objToGet && g_vm->_cnm->_amountIndY != -1) {
 		ContainerView::timerTick(msg);
 
diff --git a/engines/saga2/player.cpp b/engines/saga2/player.cpp
index fe56bc7d4f7..f0a181c566f 100644
--- a/engines/saga2/player.cpp
+++ b/engines/saga2/player.cpp
@@ -217,7 +217,7 @@ void PlayerActor::manaUpdate() {
 		else if (*baseMana[i] >= 40) levelBump = 20;
 		else levelBump = 10;
 
-		// is their current mana less then their maximum
+		// is their current mana less than their maximum
 		if (*effectiveMana[i] < *baseMana[i]) {
 			diff = *effectiveMana[i];
 




More information about the Scummvm-git-logs mailing list