mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
(svn r19413) -Codechange: Merging RailtypeFlag enum (a bit number) with RailTypeFlags enum (had values only).
This commit is contained in:
parent
5e7c4398ae
commit
b8d6e893cb
11
src/rail.h
11
src/rail.h
@ -20,13 +20,12 @@
|
||||
#include "slope_type.h"
|
||||
#include "strings_type.h"
|
||||
|
||||
enum RailTypeFlag {
|
||||
RTF_CATENARY = 0, ///< Set if the rail type should have catenary drawn
|
||||
};
|
||||
|
||||
/** Railtype flags. */
|
||||
enum RailTypeFlags {
|
||||
RTFB_NONE = 0,
|
||||
RTFB_CATENARY = 1 << RTF_CATENARY,
|
||||
RTF_CATENARY = 0, ///< Bit number for drawing a catenary.
|
||||
|
||||
RTFB_NONE = 0, ///< All flags cleared.
|
||||
RTFB_CATENARY = 1 << RTF_CATENARY, ///< Value for drawing a catenary.
|
||||
};
|
||||
DECLARE_ENUM_AS_BIT_SET(RailTypeFlags);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user