From 183eb88700456158927177cead9007896819b724 Mon Sep 17 00:00:00 2001 From: icebarf Date: Thu, 30 Nov 2023 19:09:42 +0530 Subject: [PATCH] refactor: note to self (comment) --- src/gui_Chip8FontGenerator.h | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/src/gui_Chip8FontGenerator.h b/src/gui_Chip8FontGenerator.h index 652efe4..6816b0f 100644 --- a/src/gui_Chip8FontGenerator.h +++ b/src/gui_Chip8FontGenerator.h @@ -428,16 +428,6 @@ extern "C" #include "raygui.h" -//---------------------------------------------------------------------------------- -// Global Variables Definition -//---------------------------------------------------------------------------------- -//... - -//---------------------------------------------------------------------------------- -// Internal Module Functions Definition -//---------------------------------------------------------------------------------- -//... - //---------------------------------------------------------------------------------- // Module Functions Definition //---------------------------------------------------------------------------------- @@ -450,6 +440,10 @@ InitGuiChip8FontGenerator(void) state.Origin = (Vector2){ 0, 0 }; // ANCHOR ID:1 // Initilize controls variables + + /* Note to self: "true" here indicates off state in the pixel editor. + * "false" will obviously indicate on state in the pixel editor. + */ for (int i = 0; i < TOTAL_TOGGLE_COUNT; i++) state.ToggleActive[i] = true; state.OuputFontTextBoxEditMode = false;