From 4f4aba081a05f72ad1bbc7844ca4060cd1f43fe6 Mon Sep 17 00:00:00 2001 From: hgn Date: Mon, 29 May 2023 04:03:25 +0100 Subject: [PATCH] terrible! --- vg_audio.h | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/vg_audio.h b/vg_audio.h index d28dd8d..4d203bf 100644 --- a/vg_audio.h +++ b/vg_audio.h @@ -80,10 +80,18 @@ typedef struct audio_channel audio_channel; typedef struct audio_lfo audio_lfo; struct audio_clip{ - const char *path; + union { /* TODO oof.. */ + u64 _p64_; + const char *path; + }; + u32 flags; u32 size; - void *data; + + union{ + u64 _p64; + void *data; + }; }; static struct vg_audio_system{ -- 2.25.1