diff options
-rw-r--r-- | include/pso/TObject.h | 2 | ||||
-rw-r--r-- | src/pso/TObject2.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/pso/TObject.h b/include/pso/TObject.h index b6930f8..96fa1f0 100644 --- a/include/pso/TObject.h +++ b/include/pso/TObject.h @@ -55,7 +55,7 @@ public: TObject *down; public: void disallow_rendering(); - void clear_flag_4(); + void allow_rendering(); void set_flag_3(); void clear_flag_3(); void queue_destruction(); 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); } |