Fix compilation error and remove warnings from examples (#380)

This commit is contained in:
aiafrasinei
2024-02-29 12:45:31 +02:00
committed by GitHub
parent bc67f42209
commit b3fea57382
5 changed files with 9 additions and 29 deletions

View File

@ -59,11 +59,6 @@ int main()
bool exitWindow = false;
bool showMessageBox = false;
char textInput[256] = { 0 };
bool showTextInputBox = false;
char textInputFileName[256] = { 0 };
// Load default style
GuiLoadStyleBluish();
int visualStyleActive = 4;
@ -81,8 +76,6 @@ int main()
if (IsKeyPressed(KEY_ESCAPE)) showMessageBox = !showMessageBox;
if (IsKeyDown(KEY_LEFT_CONTROL) && IsKeyPressed(KEY_S)) showTextInputBox = true;
if (IsFileDropped())
{
FilePathList droppedFiles = LoadDroppedFiles();