From 8f453700735937f0cb03d1324d07a78d46ef88f8 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Mon, 23 Mar 2020 20:24:09 +0100 Subject: [PATCH] Comment tweaks --- src/core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core.c b/src/core.c index 3d04d4e1..969aa0fa 100644 --- a/src/core.c +++ b/src/core.c @@ -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