From a261786e02f38c09da3c8607bc85b661779fbdd4 Mon Sep 17 00:00:00 2001 From: Mike Lester Date: Mon, 28 Oct 2024 22:03:42 -0600 Subject: [PATCH] d_wood: Simplify dummy data at the top of .data section --- src/d/d_wood.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/d/d_wood.cpp b/src/d/d_wood.cpp index f21f335e..4f4fef80 100644 --- a/src/d/d_wood.cpp +++ b/src/d/d_wood.cpp @@ -72,8 +72,8 @@ struct Attr_c { //----------------------------------------- // Data //----------------------------------------- -static Vec _pad0[1] = {1, 1, 1}; -static Vec _pad1[1] = {1, 1, 1}; +static Vec dummy1 = { 1.0f, 1.0f, 1.0f }; +static Vec dummy2 = { 1.0f, 1.0f, 1.0f }; namespace dWood { namespace {