mirror of
https://github.com/libretro/RetroArch
synced 2025-03-06 13:13:57 +00:00
Merge pull request #11146 from jdgleaver/comparison-warning-fix
'comparison of integer expressions of different signedness' warning fix
This commit is contained in:
commit
5d726bca45
@ -1756,7 +1756,7 @@ bool gfx_animation_ticker_smooth(gfx_animation_ctx_ticker_smooth_t *ticker)
|
||||
if (period_width < 0)
|
||||
goto end;
|
||||
|
||||
if (ticker->field_width < (3 * period_width))
|
||||
if (ticker->field_width < (3 * (unsigned)period_width))
|
||||
goto end;
|
||||
|
||||
/* Determine number of characters to copy */
|
||||
|
@ -43,7 +43,7 @@
|
||||
typedef struct
|
||||
{
|
||||
gfx_thumbnail_t *thumbnail;
|
||||
retro_time_t list_id;
|
||||
uint64_t list_id;
|
||||
} gfx_thumbnail_tag_t;
|
||||
|
||||
/* Setters */
|
||||
|
Loading…
x
Reference in New Issue
Block a user