mirror of
https://github.com/libretro/RetroArch
synced 2025-03-26 11:37:30 +00:00
CXX_BUILD - silence some warnings
This commit is contained in:
parent
8b4a41155d
commit
70bb4c69f3
@ -88,10 +88,10 @@ static void sdl_update_scaler(SDL_Surface *surf, struct scaler_ctx *scaler,
|
||||
unsigned height, unsigned pitch)
|
||||
{
|
||||
if (
|
||||
width != scaler->in_width
|
||||
|| height != scaler->in_height
|
||||
width != (unsigned)scaler->in_width
|
||||
|| height != (unsigned)scaler->in_height
|
||||
|| format != scaler->in_fmt
|
||||
|| pitch != scaler->in_stride
|
||||
|| pitch != (unsigned)scaler->in_stride
|
||||
)
|
||||
{
|
||||
scaler->in_fmt = format;
|
||||
|
Loading…
x
Reference in New Issue
Block a user