diff options
author | rubidium <rubidium@openttd.org> | 2007-01-28 20:54:30 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-01-28 20:54:30 +0000 |
commit | f78d463f074b14b779e001ef1e906b5c378f5f5a (patch) | |
tree | b68c921edf69a0a44127a5dbf620db8c017da927 /src/network | |
parent | 66f46b71a1ec136b2ed4d2bec188dda606da44bf (diff) | |
download | openttd-f78d463f074b14b779e001ef1e906b5c378f5f5a.tar.xz |
(svn r8446) -Fix (8445): accidentally made a function that should not be abstract abstract.
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(); } |