Merge branch 'master' into jgrpp
# Conflicts: # src/fios.h
This commit is contained in:
11
src/fios.h
11
src/fios.h
@@ -81,22 +81,17 @@ extern LoadCheckData _load_check_data;
|
||||
|
||||
enum FileSlots {
|
||||
/**
|
||||
* Slot used for the GRF scanning and such. This slot cannot be reused
|
||||
* as it will otherwise cause issues when pressing "rescan directories".
|
||||
* It can furthermore not be larger than LAST_GRF_SLOT as that complicates
|
||||
* the testing for "too much NewGRFs".
|
||||
* Slot used for the GRF scanning and such.
|
||||
* This slot is used for all temporary accesses to files when scanning/testing files,
|
||||
* and thus cannot be used for files, which are continuously accessed during a game.
|
||||
*/
|
||||
CONFIG_SLOT = 0,
|
||||
/** Slot for the sound. */
|
||||
SOUND_SLOT = 1,
|
||||
/** First slot usable for (New)GRFs used during the game. */
|
||||
FIRST_GRF_SLOT = 2,
|
||||
/** Last slot usable for (New)GRFs used during the game. */
|
||||
LAST_GRF_SLOT = 255,
|
||||
/** Maximum number of slots. */
|
||||
MAX_FILE_SLOTS = 256,
|
||||
/** Maximum number of slots for network game */
|
||||
MAX_FILE_SLOTS_IN_NETWORK = 63
|
||||
};
|
||||
|
||||
/** Deals with finding savegames */
|
||||
|
Reference in New Issue
Block a user