Import and rebase Max NewGRFs patch

Fix trailing whitespace, clean up code a bit

http://www.tt-forums.net/viewtopic.php?p=894743#p894743
This commit is contained in:
patch-import
2015-08-02 22:16:49 +01:00
committed by Jonathan G Rennison
parent 67366cf03d
commit 8f5ef2ae01
5 changed files with 32 additions and 2 deletions

View File

@@ -92,9 +92,11 @@ enum FileSlots {
/** 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 = 63,
LAST_GRF_SLOT = 255,
/** Maximum number of slots. */
MAX_FILE_SLOTS = 64
MAX_FILE_SLOTS = 256,
/** Maximum number of slots for network game */
MAX_FILE_SLOTS_IN_NETWORK = 63
};
/** Mode of the file dialogue window. */