[Scummvm-git-logs] scummvm master -> 732ef412a2f21ff7e5bce1d11f34c572ce6f380a

digitall noreply at scummvm.org
Wed Sep 7 14:06:18 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:
732ef412a2 GROOVIE: Fix Format for 64-bit Integer GCC Compiler Warning


Commit: 732ef412a2f21ff7e5bce1d11f34c572ce6f380a
    https://github.com/scummvm/scummvm/commit/732ef412a2f21ff7e5bce1d11f34c572ce6f380a
Author: D G Turner (digitall at scummvm.org)
Date: 2022-09-07T15:05:10+01:00

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

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


diff --git a/engines/groovie/video/roq.cpp b/engines/groovie/video/roq.cpp
index cd12975afab..01b4589c205 100644
--- a/engines/groovie/video/roq.cpp
+++ b/engines/groovie/video/roq.cpp
@@ -545,7 +545,7 @@ bool ROQPlayer::processBlock() {
 	}
 
 	if (endpos != _file->pos()) {
-		warning("Groovie::ROQ: BLOCK %04x Should have ended at %d, and has ended at %d", blockHeader.type, endpos, (int)_file->pos());
+		warning("Groovie::ROQ: BLOCK %04x Should have ended at %ld, and has ended at %d", blockHeader.type, endpos, (int)_file->pos());
 		warning("Ensure you've copied the files correctly according to the wiki.");
 		_file->seek(MIN(_file->pos(), endpos));
 	}




More information about the Scummvm-git-logs mailing list