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_btd.cpp | |
| parent | 8b4e0d8d488e4fc8d006716e96d02eda774b4606 (diff) | |
Add extra brackets to collision src structs
Diffstat (limited to 'src/d/actor/d_a_btd.cpp')
| -rw-r--r-- | src/d/actor/d_a_btd.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/d/actor/d_a_btd.cpp b/src/d/actor/d_a_btd.cpp index 577f1cd6..dcac0f53 100644 --- a/src/d/actor/d_a_btd.cpp +++ b/src/d/actor/d_a_btd.cpp @@ -245,10 +245,10 @@ static cPhs_State daBtd_Create(fopAc_ac_c*) { /* SrcGObjCo SPrm */ 0, }, // cM3dGSphS - { - /* Center */ 0.0f, 0.0f, 0.0f, + {{ + /* Center */ {0.0f, 0.0f, 0.0f}, /* Radius */ 200.0f, - }, + }}, }; static dCcD_SrcSph eye_sph_src = { // dCcD_SrcGObjInf @@ -273,10 +273,10 @@ static cPhs_State daBtd_Create(fopAc_ac_c*) { /* SrcGObjCo SPrm */ 0, }, // cM3dGSphS - { - /* Center */ 0.0f, 0.0f, 0.0f, + {{ + /* Center */ {0.0f, 0.0f, 0.0f}, /* Radius */ 50.0f, - }, + }}, }; static dCcD_SrcSph fire_sph_src = { // dCcD_SrcGObjInf @@ -301,10 +301,10 @@ static cPhs_State daBtd_Create(fopAc_ac_c*) { /* SrcGObjCo SPrm */ 0, }, // cM3dGSphS - { - /* Center */ 0.0f, 0.0f, 0.0f, + {{ + /* Center */ {0.0f, 0.0f, 0.0f}, /* Radius */ 100.0f, - }, + }}, }; static dCcD_SrcSph sibuki_sph_src = { // dCcD_SrcGObjInf @@ -329,10 +329,10 @@ static cPhs_State daBtd_Create(fopAc_ac_c*) { /* SrcGObjCo SPrm */ 0, }, // cM3dGSphS - { - /* Center */ 0.0f, 0.0f, 0.0f, + {{ + /* Center */ {0.0f, 0.0f, 0.0f}, /* Radius */ 40.0f, - }, + }}, }; static dCcD_SrcCyl hand_cyl_src = { // dCcD_SrcGObjInf @@ -357,11 +357,11 @@ static cPhs_State daBtd_Create(fopAc_ac_c*) { /* SrcGObjCo SPrm */ 0, }, // cM3dGCylS - { - /* Center */ 0.0f, 0.0f, 0.0f, + {{ + /* Center */ {0.0f, 0.0f, 0.0f}, /* Radius */ 0.0f, /* Height */ 0.0f, - }, + }}, }; } |
