Remove some dead code.

This commit is contained in:
Bill Currie 2012-12-26 15:10:11 +09:00
parent b01986c3c5
commit 5fbe50a5e2
2 changed files with 0 additions and 10 deletions

View file

@ -96,7 +96,6 @@ extern int num_entities;
const char *ValueForKey (entity_t *ent, const char *key);
void SetKeyValue (entity_t *ent, const char *key, const char *value);
float FloatForKey (entity_t *ent, const char *key);
entity_t *FindEntityWithKeyPair(const char *key, const char *value);
void GetVectorForKey (entity_t *ent, const char *key, vec3_t vec);

View file

@ -367,15 +367,6 @@ SetKeyValue (entity_t *ent, const char *key, const char *value)
ep->value = strdup (value);
}
float
FloatForKey (entity_t *ent, const char *key)
{
const char*k;
k = ValueForKey (ent, key);
return atof (k);
}
entity_t *
FindEntityWithKeyPair (const char *key, const char *value)
{