From 7db6fe02fded0f9555bb506eb4c2d1ae5a364f80 Mon Sep 17 00:00:00 2001 From: Ray Date: Sun, 14 Aug 2022 12:56:55 +0200 Subject: [PATCH] Fixed issue with new output format --- parser/raylib_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/raylib_parser.c b/parser/raylib_parser.c index 7c2a2bff..49b43f76 100644 --- a/parser/raylib_parser.c +++ b/parser/raylib_parser.c @@ -148,7 +148,7 @@ typedef struct FunctionInfo { } FunctionInfo; // Output format for parsed data -typedef enum { DEFAULT = 0, JSON, XML, LUA } OutputFormat; +typedef enum { DEFAULT = 0, JSON, XML, LUA, CODE } OutputFormat; //---------------------------------------------------------------------------------- // Global Variables Definition