light: remove dead code

This commit is contained in:
Eric Wasylishen 2016-07-26 18:08:58 -06:00
parent fb1288a5c0
commit 2b12654c49
1 changed files with 0 additions and 22 deletions

View File

@ -471,28 +471,6 @@ SetupSkyDome()
}
}
///*
// * =============
// * Entities_Insert
// *
// * Adds the entity to the linked list
// * =============
// */
//static void
//Entities_Insert(light_t *entity)
//{
// /* Insert it into the tail end of the list */
// if (num_entities == 0) {
// entities = entity;
// entities_tail = entity;
// } else {
// entities_tail->next = entity;
// entities_tail = entity;
// }
// entity->next = NULL;
// num_entities++;
//}
/*
* =============
* DuplicateEntity