summaryrefslogtreecommitdiff
path: root/src/table/palettes.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-05-13 09:44:44 +0000
committerrubidium <rubidium@openttd.org>2010-05-13 09:44:44 +0000
commit398418b8fa23ab59f5fc027a7dd6aeba9da4d7bb (patch)
tree54de30f4702263ee1489af162d6da840e35c0a87 /src/table/palettes.h
parent793b0f0736ac543fb1f6a7e9a4bfd678891e7374 (diff)
downloadopenttd-398418b8fa23ab59f5fc027a7dd6aeba9da4d7bb.tar.xz
(svn r19812) -Codechange: give some unnamed enums a name or, in case they consisted of unrelated values use static const (u)int
Diffstat (limited to 'src/table/palettes.h')
-rw-r--r--src/table/palettes.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/table/palettes.h b/src/table/palettes.h
index 5ab88df69..68f74377f 100644
--- a/src/table/palettes.h
+++ b/src/table/palettes.h
@@ -154,13 +154,11 @@ static const Colour _palettes[][256] = {
#define GET_PALETTE(x) _palettes[x]
/** Description of the length of the palette cycle animations */
-enum {
- EPV_CYCLES_DARK_WATER = 5, ///< length of the dark blue water animation
- EPV_CYCLES_LIGHTHOUSE = 4, ///< length of the lighthouse/stadium animation
- EPV_CYCLES_OIL_REFINERY = 7, ///< length of the oil refinery's fire animation
- EPV_CYCLES_FIZZY_DRINK = 5, ///< length of the fizzy drinks animation
- EPV_CYCLES_GLITTER_WATER = 15, ///< length of the glittery water animation
-};
+static const uint EPV_CYCLES_DARK_WATER = 5; ///< length of the dark blue water animation
+static const uint EPV_CYCLES_LIGHTHOUSE = 4; ///< length of the lighthouse/stadium animation
+static const uint EPV_CYCLES_OIL_REFINERY = 7; ///< length of the oil refinery's fire animation
+static const uint EPV_CYCLES_FIZZY_DRINK = 5; ///< length of the fizzy drinks animation
+static const uint EPV_CYCLES_GLITTER_WATER = 15; ///< length of the glittery water animation
/** Description of tables for the palette animation */
struct ExtraPaletteValues {