Skip to content

Commit

Permalink
Reorder some struct members
Browse files Browse the repository at this point in the history
  • Loading branch information
inactive123 committed Sep 29, 2017
1 parent 8bf7412 commit 476f7e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions menu/menu_animation.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 476f7e5

Please sign in to comment.