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
commitf78d463f074b14b779e001ef1e906b5c378f5f5a (patch)
treeb68c921edf69a0a44127a5dbf620db8c017da927 /src/network/core/udp.h
parent66f46b71a1ec136b2ed4d2bec188dda606da44bf (diff)
downloadopenttd-f78d463f074b14b779e001ef1e906b5c378f5f5a.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(); }