diff options
author | darkvater <darkvater@openttd.org> | 2005-01-04 14:54:27 +0000 |
---|---|---|
committer | darkvater <darkvater@openttd.org> | 2005-01-04 14:54:27 +0000 |
commit | 4f496b868108e67a135933c6127b9bedc38543b1 (patch) | |
tree | d02a53501e50d392b43bc3b2364f502a0cec3495 /table | |
parent | 86fa7720f98c35e56f0c86ddb969c642b9db64be (diff) | |
download | openttd-4f496b868108e67a135933c6127b9bedc38543b1.tar.xz |
(svn r1369) -Feature(ish): Added sprites for up/down and left/right arrows. Anywhere where there are horizontal scrollers these are now left/right arrows
Diffstat (limited to 'table')
-rw-r--r-- | table/sprites.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/table/sprites.h b/table/sprites.h index 5adbd731c..d56dc8217 100644 --- a/table/sprites.h +++ b/table/sprites.h @@ -51,6 +51,11 @@ enum Sprites { SPR_PIN_UP = SPR_OPENTTD_BASE + 62, // pin icon SPR_PIN_DOWN = SPR_OPENTTD_BASE + 63, SPR_WINDOW_RESIZE = SPR_OPENTTD_BASE + 94, // resize icon + // arrow icons pointing in all 4 directions + SPR_ARROW_DOWN = SPR_OPENTTD_BASE + 95, + SPR_ARROW_UP = SPR_OPENTTD_BASE + 96, + SPR_ARROW_LEFT = SPR_OPENTTD_BASE + 97, + SPR_ARROW_RIGHT = SPR_OPENTTD_BASE + 98, /* Network GUI sprites */ |