From 2a6c0be1bdda4d49c941653ec89d4cfba4d07a45 Mon Sep 17 00:00:00 2001 From: EmeraldLoc <86802223+EmeraldLoc@users.noreply.github.com> Date: Tue, 10 May 2022 23:20:19 -0500 Subject: [PATCH] Fixed mac compilation (#88) --- data/dynos_mgr_actor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/dynos_mgr_actor.cpp b/data/dynos_mgr_actor.cpp index 009051a78..b4b44ac86 100644 --- a/data/dynos_mgr_actor.cpp +++ b/data/dynos_mgr_actor.cpp @@ -45,7 +45,7 @@ void DynOS_Actor_AddCustom(const SysPath &aFilename, const char *aActorName) { } // Alloc and init the actors gfx list - ActorGfx actorGfx = { 0 }; + ActorGfx actorGfx = { }; actorGfx.mGfxData = _GfxData; actorGfx.mGraphNode = (GraphNode *) DynOS_Geo_GetGraphNode(geoLayout, false); actorGfx.mPackIndex = MOD_PACK_INDEX;