mirror of
https://github.com/raysan5/raygui.git
synced 2025-12-25 10:22:33 -05:00
Correctec condition
This commit is contained in:
2
raygui.h
2
raygui.h
@ -286,7 +286,7 @@ RAYGUIDEF int GetStyleProperty(int guiProperty); // Get
|
||||
// NOTE: Those functions are only used in SaveGuiStyle() and LoadGuiStyle()
|
||||
|
||||
// Check if custom malloc/free functions defined, if not, using standard ones
|
||||
#if !defined(RAYGUI_MALLOC) || !defined(RAYGUI_NO_STYLE_SAVE_LOAD)
|
||||
#if !defined(RAYGUI_MALLOC) && !defined(RAYGUI_NO_STYLE_SAVE_LOAD)
|
||||
#include <stdlib.h> // Required for: malloc(), free() [Used only on LoadGuiStyle()]
|
||||
|
||||
#define RAYGUI_MALLOC(size) malloc(size)
|
||||
|
||||
Reference in New Issue
Block a user