From ef3d17776d0e3abc40335870975c0466cbc33870 Mon Sep 17 00:00:00 2001 From: Robin Avery Date: Fri, 26 Jan 2024 23:43:25 -0500 Subject: [PATCH] Fix issues --- src/sysdolphin/baselib/tobj.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sysdolphin/baselib/tobj.h b/src/sysdolphin/baselib/tobj.h index 50e655d858..812777e155 100644 --- a/src/sysdolphin/baselib/tobj.h +++ b/src/sysdolphin/baselib/tobj.h @@ -200,7 +200,7 @@ typedef struct _HSD_TexLODDesc { u32 max_anisotropy; // GXAnisotropy } HSD_TexLODDesc; -typedef struct _HSD_ImageDesc { +struct _HSD_ImageDesc { void* img_ptr; u16 width; u16 height; @@ -208,7 +208,7 @@ typedef struct _HSD_ImageDesc { u32 mipmap; f32 minLOD; f32 maxLOD; -} HSD_ImageDesc; +}; typedef struct _HSD_TObjTev { u8 color_op;