diff options
| author | raysan5 <[email protected]> | 2020-03-23 20:24:09 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-03-23 20:24:09 +0100 |
| commit | 8f453700735937f0cb03d1324d07a78d46ef88f8 (patch) | |
| tree | 69192dcd078067c3f9ac278d3bea69a6b4995ad1 /src/core.c | |
| parent | 502bc61931488e261680f905f6b79d2dbdedc771 (diff) | |
| download | raylib-8f453700735937f0cb03d1324d07a78d46ef88f8.tar.gz raylib-8f453700735937f0cb03d1324d07a78d46ef88f8.zip | |
Comment tweaks
Diffstat (limited to 'src/core.c')
| -rw-r--r-- | src/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -325,7 +325,6 @@ typedef struct { } KeyEventFifo; #endif - typedef struct { int x; int y; } Point; typedef struct { unsigned int width; unsigned int height; } Size; @@ -333,6 +332,7 @@ typedef struct { unsigned int width; unsigned int height; } Size; extern EGLNativeWindowType handle; // Native window handler for UWP (external, defined in UWP App) #endif +// Core global state context data typedef struct CoreData { struct { #if defined(PLATFORM_DESKTOP) || defined(PLATFORM_WEB) @@ -450,7 +450,7 @@ typedef struct CoreData { //---------------------------------------------------------------------------------- // Global Variables Definition //---------------------------------------------------------------------------------- -static CoreData CORE = { 0 }; // Global CORE context +static CoreData CORE = { 0 }; // Global CORE state context static char **dirFilesPath = NULL; // Store directory files paths as strings static int dirFilesCount = 0; // Count directory files strings |
