summaryrefslogtreecommitdiff
path: root/src/d/actor
diff options
context:
space:
mode:
authorkipcode66 <kipcode66@gmail.com>2026-01-26 17:20:19 -0500
committerGitHub <noreply@github.com>2026-01-27 00:20:19 +0200
commitd787afaee05a8facca99ca4e30323b66e72157ea (patch)
tree40a31396ecc6567ccd7e08ab4eaf7d6ad7320237 /src/d/actor
parentbe3efedee34194f88845a5f4413096812ac22dfd (diff)
Std7 (#3068)
* fix standard compiler error for d_a_tag_TWgate * fix standard compiler errors for J3DJoint * fix regression in ShieldD
Diffstat (limited to 'src/d/actor')
-rw-r--r--src/d/actor/d_a_tag_TWgate.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/d/actor/d_a_tag_TWgate.cpp b/src/d/actor/d_a_tag_TWgate.cpp
index 85084747c9..75d949d4d9 100644
--- a/src/d/actor/d_a_tag_TWgate.cpp
+++ b/src/d/actor/d_a_tag_TWgate.cpp
@@ -356,9 +356,16 @@ void daTagTWGate_c::executeDemoFilone3() {
}
}
+#ifndef __MWERKS__
+ int modelSts;
+#endif
switch (*cutName) {
case 0x30303031:
+#ifndef __MWERKS__
+ modelSts = downloadModels();
+#else
int modelSts = downloadModels();
+#endif
if (modelSts == 1) {
eventManager.cutEnd(staffId);
} else if (modelSts == -1) {