summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2023-02-08 13:29:25 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2023-02-08 13:29:25 -0400
commite5a312950f959a0c9743e159a4dadc2cd2c2aee3 (patch)
tree26d8c9126d02dc463c3de8fed6c6475a8bfcaad0 /src
parent249ceb596685805749f9a08f535d2028605b43ce (diff)
TObject: Rename `BIT_8` -> `DISALLOW_RENDER_SHADOWS`
Diffstat (limited to 'src')
-rw-r--r--src/pso/TObject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pso/TObject.cpp b/src/pso/TObject.cpp
index e76b0e3..8250018 100644
--- a/src/pso/TObject.cpp
+++ b/src/pso/TObject.cpp
@@ -100,7 +100,7 @@ void TObject::render_nodes2() {
void TObject::render_shadows_for_each_node() {
FOREACH_NODE(TObject, this->down, child) {
- if (!child->get_flags(BIT_8)) {
+ if (!child->get_flags(DISALLOW_RENDER_SHADOWS)) {
child->render_shadows();
child->render_shadows_for_each_node();
}