changeset 5865:a339ec477b6b draft

(svn r8446) -Fix (8445): accidentally made a function that should not be abstract abstract.
author rubidium <rubidium@openttd.org>
date Sun, 28 Jan 2007 20:54:30 +0000
parents c07f3d0a6cc3
children dd06d88cbc97
files src/network/core/udp.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/network/core/udp.h
+++ b/src/network/core/udp.h
@@ -120,7 +120,7 @@
 	 * the grfconfig list of the NetworkGameInfo.
 	 * @param config the GRF to handle
 	 */
-	virtual void HandleIncomingNetworkGameInfoGRFConfig(GRFConfig *config) = 0;
+	virtual void HandleIncomingNetworkGameInfoGRFConfig(GRFConfig *config) { NOT_REACHED(); }
 public:
 	/** On destructing of this class, the socket needs to be closed */
 	virtual ~NetworkUDPSocketHandler() { this->Close(); }