diff --git a/src/raylib_project_creator.c b/src/raylib_project_creator.c index 21cd8d2..8cf9bdd 100644 --- a/src/raylib_project_creator.c +++ b/src/raylib_project_creator.c @@ -540,7 +540,7 @@ int main(int argc, char *argv[]) GuiEnable(); #if !defined(PLATFORM_WEB) && (defined(__linux__) || defined(__FreeBSD__)) - GuiDisable() + GuiDisable(); #endif GuiLabel((Rectangle){ anchorBuilding.x + 8, anchorBuilding.y + 48, 104, 24 }, "COMPILER PATH:"); if (GuiTextBox((Rectangle){ anchorBuilding.x + 112, anchorBuilding.y + 48, 536, 24 }, config->building.compilerPath, 128, buildingCompilerPathEditMode)) buildingCompilerPathEditMode = !buildingCompilerPathEditMode;