mirror of
https://github.com/libretro/RetroArch
synced 2025-03-18 22:20:57 +00:00
Fix CXX_BUILD.
This commit is contained in:
parent
a3c5feaa68
commit
f4a374a209
@ -754,7 +754,7 @@ static void materialui_render_label_value(
|
||||
settings_t *settings = config_get_ptr();
|
||||
|
||||
/* Initial ticker configuration */
|
||||
ticker.type_enum = settings->uints.menu_ticker_type;
|
||||
ticker.type_enum = (enum menu_animation_ticker_type)settings->uints.menu_ticker_type;
|
||||
ticker.spacer = ticker_spacer;
|
||||
|
||||
label_str[0] = value_str[0] = '\0';
|
||||
@ -1171,7 +1171,7 @@ static void materialui_frame(void *data, video_frame_info_t *video_info)
|
||||
return;
|
||||
|
||||
/* Initial ticker configuration */
|
||||
ticker.type_enum = settings->uints.menu_ticker_type;
|
||||
ticker.type_enum = (enum menu_animation_ticker_type)settings->uints.menu_ticker_type;
|
||||
ticker.spacer = ticker_spacer;
|
||||
|
||||
usable_width = width - (mui->margin * 2);
|
||||
|
@ -852,7 +852,7 @@ static void ozone_draw_header(ozone_handle_t *ozone, video_frame_info_t *video_i
|
||||
unsigned timedate_offset = 0;
|
||||
|
||||
/* Initial ticker configuration */
|
||||
ticker.type_enum = settings->uints.menu_ticker_type;
|
||||
ticker.type_enum = (enum menu_animation_ticker_type)settings->uints.menu_ticker_type;
|
||||
ticker.spacer = ticker_spacer;
|
||||
|
||||
/* Separator */
|
||||
|
@ -420,7 +420,7 @@ border_iterate:
|
||||
float *icon_color = NULL;
|
||||
|
||||
/* Initial ticker configuration */
|
||||
ticker.type_enum = settings->uints.menu_ticker_type;
|
||||
ticker.type_enum = (enum menu_animation_ticker_type)settings->uints.menu_ticker_type;
|
||||
ticker.spacer = ticker_spacer;
|
||||
|
||||
entry_value[0] = '\0';
|
||||
|
@ -113,7 +113,7 @@ void ozone_draw_sidebar(ozone_handle_t *ozone, video_frame_info_t *video_info)
|
||||
settings_t *settings = config_get_ptr();
|
||||
|
||||
/* Initial ticker configuration */
|
||||
ticker.type_enum = settings->uints.menu_ticker_type;
|
||||
ticker.type_enum = (enum menu_animation_ticker_type)settings->uints.menu_ticker_type;
|
||||
ticker.spacer = ticker_spacer;
|
||||
|
||||
unsigned selection_y = 0;
|
||||
|
@ -1586,7 +1586,7 @@ static void rgui_render(void *data, bool is_idle)
|
||||
/* We use a single ticker for all text animations,
|
||||
* with the following configuration: */
|
||||
ticker.idx = menu_animation_get_ticker_idx();
|
||||
ticker.type_enum = settings->uints.menu_ticker_type;
|
||||
ticker.type_enum = (enum menu_animation_ticker_type)settings->uints.menu_ticker_type;
|
||||
ticker.spacer = ticker_spacer;
|
||||
|
||||
/* If thumbnails are enabled and we are viewing a playlist,
|
||||
|
@ -2815,7 +2815,7 @@ static int xmb_draw_item(
|
||||
settings_t *settings = config_get_ptr();
|
||||
|
||||
/* Initial ticker configuration */
|
||||
ticker.type_enum = settings->uints.menu_ticker_type;
|
||||
ticker.type_enum = (enum menu_animation_ticker_type)settings->uints.menu_ticker_type;
|
||||
ticker.spacer = ticker_spacer;
|
||||
|
||||
if (!node)
|
||||
|
Loading…
x
Reference in New Issue
Block a user