diff options
author | rubidium <rubidium@openttd.org> | 2009-03-18 01:06:48 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-03-18 01:06:48 +0000 |
commit | 35e4dc0f4bab5b7aca2ad6b1ec9914d88a576c06 (patch) | |
tree | e401e9db6202abee756661f34326d20ac3df4ca8 /src/table | |
parent | c0a44985180acc6c85c4e1f53a80d1f011bb4f7a (diff) | |
download | openttd-35e4dc0f4bab5b7aca2ad6b1ec9914d88a576c06.tar.xz |
(svn r15760) -Codechange [FS#2704]: support that the resize box is at the left side of the window too (based on work by Alberth)
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/sprites.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/table/sprites.h b/src/table/sprites.h index 5c14d88ba..c9ca6c98d 100644 --- a/src/table/sprites.h +++ b/src/table/sprites.h @@ -49,7 +49,7 @@ enum Sprites { /* Extra graphic spritenumbers */ SPR_OPENTTD_BASE = 4896, - OPENTTD_SPRITE_COUNT = 149, + OPENTTD_SPRITE_COUNT = 150, /* Halftile-selection sprites */ SPR_HALFTILE_SELECTION_FLAT = SPR_OPENTTD_BASE, @@ -62,7 +62,8 @@ enum Sprites { SPR_BOX_EMPTY = SPR_OPENTTD_BASE + 41, SPR_BOX_CHECKED = SPR_OPENTTD_BASE + 42, SPR_WARNING_SIGN = SPR_OPENTTD_BASE + 43, // warning sign (shown if there are any newgrf errors) - SPR_WINDOW_RESIZE = SPR_OPENTTD_BASE + 44, // resize icon + SPR_WINDOW_RESIZE_RIGHT= SPR_OPENTTD_BASE + 44, // resize icon to the right + SPR_WINDOW_RESIZE_LEFT = SPR_OPENTTD_BASE + 149, // resize icon to the left /* Arrow icons pointing in all 4 directions */ SPR_ARROW_DOWN = SPR_OPENTTD_BASE + 45, SPR_ARROW_UP = SPR_OPENTTD_BASE + 46, |