(svn r6593) -Fix: [depot window] added sprites to the buttons, that lacked one

Also changed the sprites on some of the other buttons to make the buttons consistent
   Credits for this:
   Drawing: skidd13 (first sprite copied/heavily inspired by Bot_40)
   Grfencoding: peter1138
   Coding to apply the new sprites: peter1138 (modified by me)   
   Ideas:
    Born Acorn
    MeusH
    ValHallA|SW
    XeryusTC
  Sorry if I forgot to mention somebody
This commit is contained in:
bjarni
2006-09-30 21:23:34 +00:00
parent b312ea6239
commit 37ddda749a
4 changed files with 43 additions and 4 deletions

View File

@@ -75,12 +75,26 @@ enum Sprites {
SPR_CLONE_SHIP = SPR_OPENTTD_BASE + 92,
SPR_CLONE_TRAIN = SPR_OPENTTD_BASE + 92,
SPR_SELL_TRAIN = SPR_OPENTTD_BASE + 96,
SPR_SELL_ROADVEH = SPR_OPENTTD_BASE + 97,
SPR_SELL_SHIP = SPR_OPENTTD_BASE + 98,
SPR_SELL_AIRCRAFT = SPR_OPENTTD_BASE + 99,
SPR_SELL_ALL_TRAIN = SPR_OPENTTD_BASE + 100,
SPR_SELL_ALL_ROADVEH = SPR_OPENTTD_BASE + 101,
SPR_SELL_ALL_SHIP = SPR_OPENTTD_BASE + 102,
SPR_SELL_ALL_AIRCRAFT = SPR_OPENTTD_BASE + 103,
SPR_REPLACE_TRAIN = SPR_OPENTTD_BASE + 104,
SPR_REPLACE_ROADVEH = SPR_OPENTTD_BASE + 105,
SPR_REPLACE_SHIP = SPR_OPENTTD_BASE + 106,
SPR_REPLACE_AIRCRAFT = SPR_OPENTTD_BASE + 107,
SPR_SELL_CHAIN_TRAIN = SPR_OPENTTD_BASE + 108,
/* Network GUI sprites */
SPR_SQUARE = SPR_OPENTTD_BASE + 20, // colored square (used for newgrf compatibility)
SPR_LOCK = SPR_OPENTTD_BASE + 19, // lock icon (for password protected servers)
SPR_FLAGS_BASE = SPR_OPENTTD_BASE + 83, // start of the flags block (in same order as enum NetworkLanguage)
SPR_AIRPORTX_BASE = SPR_OPENTTD_BASE + 95, // The sprites used for other airport angles
SPR_AIRPORTX_BASE = SPR_OPENTTD_BASE + 109, // The sprites used for other airport angles
SPR_NEWAIRPORT_TARMAC = SPR_AIRPORTX_BASE,
SPR_NSRUNWAY1 = SPR_AIRPORTX_BASE + 1,
SPR_NSRUNWAY2 = SPR_AIRPORTX_BASE + 2,