summaryrefslogtreecommitdiff
path: root/src/network/core/udp.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-01-28 20:54:30 +0000
committerrubidium <rubidium@openttd.org>2007-01-28 20:54:30 +0000
commit00782c089d0a49f1fba31077d079894357926b8d (patch)
treeb68c921edf69a0a44127a5dbf620db8c017da927 /src/network/core/udp.h
parentf72dde5236afd8d9a2e29ae1750e8933666b711f (diff)
downloadopenttd-00782c089d0a49f1fba31077d079894357926b8d.tar.xz
(svn r8446) -Fix (8445): accidentally made a function that should not be abstract abstract.
Diffstat (limited to 'src/network/core/udp.h')
-rw-r--r--src/network/core/udp.h2
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(); }