diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-08-03 20:41:05 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-08-03 20:41:05 -0400 |
| commit | 816f08fc7ce3de1a7922721d46bde56555932fd1 (patch) | |
| tree | 2021378923b9e3d49d9dbeb4ef55e6e9653159fa /src/d/actor/d_a_npc_md.cpp | |
| parent | 8b4e0d8d488e4fc8d006716e96d02eda774b4606 (diff) | |
Add extra brackets to collision src structs
Diffstat (limited to 'src/d/actor/d_a_npc_md.cpp')
| -rw-r--r-- | src/d/actor/d_a_npc_md.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/d/actor/d_a_npc_md.cpp b/src/d/actor/d_a_npc_md.cpp index a08aff04..d3bbb379 100644 --- a/src/d/actor/d_a_npc_md.cpp +++ b/src/d/actor/d_a_npc_md.cpp @@ -65,11 +65,11 @@ static dCcD_SrcCyl l_cyl_src = { /* SrcGObjCo SPrm */ 0, }, // cM3dGCylS - { - /* Center */ 0.0f, 0.0f, 0.0f, + {{ + /* Center */ {0.0f, 0.0f, 0.0f}, /* Radius */ 30.0f, /* Height */ 80.0f, - }, + }}, }; static dCcD_SrcCyl l_light_cyl_src = { @@ -95,11 +95,11 @@ static dCcD_SrcCyl l_light_cyl_src = { /* SrcGObjCo SPrm */ 0, }, // cM3dGCylS - { - /* Center */ 0.0f, 0.0f, 0.0f, + {{ + /* Center */ {0.0f, 0.0f, 0.0f}, /* Radius */ 30.0f, /* Height */ 80.0f, - }, + }}, }; static dCcD_SrcCps l_fan_light_cps_src = { @@ -155,11 +155,11 @@ static dCcD_SrcCyl l_wind_cyl_src = { /* SrcGObjCo SPrm */ 0, }, // cM3dGCylS - { - /* Center */ 0.0f, 0.0f, 0.0f, + {{ + /* Center */ {0.0f, 0.0f, 0.0f}, /* Radius */ 30.0f, /* Height */ 80.0f, - }, + }}, }; |
