forked from len0rd/rockbox
mpegplayer:
* use upper case for enum constants. * rename MPEG_START_TIME_SCROLL_DOWN/SCROLL_UP to MPEG_START_TIME_LEFT2/RIGHT2 as they are equivalent to MPEG_START_TIME_LEFT/RIGHT. * simplify some code. no functional changes. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24224 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a1b97086c5
commit
ead28e174e
4 changed files with 115 additions and 161 deletions
|
@ -31,16 +31,16 @@
|
|||
/* Generic states for when things are too simple to care about naming them */
|
||||
enum state_enum
|
||||
{
|
||||
state0 = 0,
|
||||
state1,
|
||||
state2,
|
||||
state3,
|
||||
state4,
|
||||
state5,
|
||||
state6,
|
||||
state7,
|
||||
state8,
|
||||
state9,
|
||||
STATE0 = 0,
|
||||
STATE1,
|
||||
STATE2,
|
||||
STATE3,
|
||||
STATE4,
|
||||
STATE5,
|
||||
STATE6,
|
||||
STATE7,
|
||||
STATE8,
|
||||
STATE9,
|
||||
};
|
||||
|
||||
/* Macros for comparing memory bytes to a series of constant bytes in an
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue