Define some globals

This commit is contained in:
Ray 2019-06-19 15:43:35 +02:00
parent e0854696b4
commit 1b249ac1e1
4 changed files with 16 additions and 16 deletions

View file

@ -74,7 +74,7 @@
// Global variables
//----------------------------------------------------------------------------------
#if defined(SUPPORT_DEFAULT_FONT)
static Font defaultFont; // Default font provided by raylib
static Font defaultFont = { 0 }; // Default font provided by raylib
// NOTE: defaultFont is loaded on InitWindow and disposed on CloseWindow [module: core]
#endif