diff options
author | rubidium <rubidium@openttd.org> | 2007-06-23 21:12:09 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-06-23 21:12:09 +0000 |
commit | 6402d001909cc0f47fa3d9654b331c0ad96267f5 (patch) | |
tree | a1cc1caa824002d18729cbbf175cfdf094f14a10 /src/network | |
parent | be35df3f0363ffffe1cfed8d81084c40212e9571 (diff) | |
download | openttd-6402d001909cc0f47fa3d9654b331c0ad96267f5.tar.xz |
(svn r10298) -Fix [FS#903]: show the subdirectory below the default data directory in this filename in the newgrf list. The directory was removed in r9560 because then it used to full path instead of the path relative to the data directory, but since the inclusion of "search paths" that is not necessary anymore.
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/network_udp.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/network/network_udp.cpp b/src/network/network_udp.cpp index a2e3898e7..eeef5f5a7 100644 --- a/src/network/network_udp.cpp +++ b/src/network/network_udp.cpp @@ -395,7 +395,6 @@ void ClientNetworkUDPSocketHandler::HandleIncomingNetworkGameInfoGRFConfig(GRFCo config->status = GCS_NOT_FOUND; } else { config->filename = f->filename; - config->full_path = f->full_path; config->name = f->name; config->info = f->info; } |