[Scummvm-git-logs] scummvm master -> 1b0c3394363e918e215a0720dae59fb190240485

orgads noreply at scummvm.org
Sun Jul 31 19:10:54 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:
1b0c339436 AD: Fix compiler warning


Commit: 1b0c3394363e918e215a0720dae59fb190240485
    https://github.com/scummvm/scummvm/commit/1b0c3394363e918e215a0720dae59fb190240485
Author: Orgad Shaneh (orgads at gmail.com)
Date: 2022-07-31T22:10:42+03:00

Commit Message:
AD: Fix compiler warning

Amends commit 950e3f459e1867ed9462ea036efb3b9841371654.

Changed paths:
    engines/advancedDetector.cpp


diff --git a/engines/advancedDetector.cpp b/engines/advancedDetector.cpp
index 8817cf98e5c..b5e9d207e64 100644
--- a/engines/advancedDetector.cpp
+++ b/engines/advancedDetector.cpp
@@ -860,7 +860,7 @@ void AdvancedMetaEngineDetection::preprocessDescriptions() {
 					depth++;
 				}
 
-				if (depth > _maxScanDepth) {
+				if (depth > int(_maxScanDepth)) {
 					_maxScanDepth = depth;
 
 					debugC(4, kDebugGlobalDetection, "  Increased scan depth to %d", _maxScanDepth);




More information about the Scummvm-git-logs mailing list