diff options
| author | Ray <[email protected]> | 2019-06-19 15:43:35 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2019-06-19 15:43:35 +0200 |
| commit | 1b249ac1e15b59867c6f9af3ff628cffba0840ee (patch) | |
| tree | 4e86c89898ea2548e674204332501013322ecc19 /src/text.c | |
| parent | e0854696b4685737f21b0b2b973104c76c5bb8ef (diff) | |
| download | raylib-1b249ac1e15b59867c6f9af3ff628cffba0840ee.tar.gz raylib-1b249ac1e15b59867c6f9af3ff628cffba0840ee.zip | |
Define some globals
Diffstat (limited to 'src/text.c')
| -rw-r--r-- | src/text.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
