[Scummvm-git-logs] scummvm master -> 0797a921f3c41756967b2fdccc15d758249f2d08

digitall noreply at scummvm.org
Sun Feb 16 04:34:51 UTC 2025


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:
0797a921f3 VIDEO: QTVR: Fix Signed vs. Unsigned Comparison GCC Compiler Warning


Commit: 0797a921f3c41756967b2fdccc15d758249f2d08
    https://github.com/scummvm/scummvm/commit/0797a921f3c41756967b2fdccc15d758249f2d08
Author: D G Turner (digitall at scummvm.org)
Date: 2025-02-16T04:34:20Z

Commit Message:
VIDEO: QTVR: Fix Signed vs. Unsigned Comparison GCC Compiler Warning

Changed paths:
    video/qtvr_decoder.cpp


diff --git a/video/qtvr_decoder.cpp b/video/qtvr_decoder.cpp
index 78bc214b1bf..ee1457542a1 100644
--- a/video/qtvr_decoder.cpp
+++ b/video/qtvr_decoder.cpp
@@ -271,7 +271,7 @@ QuickTimeDecoder::NodeData QuickTimeDecoder::getNodeData(uint32 nodeID) {
 
 void QuickTimeDecoder::goToNode(uint32 nodeID) {
 	int idx = -1;
-	for (int i = 0; i < _panoTrack->panoSamples.size(); i++) {
+	for (uint i = 0; i < _panoTrack->panoSamples.size(); i++) {
 		if (_panoTrack->panoSamples[i].hdr.nodeID == nodeID) {
 			idx = i;
 			break;




More information about the Scummvm-git-logs mailing list