removed unused function whcih caused compile errors
authorMatthias Braun <matze@braunis.de>
Fri, 24 Sep 2004 21:19:25 +0000 (21:19 +0000)
committerMatthias Braun <matze@braunis.de>
Fri, 24 Sep 2004 21:19:25 +0000 (21:19 +0000)
SVN-Revision: 1969

src/level.cpp
src/level.h

index 94c98b3..f7906ab 100644 (file)
@@ -158,18 +158,6 @@ Level::get_sector(const std::string& name)
   return i->second;
 }
 
-const std::string&
-Level::get_sector_name(const Sector* sector)
-{
-  for(Sectors::iterator i = sectors.begin(); i != sectors.end(); ++i)
-    {
-    if(i->second == sector)
-      return i->first;
-    }
-  std::cerr << "Warning: Sector not found on level\n";
-  return "";
-}
-
 Sector*
 Level::get_next_sector(const Sector* sector)
 {
index 3e34d07..b711e36 100644 (file)
@@ -64,8 +64,6 @@ public:
   Sector* get_next_sector(const Sector* sector);
   Sector* get_previous_sector(const Sector* sector);
 
-  const std::string& get_sector_name(const Sector* sector);
-
   int get_total_sectors();
 
   int get_total_badguys();