[Scummvm-git-logs] scummvm master -> a3980b4fc91472af6f54d791b172e8ca51351f68

digitall 547637+digitall at users.noreply.github.com
Mon Sep 30 02:57:31 CEST 2019


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:
a3980b4fc9 DEVTOOLS: GLK: Fix GCC Compiler Warning


Commit: a3980b4fc91472af6f54d791b172e8ca51351f68
    https://github.com/scummvm/scummvm/commit/a3980b4fc91472af6f54d791b172e8ca51351f68
Author: D G Turner (digitall at scummvm.org)
Date: 2019-09-30T01:55:02+01:00

Commit Message:
DEVTOOLS: GLK: Fix GCC Compiler Warning

Changed paths:
    devtools/create_glk/create_glk.cpp


diff --git a/devtools/create_glk/create_glk.cpp b/devtools/create_glk/create_glk.cpp
index 82ace27..d6b313b 100644
--- a/devtools/create_glk/create_glk.cpp
+++ b/devtools/create_glk/create_glk.cpp
@@ -136,7 +136,7 @@ const byte FONT[] = {
 
 
 #define X_COUNT 32
-#define CHAR_COUNT sizeof(FONT) / 8
+#define CHAR_COUNT (int)(sizeof(FONT) / 8)
 #define Y_COUNT 3
 #define CHAR_WIDTH 6
 #define CHAR_HEIGHT 8





More information about the Scummvm-git-logs mailing list