Skip to content

Commit

Permalink
DEVTOOLS: GLK: Fix GCC Compiler Warning
Browse files Browse the repository at this point in the history
  • Loading branch information
digitall committed Sep 30, 2019
1 parent 0eed867 commit a3980b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devtools/create_glk/create_glk.cpp
Expand Up @@ -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
Expand Down

0 comments on commit a3980b4

Please sign in to comment.