mirror of
https://github.com/libretro/RetroArch.git
synced 2024-12-02 05:16:33 +00:00
Small CXX_BUILD fix.
This commit is contained in:
parent
93bfaebcb3
commit
33f718ce4c
@ -100,8 +100,8 @@ static bool ft_renderer_create_atlas(ft_renderer_t *handle)
|
||||
|
||||
if (buffer[i])
|
||||
memcpy(buffer[i], slot->bitmap.buffer, slot->bitmap.rows * pitches[i]);
|
||||
max_width = max(max_width, slot->bitmap.width);
|
||||
max_height = max(max_height, slot->bitmap.rows);
|
||||
max_width = max(max_width, (unsigned)slot->bitmap.width);
|
||||
max_height = max(max_height, (unsigned)slot->bitmap.rows);
|
||||
}
|
||||
|
||||
handle->atlas.width = max_width * ATLAS_COLS;
|
||||
|
Loading…
Reference in New Issue
Block a user