mirror of https://github.com/OpenTTD/OpenTTD
(svn r24491) -Fix: compilation error with networking disabled
parent
7284d716bc
commit
4563c50c91
|
@ -181,6 +181,4 @@ extern const TextColour _fios_colours[];
|
||||||
void BuildFileList();
|
void BuildFileList();
|
||||||
void SetFiosType(const byte fiostype);
|
void SetFiosType(const byte fiostype);
|
||||||
|
|
||||||
const char *FindScenario(const ContentInfo *ci, bool md5sum);
|
|
||||||
|
|
||||||
#endif /* FIOS_H */
|
#endif /* FIOS_H */
|
||||||
|
|
|
@ -130,6 +130,7 @@ const char *ContentInfo::GetTextfile(TextfileType type) const
|
||||||
break;
|
break;
|
||||||
case CONTENT_TYPE_SCENARIO:
|
case CONTENT_TYPE_SCENARIO:
|
||||||
case CONTENT_TYPE_HEIGHTMAP:
|
case CONTENT_TYPE_HEIGHTMAP:
|
||||||
|
extern const char *FindScenario(const ContentInfo *ci, bool md5sum);
|
||||||
tmp = FindScenario(this, true);
|
tmp = FindScenario(this, true);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue