1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-25 23:49:09 +00:00

(svn r2588) Codechange: Remove PLAYER_SEED_RANDOM

This commit is contained in:
ludde
2005-07-16 12:30:03 +00:00
parent 19cb5e054a
commit f12b3a0c18
7 changed files with 0 additions and 69 deletions

View File

@@ -123,12 +123,6 @@ static inline TileIndex RandomTileSeed(uint32 r) { return TILE_MASK(r); }
static inline TileIndex RandomTile(void) { return TILE_MASK(Random()); }
#ifdef PLAYER_SEED_RANDOM
void InitPlayerRandoms(void);
#endif
uint32 InteractiveRandom(void); /* Used for random sequences that are not the same on the other end of the multiplayer link */
uint InteractiveRandomRange(uint max);