[Scummvm-git-logs] scummvm master -> 9f2b694776cdc6e88e23948ba43481c66db36121

digitall noreply at scummvm.org
Sun Sep 25 14:28:52 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:
9f2b694776 GROOVIE: Fix Format for 64-bit Integer GCC Compiler Warning in ROQ Code


Commit: 9f2b694776cdc6e88e23948ba43481c66db36121
    https://github.com/scummvm/scummvm/commit/9f2b694776cdc6e88e23948ba43481c66db36121
Author: D G Turner (digitall at scummvm.org)
Date: 2022-09-25T15:27:53+01:00

Commit Message:
GROOVIE: Fix Format for 64-bit Integer GCC Compiler Warning in ROQ Code

Changed paths:
    engines/groovie/video/roq.cpp


diff --git a/engines/groovie/video/roq.cpp b/engines/groovie/video/roq.cpp
index be5bfcf88a4..c6b7fe84231 100644
--- a/engines/groovie/video/roq.cpp
+++ b/engines/groovie/video/roq.cpp
@@ -699,7 +699,7 @@ bool ROQPlayer::processBlockQuadVector(ROQBlockHeader &blockHeader) {
 		}
 		_file->skip(skipBytes);
 		if (skipBytes != 2) {
-			warning("Groovie::ROQ: Skipped %d bytes", skipBytes);
+			warning("Groovie::ROQ: Skipped %ld bytes", skipBytes);
 		}
 	}
 	return true;




More information about the Scummvm-git-logs mailing list