From b99c406d99768661442d278476464858aabbfdc4 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 29 Sep 2013 20:32:12 +0000 Subject: Corrected build errors, build-0.2.5-svn1328 --- src/core/entity.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/core/entity.cc') diff --git a/src/core/entity.cc b/src/core/entity.cc index b7d7646..8ea0db5 100644 --- a/src/core/entity.cc +++ b/src/core/entity.cc @@ -1281,17 +1281,17 @@ void EntityControlable::set_target_controlflags(int controlflags) } } -void EntityControlable::set_target_controlflag(const ControlFlag controlflag) +void EntityControlable::set_target_controlflag(const ControlFlags controlflag) { - if (!has_controlflag(controlflag); + if (!has_controlflag(controlflag)) { target_controlflags = target_controlflags | controlflag; set_dirty(); } } -void EntityControlable::unset_target_controlflag(const ControlFlag controlflag) +void EntityControlable::unset_target_controlflag(const ControlFlags controlflag) { - if (has_controlflag(controlflag); + if (has_controlflag(controlflag)) { target_controlflags = target_controlflags & ~controlflag; set_dirty(); } -- cgit v1.2.3