diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2015-01-11 01:55:32 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2015-01-11 01:55:32 +0100 |
commit | d590bfdcdfa8799439cffa41fc74346e9923b6e7 (patch) | |
tree | e171fd414935877fd3ddd1f79204dac22368e32d /structures.h | |
parent | b37b127792e09cb7148200e0bccf294892e9a889 (diff) |
renamed the rects inside the struct positions
it is redundant in thus inconvenient to repeat 'position' inside a
structure named position.
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'structures.h')
-rw-r--r-- | structures.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/structures.h b/structures.h index b26fffa..a577b3c 100644 --- a/structures.h +++ b/structures.h @@ -52,21 +52,21 @@ struct surfaces { typedef struct positions POSITIONS; struct positions { - SDL_Rect Vpositionmenupaladin; - SDL_Rect Vpositionmenuvoleur; - SDL_Rect Vpositionmenupretre; - SDL_Rect Vpositiontextemenu; - SDL_Rect Vpositioncadrecible; - SDL_Rect Vpositionnomcible; - SDL_Rect Vpositionactivedesactive[16]; - SDL_Rect Vpositionpvcible; - SDL_Rect Vpositionpmcible; - SDL_Rect Vpositioncadreactions; - SDL_Rect Vpositionactionselectionnee[3]; - SDL_Rect Vpositionnomactions[3]; - SDL_Rect Vpositionmort; - SDL_Rect Vpositiondegats; - SDL_Rect Vpositionmap_item[15][11]; + SDL_Rect menupaladin; + SDL_Rect menuvoleur; + SDL_Rect menupretre; + SDL_Rect textemenu; + SDL_Rect cadrecible; + SDL_Rect nomcible; + SDL_Rect activedesactive[16]; + SDL_Rect pvcible; + SDL_Rect pmcible; + SDL_Rect cadreactions; + SDL_Rect actionselectionnee[3]; + SDL_Rect nomactions[3]; + SDL_Rect mort; + SDL_Rect degats; + SDL_Rect map_item[15][11]; SDL_Rect last_cursor; }; |