(svn r24491) -Fix: compilation error with networking disabled

This commit is contained in:
rubidium 2012-08-21 19:03:21 +00:00
parent 7284d716bc
commit 4563c50c91
2 changed files with 1 additions and 2 deletions

View File

@ -181,6 +181,4 @@ extern const TextColour _fios_colours[];
void BuildFileList();
void SetFiosType(const byte fiostype);
const char *FindScenario(const ContentInfo *ci, bool md5sum);
#endif /* FIOS_H */

View File

@ -130,6 +130,7 @@ const char *ContentInfo::GetTextfile(TextfileType type) const
break;
case CONTENT_TYPE_SCENARIO:
case CONTENT_TYPE_HEIGHTMAP:
extern const char *FindScenario(const ContentInfo *ci, bool md5sum);
tmp = FindScenario(this, true);
break;
}