Remove trailing spaces

This commit is contained in:
Ray
2019-10-17 17:16:47 +02:00
parent 48c355315b
commit b312ba5f78

View File

@ -537,7 +537,11 @@ static bool guiStyleLoaded = false;
#if defined(RAYGUI_TEXTBOX_EXTENDED) #if defined(RAYGUI_TEXTBOX_EXTENDED)
static Rectangle guiTextBoxActive = { 0 }; // Area of the currently active textbox static Rectangle guiTextBoxActive = { 0 }; // Area of the currently active textbox
static GuiTextBoxState guiTextBoxState = { .cursor = -1, .start = 0, .index = 0, .select = -1 }; // Keeps state of the active textbox static GuiTextBoxState guiTextBoxState = { // Keeps state of the active textbox
.cursor = -1,
.start = 0,
.index = 0,
.select = -1 };
#endif #endif
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------