diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2015-01-11 02:02:07 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2015-01-11 03:01:46 +0100 |
commit | 65364d2e2f40807fdd03ade25917f728adc0ef77 (patch) | |
tree | e2d2e5d0a7e329f50009a086959b4226fe27dde7 /priv_entries.h | |
parent | d590bfdcdfa8799439cffa41fc74346e9923b6e7 (diff) |
coding rules: stop at 78 colsrewrite
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'priv_entries.h')
-rw-r--r-- | priv_entries.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/priv_entries.h b/priv_entries.h index db76406..b26f968 100644 --- a/priv_entries.h +++ b/priv_entries.h @@ -40,7 +40,7 @@ struct entry_t black_magic_entries[] = { .children_cnt = 0, .action = { .f = cast_element, - .data = (enum element_t []) { ELEMENT_FIRE }, + .data = (enum element_t []) { ELEM_FIRE }, .target = TARGET_SINGLE | TARGET_TEAM, }, }, { @@ -48,7 +48,7 @@ struct entry_t black_magic_entries[] = { .children_cnt = 0, .action = { .f = cast_element, - .data = (enum element_t []) { ELEMENT_FIRE }, + .data = (enum element_t []) { ELEM_FIRE }, .target = TARGET_SINGLE | TARGET_TEAM, }, }, { @@ -56,7 +56,7 @@ struct entry_t black_magic_entries[] = { .children_cnt = 0, .action = { .f = cast_element, - .data = (enum element_t []) { ELEMENT_FIRE }, + .data = (enum element_t []) { ELEM_FIRE }, .target = TARGET_SINGLE | TARGET_TEAM, }, }, { @@ -64,7 +64,7 @@ struct entry_t black_magic_entries[] = { .children_cnt = 0, .action = { .f = cast_element, - .data = (enum element_t []) { ELEMENT_ICE }, + .data = (enum element_t []) { ELEM_ICE }, .target = TARGET_SINGLE | TARGET_TEAM, }, }, { @@ -72,7 +72,7 @@ struct entry_t black_magic_entries[] = { .children_cnt = 0, .action = { .f = cast_element, - .data = (enum element_t []) { ELEMENT_ICE }, + .data = (enum element_t []) { ELEM_ICE }, .target = TARGET_SINGLE | TARGET_TEAM, }, }, { @@ -80,7 +80,7 @@ struct entry_t black_magic_entries[] = { .children_cnt = 0, .action = { .f = cast_element, - .data = (enum element_t []) { ELEMENT_ICE }, + .data = (enum element_t []) { ELEM_ICE }, .target = TARGET_SINGLE | TARGET_TEAM, }, }, { @@ -88,7 +88,7 @@ struct entry_t black_magic_entries[] = { .children_cnt = 0, .action = { .f = cast_element, - .data = (enum element_t []) { ELEMENT_THUNDER }, + .data = (enum element_t []) { ELEM_THUNDER }, .target = TARGET_SINGLE | TARGET_TEAM, }, }, { @@ -96,7 +96,7 @@ struct entry_t black_magic_entries[] = { .children_cnt = 0, .action = { .f = cast_element, - .data = (enum element_t []) { ELEMENT_THUNDER }, + .data = (enum element_t []) { ELEM_THUNDER }, .target = TARGET_SINGLE | TARGET_TEAM, }, }, { @@ -104,7 +104,7 @@ struct entry_t black_magic_entries[] = { .children_cnt = 0, .action = { .f = cast_element, - .data = (enum element_t []) { ELEMENT_THUNDER }, + .data = (enum element_t []) { ELEM_THUNDER }, .target = TARGET_SINGLE | TARGET_TEAM, }, }, { @@ -112,7 +112,7 @@ struct entry_t black_magic_entries[] = { .children_cnt = 0, .action = { .f = cast_element, - .data = (enum element_t []) { ELEMENT_WATER }, + .data = (enum element_t []) { ELEM_WATER }, .target = TARGET_SINGLE | TARGET_TEAM, }, }, { @@ -120,7 +120,7 @@ struct entry_t black_magic_entries[] = { .children_cnt = 0, .action = { .f = cast_element, - .data = (enum element_t []) { ELEMENT_WATER }, + .data = (enum element_t []) { ELEM_WATER }, .target = TARGET_SINGLE | TARGET_TEAM, }, }, { @@ -128,7 +128,7 @@ struct entry_t black_magic_entries[] = { .children_cnt = 0, .action = { .f = cast_element, - .data = (enum element_t []) { ELEMENT_WATER }, + .data = (enum element_t []) { ELEM_WATER }, .target = TARGET_SINGLE | TARGET_TEAM, }, }, { @@ -136,7 +136,7 @@ struct entry_t black_magic_entries[] = { .children_cnt = 0, .action = { .f = cast_element, - .data = (enum element_t []) { ELEMENT_NONE }, + .data = (enum element_t []) { ELEM_NONE }, .target = TARGET_SINGLE, }, }, { @@ -144,7 +144,7 @@ struct entry_t black_magic_entries[] = { .children_cnt = 0, .action = { .f = cast_element, - .data = (enum element_t []) { ELEMENT_NONE }, + .data = (enum element_t []) { ELEM_NONE }, .target = TARGET_TEAM, }, }, { |