Reorder some struct members

This commit is contained in:
twinaphex 2017-09-29 16:49:41 +02:00
parent 8bf741257c
commit 476f7e560b

View File

@ -103,21 +103,21 @@ typedef struct menu_animation_ctx_subject
typedef struct menu_animation_ctx_entry
{
enum menu_animation_easing_type easing_enum;
uintptr_t tag;
float duration;
float target_value;
float *subject;
enum menu_animation_easing_type easing_enum;
uintptr_t tag;
tween_cb cb;
} menu_animation_ctx_entry_t;
typedef struct menu_animation_ctx_ticker
{
char *s;
bool selected;
size_t len;
uint64_t idx;
char *s;
const char *str;
bool selected;
} menu_animation_ctx_ticker_t;
bool menu_animation_update(float delta_time);