(svn r22822) -Codechange: make a distinction between base sets and newgrfs for their directory

This commit is contained in:
rubidium
2011-08-24 13:33:49 +00:00
parent f45bf2d1af
commit c8167de1c2
10 changed files with 22 additions and 19 deletions

View File

@@ -198,7 +198,7 @@ enum GraphicsFileType {
};
/** All data of a graphics set. */
struct GraphicsSet : BaseSet<GraphicsSet, MAX_GFT, DATA_DIR> {
struct GraphicsSet : BaseSet<GraphicsSet, MAX_GFT, BASESET_DIR> {
PaletteType palette; ///< Palette of this graphics set
bool FillSetDetails(struct IniFile *ini, const char *path, const char *full_filename);
@@ -210,7 +210,7 @@ public:
};
/** All data of a sounds set. */
struct SoundsSet : BaseSet<SoundsSet, 1, DATA_DIR> {
struct SoundsSet : BaseSet<SoundsSet, 1, BASESET_DIR> {
};
/** All data/functions related with replacing the base sounds */