[Scummvm-git-logs] scummvm master -> 032f9e3857c49935a2a11efb9f20c991a067c53f

digitall 547637+digitall at users.noreply.github.com
Sat Jul 10 00:22:23 UTC 2021


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:
032f9e3857 SAGA2: Fix GCC Signed vs. Unsigned Warning


Commit: 032f9e3857c49935a2a11efb9f20c991a067c53f
    https://github.com/scummvm/scummvm/commit/032f9e3857c49935a2a11efb9f20c991a067c53f
Author: D G Turner (digitall at scummvm.org)
Date: 2021-07-10T01:21:57+01:00

Commit Message:
SAGA2: Fix GCC Signed vs. Unsigned Warning

Changed paths:
    engines/saga2/gamerate.h


diff --git a/engines/saga2/gamerate.h b/engines/saga2/gamerate.h
index 21b8fb1fa7..593537ff47 100644
--- a/engines/saga2/gamerate.h
+++ b/engines/saga2/gamerate.h
@@ -228,7 +228,7 @@ frameSmoother::frameSmoother(int32 fps, uint32 perSec, uint32 now)
 	historySize = fps * 5;
 	frameHistory = new float[historySize];
 
-	for (int i = 0; i < historySize; i++)
+	for (uint32 i = 0; i < historySize; i++)
 		frameHistory[i] = 0;
 
 	for (int i = 0; i < 5; i++)




More information about the Scummvm-git-logs mailing list