mirror of
https://github.com/libretro/RetroArch
synced 2025-03-02 19:13:34 +00:00
Silence some warnings
This commit is contained in:
parent
ee50f6ba41
commit
68027c606e
@ -1612,6 +1612,7 @@ void gfx_widgets_frame(void *data)
|
||||
MSG_REWINDING);
|
||||
|
||||
if (runloop_is_slowmotion)
|
||||
{
|
||||
top_right_x_advance -= gfx_widgets_draw_indicator(
|
||||
p_dispwidget,
|
||||
p_disp,
|
||||
@ -1624,6 +1625,8 @@ void gfx_widgets_frame(void *data)
|
||||
(fps_show ? p_dispwidget->simple_widget_height : 0),
|
||||
top_right_x_advance,
|
||||
MSG_SLOW_MOTION);
|
||||
(void)top_right_x_advance;
|
||||
}
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(widgets); i++)
|
||||
{
|
||||
|
@ -565,9 +565,11 @@ static enum patch_error ips_apply_patch(
|
||||
|
||||
if (offset == patchlen - 3)
|
||||
{
|
||||
#if 0
|
||||
uint32_t size = patchdata[offset++] << 16;
|
||||
size |= patchdata[offset++] << 8;
|
||||
size |= patchdata[offset++] << 0;
|
||||
#endif
|
||||
return PATCH_SUCCESS;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user