mirror of
https://github.com/libretro/RetroArch
synced 2025-01-29 18:32:44 +00:00
Silence warnings/errors
This commit is contained in:
parent
5e4ce74000
commit
90775e7306
@ -32,6 +32,7 @@
|
||||
#endif
|
||||
|
||||
#include "../command.h"
|
||||
#include "../driver.h"
|
||||
#include "../retroarch.h"
|
||||
#include "../verbosity.h"
|
||||
#include "../configuration.h"
|
||||
|
@ -85,7 +85,7 @@ void convert_float_to_s16(int16_t *out,
|
||||
|
||||
void convert_float_to_s16_init_simd(void)
|
||||
{
|
||||
unsigned cpu = cpu_features_get();
|
||||
uint64_t cpu = cpu_features_get();
|
||||
|
||||
if (cpu & RETRO_SIMD_NEON)
|
||||
float_to_s16_neon_enabled = true;
|
||||
|
@ -84,7 +84,7 @@ void convert_s16_to_float(float *out,
|
||||
|
||||
void convert_s16_to_float_init_simd(void)
|
||||
{
|
||||
unsigned cpu = cpu_features_get();
|
||||
uint64_t cpu = cpu_features_get();
|
||||
|
||||
if (cpu & RETRO_SIMD_NEON)
|
||||
s16_to_float_neon_enabled = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user