From 971e80534e76e158a151ac6936a3c280d7a86188 Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 30 Jan 2020 00:18:19 +0100 Subject: [PATCH] [core] Tweaks on descriptions --- src/core.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/core.c b/src/core.c index c31ea92db..42b336c88 100644 --- a/src/core.c +++ b/src/core.c @@ -427,14 +427,14 @@ typedef struct CoreData { } Gamepad; } Input; struct { - double current; // Current time measure - double previous; // Previous time measure - double update; // Time measure for frame update - double draw; // Time measure for frame draw - double frame; // Time measure for one frame - double target; // Desired time for one frame, if 0 not applied + double current; // Current time measure + double previous; // Previous time measure + double update; // Time measure for frame update + double draw; // Time measure for frame draw + double frame; // Time measure for one frame + double target; // Desired time for one frame, if 0 not applied #if defined(PLATFORM_ANDROID) || defined(PLATFORM_RPI) || defined(PLATFORM_UWP) - unsigned long long base; // Base time measure for hi-res timer + unsigned long long base; // Base time measure for hi-res timer #endif } Time; } CoreData; @@ -442,7 +442,7 @@ typedef struct CoreData { //---------------------------------------------------------------------------------- // Global Variables Definition //---------------------------------------------------------------------------------- -static CoreData CORE = { 0 }; +static CoreData CORE = { 0 }; // Global CORE context static char **dirFilesPath; // Store directory files paths as strings static int dirFilesCount = 0; // Count directory files strings