fix linux templates
This commit is contained in:
parent
ee13140316
commit
a1102932a3
|
@ -61,8 +61,8 @@ int main() {
|
||||||
trackColor= GuiColorPicker((Rectangle){ 50, 250, 196, 192 }, NULL, trackColor);
|
trackColor= GuiColorPicker((Rectangle){ 50, 250, 196, 192 }, NULL, trackColor);
|
||||||
int doClear = GuiButton((Rectangle){ 120, 700, 80, 30 },"Clear");
|
int doClear = GuiButton((Rectangle){ 120, 700, 80, 30 },"Clear");
|
||||||
if (newOuterL!=outerL || newBaseL!=baseL || newPointL!=pointL) {
|
if (newOuterL!=outerL || newBaseL!=baseL || newPointL!=pointL) {
|
||||||
if (newInnerL!=innerL)
|
if (newOuterL!=outerL)
|
||||||
pointL=newInnerL;
|
pointL=newOuterL;
|
||||||
else
|
else
|
||||||
pointL=newPointL;
|
pointL=newPointL;
|
||||||
outerL=newOuterL;
|
outerL=newOuterL;
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
#define RAYGUI_IMPLEMENTATION
|
#define RAYGUI_IMPLEMENTATION
|
||||||
//#define RAYGUI_CUSTOM_ICONS // It requires providing gui_icons.h in the same directory
|
//#define RAYGUI_CUSTOM_ICONS // It requires providing gui_icons.h in the same directory
|
||||||
//#include "gui_icons.h" // External icons data provided, it can be generated with rGuiIcons tool
|
//#include "gui_icons.h" // External icons data provided, it can be generated with rGuiIcons tool
|
||||||
#include <raygui/raygui.h>
|
#include <raygui.h>
|
||||||
|
|
||||||
#include <string.h> // Required for: strcpy()
|
#include <string.h> // Required for: strcpy()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue