(svn r8446) -Fix (8445): accidentally made a function that should not be abstract abstract.

pull/155/head
rubidium 18 years ago
parent 66f46b71a1
commit f78d463f07

@ -120,7 +120,7 @@ protected:
* 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(); }

Loading…
Cancel
Save