diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-04-24 14:53:58 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-04-24 14:53:58 -0400 |
| commit | fa7d4d28965733a680d5d7e00a10485c66a246df (patch) | |
| tree | 2f49dcae479c9e7b72c276f5cae604a93425ceee /src/d/actor/d_a_demo00.cpp | |
| parent | ce8d17ec0835c9679e54dc7a6700c042825352f9 (diff) | |
Fix relocation and data value mismatches
Diffstat (limited to 'src/d/actor/d_a_demo00.cpp')
| -rw-r--r-- | src/d/actor/d_a_demo00.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/actor/d_a_demo00.cpp b/src/d/actor/d_a_demo00.cpp index dbc9f712..40565136 100644 --- a/src/d/actor/d_a_demo00.cpp +++ b/src/d/actor/d_a_demo00.cpp @@ -69,8 +69,8 @@ void daDemo00_c::setBaseMtx() { void daDemo00_c::setShadowSize() { J3DModelData* modelData = model.model->getModelData(); - cXyz min(1000000000.0f, 1000000000.0f, 1000000000.0f); - cXyz max(-1000000000.0f, -1000000000.0f, -1000000000.0f); + cXyz min(100000000.0f, 100000000.0f, 100000000.0f); + cXyz max(-100000000.0f, -100000000.0f, -100000000.0f); for (u16 i = 0; i < modelData->getJointNum(); i++) { J3DJoint* joint = modelData->getJointNodePointer(i); |
