Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2015-02-09 21:33:20 +0000
committerStijn Buys <ingar@osirion.org>2015-02-09 21:33:20 +0000
commit81c5e14a2988a1bca544978f55f519b17ce0635e (patch)
tree2a1ffad760944a51bd21caeae9f70a2ac5caad4e /src
parent114de658928969c7ac84f0ea0617d5afc4ebb870 (diff)
Drop support for the 'infoname' entity ini key.
Diffstat (limited to 'src')
-rw-r--r--src/core/parser.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/parser.cc b/src/core/parser.cc
index 4e471aa..8781a1b 100644
--- a/src/core/parser.cc
+++ b/src/core/parser.cc
@@ -82,13 +82,13 @@ bool Parser::got_entity_key(filesystem::IniFile &inifile, Entity *entity)
info->add_text(strval);
return true;
- } else if (inifile.got_key_string("infoname", strval))
+/* } else if (inifile.got_key_string("infoname", strval))
{
Info *info = get_entity_info(entity);
info->set_name(strval);
return true;
-
+*/
} else if (inifile.got_key_label("label", strval))
{
entity->set_label(strval);