[Scummvm-git-logs] scummvm master -> 15d53197de3c64536f1327e014d57ea07df4a2d9

eriktorbjorn noreply at scummvm.org
Fri May 2 17:05:33 UTC 2025


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:
15d53197de COMMON: QT: Silence GCC warning


Commit: 15d53197de3c64536f1327e014d57ea07df4a2d9
    https://github.com/scummvm/scummvm/commit/15d53197de3c64536f1327e014d57ea07df4a2d9
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2025-05-02T19:05:21+02:00

Commit Message:
COMMON: QT: Silence GCC warning

Changed paths:
    common/formats/quicktime.cpp


diff --git a/common/formats/quicktime.cpp b/common/formats/quicktime.cpp
index 80a5cfa9d65..aeff39b71e0 100644
--- a/common/formats/quicktime.cpp
+++ b/common/formats/quicktime.cpp
@@ -941,7 +941,7 @@ int QuickTimeParser::readNAVG(Atom atom) {
 	_fd->readUint32BE(); // reserved2
 
 	debugC(2, kDebugLevelGVideo, "  cols: %d rows: %d loop_size: %d frame_duration: %d movie_type: %d",
-		_nav.columns, _nav.rows, _nav.loop_size, _nav.frame_duration, _nav.movie_type);
+		_nav.columns, _nav.rows, _nav.loop_size, _nav.frame_duration, (int)_nav.movie_type);
 	debugC(2, kDebugLevelGVideo, "  fov: %f hpan: [%f - %f] vpan: [%f - %f] initHpan: %f initVPan: %f",
 		_nav.field_of_view, _nav.startHPan, _nav.endHPan, _nav.startVPan, _nav.endVPan, _nav.initialHPan, _nav.initialVPan);
 




More information about the Scummvm-git-logs mailing list