From d5657d7cf8bffdc4432c0f21409dec11502056f7 Mon Sep 17 00:00:00 2001 From: Kp Date: Sat, 9 Mar 2013 20:29:20 +0000 Subject: [PATCH] Remove unused include/tracker/tracker.h --- include/tracker/tracker.h | 41 --------------------------------------- main/config.c | 1 - 2 files changed, 42 deletions(-) delete mode 100644 include/tracker/tracker.h diff --git a/include/tracker/tracker.h b/include/tracker/tracker.h deleted file mode 100644 index 6e8aed249..000000000 --- a/include/tracker/tracker.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - This is code needed to contact and interact with the tracker server. Contact - me at kip@thevertigo.com for comments. Yes, I thought about GGZ, but it wasn't - fully portable at the time of writing. - - This file and the acompanying tracker_client.c file are free software; - you can redistribute them and/or modify them under the terms of the GNU - Library General Public License as published by the Free Software Foundation; - either version 2 of the License, or (at your option) any later version. - - These files are distributed in the hope that they will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public - License along with these files; see the file COPYING.LIB. If not, - write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. -*/ - -// Multiple include protection... -#ifndef _TRACKER_H -#define _TRACKER_H - -// Don't bother with any of this if networking support isn't enabled... -#ifdef NETWORK - -// The default game tracker server address... -#define TRACKER_DEFAULT_SERVER "localhost" - -// Tracker port... -#define TRACKER_PORT 7988 - -// Invoke the browse UDP/IP network game GUI... -void TrackerBrowseMenu(); - -#endif // NETWORK - -#endif // _TRACKER_CLIENT_H - diff --git a/main/config.c b/main/config.c index 5c3433c0f..2a057ecd7 100644 --- a/main/config.c +++ b/main/config.c @@ -33,7 +33,6 @@ COPYRIGHT 1993-1998 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED. #include "player.h" #include "mission.h" #include "physfsx.h" -#include "tracker/tracker.h" struct Cfg GameCfg;