From c0c2a0ccc335b00983bf69b99b7a44505ed24b47 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Fri, 12 Nov 2010 14:43:49 +0000 Subject: made core::Entity::entity_shape a private attribute --- src/core/parser.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/core/parser.cc') diff --git a/src/core/parser.cc b/src/core/parser.cc index 8018bf7..3806b99 100644 --- a/src/core/parser.cc +++ b/src/core/parser.cc @@ -42,16 +42,16 @@ bool Parser::got_entity_key(filesystem::IniFile &inifile, core::Entity *entity) if (inifile.got_key_string("shape", shapename)) { if (shapename.compare("axis") == 0) { - entity->entity_shape = core::Entity::Axis; + entity->set_shape(core::Entity::Axis); return true; } else if (shapename.compare("cube") == 0) { - entity->entity_shape = core::Entity::Cube; + entity->set_shape(core::Entity::Cube); return true; } else if (shapename.compare("diamond") == 0) { - entity->entity_shape = core::Entity::Diamond; + entity->set_shape(core::Entity::Diamond); return true; } else if (shapename.compare("sphere") == 0) { - entity->entity_shape = core::Entity::Sphere; + entity->set_shape(core::Entity::Sphere); return true; } else { con_warn << inifile.name() << " unknown shape '" << shapename << "' at line " << inifile.line() << std::endl; -- cgit v1.2.3