From a443375d444b6bf3575730eae9fc56d23820a217 Mon Sep 17 00:00:00 2001 From: frosch Date: Thu, 8 Nov 2012 21:41:00 +0000 Subject: [PATCH] (svn r24674) -Fix (r24466, r23234) [FS#5358]: Downloaded heightmaps could not be used anymore. (sbr) --- src/network/core/tcp_content.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/network/core/tcp_content.cpp b/src/network/core/tcp_content.cpp index 07b28fd6dd..95b31fc9d2 100644 --- a/src/network/core/tcp_content.cpp +++ b/src/network/core/tcp_content.cpp @@ -241,9 +241,8 @@ Subdirectory GetContentInfoSubDir(ContentType type) case CONTENT_TYPE_BASE_MUSIC: return BASESET_DIR; - case CONTENT_TYPE_SCENARIO: - case CONTENT_TYPE_HEIGHTMAP: - return SCENARIO_DIR; + case CONTENT_TYPE_SCENARIO: return SCENARIO_DIR; + case CONTENT_TYPE_HEIGHTMAP: return HEIGHTMAP_DIR; } } #endif /* OPENTTD_MSU */