From 2b12654c492a1d6bf69afb9d5ab9bd3c34c48afb Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Tue, 26 Jul 2016 18:08:58 -0600 Subject: [PATCH] light: remove dead code --- light/entities.cc | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/light/entities.cc b/light/entities.cc index e0101a5a..f5cbd97c 100644 --- a/light/entities.cc +++ b/light/entities.cc @@ -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