mirror of
https://github.com/libretro/RetroArch
synced 2025-01-17 19:14:56 +00:00
Apply static to some local-only functions
This commit is contained in:
parent
56cce66121
commit
55e9c2b593
@ -177,7 +177,7 @@ retro_get_cpu_features_t perf_get_cpu_features_cb;
|
||||
|
||||
#endif
|
||||
|
||||
resampler_simd_mask_t resampler_get_cpu_features(void)
|
||||
static resampler_simd_mask_t resampler_get_cpu_features(void)
|
||||
{
|
||||
#ifdef RARCH_INTERNAL
|
||||
return rarch_get_cpu_features();
|
||||
|
@ -62,7 +62,7 @@ static float easing_out_cubic(float t, float b, float c, float d)
|
||||
return c * (pow(t / d - 1, 3) + 1) + b;
|
||||
}
|
||||
|
||||
float easing_in_out_cubic(float t, float b, float c, float d)
|
||||
static float easing_in_out_cubic(float t, float b, float c, float d)
|
||||
{
|
||||
t = t / d * 2;
|
||||
if (t < 1)
|
||||
|
@ -163,7 +163,7 @@ static void menu_entries_content_list_push(
|
||||
string_list_free(str_list);
|
||||
}
|
||||
|
||||
int menu_entries_push_cores_list(file_list_t *list, core_info_t *info,
|
||||
static int menu_entries_push_cores_list(file_list_t *list, core_info_t *info,
|
||||
const char *path, bool push_databases_enable)
|
||||
{
|
||||
size_t i;
|
||||
|
Loading…
Reference in New Issue
Block a user