From 1f7b338ce0df8bc355f92e29c7137669a9b8e5c1 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 24 Aug 2020 17:04:33 +0200 Subject: [PATCH] Reorder structs, alignment --- retroarch.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/retroarch.h b/retroarch.h index 0795ee0150..bf91f937f4 100644 --- a/retroarch.h +++ b/retroarch.h @@ -1152,6 +1152,11 @@ typedef struct video_frame_info struct { + /* Drop shadow offset. + * If both are 0, no drop shadow will be rendered. */ + int drop_x, drop_y; + /* ABGR. Use the macros. */ + uint32_t color; float x; float y; float scale; @@ -1159,12 +1164,6 @@ typedef struct video_frame_info float drop_mod; /* Drop shadow alpha */ float drop_alpha; - - /* Drop shadow offset. - * If both are 0, no drop shadow will be rendered. */ - int drop_x, drop_y; - /* ABGR. Use the macros. */ - uint32_t color; enum text_alignment text_align; bool full_screen; } osd_stat_params;