From 476f7e560b30836535dc33a9164e053b5f912690 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 29 Sep 2017 16:49:41 +0200 Subject: [PATCH] Reorder some struct members --- menu/menu_animation.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/menu/menu_animation.h b/menu/menu_animation.h index e4a0e6e4d9..2f6c8aefbb 100644 --- a/menu/menu_animation.h +++ b/menu/menu_animation.h @@ -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);