diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2023-02-08 13:27:20 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2023-02-08 13:27:20 -0400 |
commit | 249ceb596685805749f9a08f535d2028605b43ce (patch) | |
tree | 1f153fef2a1bd1d0dac9a6b2664ff08f57bbe40e /src/pso | |
parent | 9f45cf21908d3a024481ccbd642b63e5c5b4897c (diff) |
TObject: Rename `clear_flag_4()` -> `allow_rendering()`
Diffstat (limited to 'src/pso')
-rw-r--r-- | src/pso/TObject2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pso/TObject2.cpp b/src/pso/TObject2.cpp index 1774847..7c9e1c3 100644 --- a/src/pso/TObject2.cpp +++ b/src/pso/TObject2.cpp @@ -24,7 +24,7 @@ void TObject::set_flag_3() { set_flags(BIT_3); } -void TObject::clear_flag_4() { +void TObject::allow_rendering() { clear_flags(DISALLOW_RENDER); } |