From bb02c2059eb068ee271992c223be7859e1421589 Mon Sep 17 00:00:00 2001 From: Hanaxar <87268284+hanaxar@users.noreply.github.com> Date: Wed, 19 Apr 2023 15:58:59 +0300 Subject: [PATCH] Corrected version number and style (#270) ```RAYGUI_VERSION``` was different than the number mentioned in comment section. Also proposed change applies RayLib versioning style. --- src/raygui.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/raygui.h b/src/raygui.h index 222db94..679c006 100644 --- a/src/raygui.h +++ b/src/raygui.h @@ -225,7 +225,10 @@ #ifndef RAYGUI_H #define RAYGUI_H -#define RAYGUI_VERSION "3.2" +#define RAYGUI_VERSION_MAJOR 3 +#define RAYGUI_VERSION_MINOR 5 +#define RAYGUI_VERSION_PATCH 0 +#define RAYGUI_VERSION "3.5-dev" #if !defined(RAYGUI_STANDALONE) #include "raylib.h"