Turn function static

This commit is contained in:
libretroadmin 2023-05-08 23:20:19 +02:00
parent e613d05da7
commit 45947a0534
2 changed files with 1 additions and 3 deletions

View File

@ -180,7 +180,7 @@ static bool gfx_display_check_compatibility(
return false;
}
float gfx_display_get_dpi_scale_internal(
static float gfx_display_get_dpi_scale_internal(
unsigned width, unsigned height)
{
float dpi;

View File

@ -314,8 +314,6 @@ float gfx_display_get_adjusted_scale(
gfx_display_t *p_disp,
float base_scale, float scale_factor, unsigned width);
float gfx_display_get_dpi_scale_internal(unsigned width, unsigned height);
float gfx_display_get_dpi_scale(
gfx_display_t *p_disp,
void *settings_data,