retro_get_cpu_features - don't spam log

This commit is contained in:
twinaphex 2016-05-10 08:55:28 +02:00
parent b79b2dca13
commit 288dbe2bd0

View File

@ -564,7 +564,5 @@ uint64_t retro_get_cpu_features(void)
if (cpu & RETRO_SIMD_VFPU) strlcat(buf, " VFPU", sizeof(buf));
if (cpu & RETRO_SIMD_PS) strlcat(buf, " PS", sizeof(buf));
RARCH_LOG("[CPUID]: Features:%s\n", buf);
return cpu;
}