From 93ae22c0dbbbf9b22d26e7f4fd3293b82adadc92 Mon Sep 17 00:00:00 2001 From: DiamondNether90 Date: Mon, 30 Mar 2026 11:47:09 +1100 Subject: [PATCH] Added the bandaid fix back for variables because apparently it still breaks strings in extlibs??? --- src/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.h b/src/types.h index 2774b45..ebbed3f 100644 --- a/src/types.h +++ b/src/types.h @@ -83,7 +83,7 @@ typedef struct GroundError { typedef struct GroundValue { GroundValueType type; struct GroundStruct* customType; - union { + struct { int64_t intVal; double doubleVal; char* stringVal;