From 1eca6f52b7200c72b6bac6134ace370b2a96f42d Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Thu, 12 Mar 2026 23:56:27 -0700 Subject: [PATCH] brg fix --- src/d/actor/d_a_obj_brg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/d/actor/d_a_obj_brg.cpp b/src/d/actor/d_a_obj_brg.cpp index a09f215e89..5df34b03e0 100644 --- a/src/d/actor/d_a_obj_brg.cpp +++ b/src/d/actor/d_a_obj_brg.cpp @@ -1338,7 +1338,7 @@ static int daObj_Brg_Execute(obj_brg_class* i_this) { i_this->mpBgW->CopyBackVtx(); - BE(Vec)* vtx_tbl = (BE(Vec)*)i_this->mpBgW->GetVtxTbl(); + Vec* vtx_tbl = (Vec*)i_this->mpBgW->GetVtxTbl(); int dbg_0x30; int temp; @@ -1622,7 +1622,7 @@ static int CallbackCreateHeap(fopAc_ac_c* i_this) { a_this->mpBgW->SetRideCallback(ride_call_back); a_this->mpBgW->CopyBackVtx(); - BE(Vec)* vtx_tbl = (BE(Vec)*)a_this->mpBgW->GetVtxTbl(); + Vec* vtx_tbl = (Vec*)a_this->mpBgW->GetVtxTbl(); for (int i = 0; i < a_this->mpBgW->GetVtxNum(); i++) { vtx_tbl[i] = i_this->current.pos; }