diff options
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/core/udp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/core/udp.h b/src/network/core/udp.h index e2ac876a9..4ea170122 100644 --- a/src/network/core/udp.h +++ b/src/network/core/udp.h @@ -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(); } |