[Scummvm-git-logs] scummvm master -> 3680deb676806f764c0d47548a78395a7154a9ee

Marisa-Chan noreply at scummvm.org
Wed Mar 11 08:07:37 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:
3680deb676 GAMOS: Fix compile warning sign-comparison


Commit: 3680deb676806f764c0d47548a78395a7154a9ee
    https://github.com/scummvm/scummvm/commit/3680deb676806f764c0d47548a78395a7154a9ee
Author: Marisa-Chan (thunder_8888 at mail.ru)
Date: 2026-03-11T15:07:28+07:00

Commit Message:
GAMOS: Fix compile warning sign-comparison

Changed paths:
    engines/gamos/vm.cpp


diff --git a/engines/gamos/vm.cpp b/engines/gamos/vm.cpp
index 1c85428afac..cd140c53679 100644
--- a/engines/gamos/vm.cpp
+++ b/engines/gamos/vm.cpp
@@ -424,7 +424,7 @@ uint32 VM::doScript(uint32 scriptAddress, byte *storage) {
 	if (_interrupt)
 		return 0;
 
-	for (int i = 0; i < THREADS_COUNT; i++) {
+	for (uint i = 0; i < THREADS_COUNT; i++) {
 		if (!_threads[i]._inUse) {
 			_threads[i]._inUse = true;
 			uint32 res = _threads[i].execute(scriptAddress, storage);




More information about the Scummvm-git-logs mailing list