From 288dbe2bd0229964f3394044fd7ccf7101c683ba Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 10 May 2016 08:55:28 +0200 Subject: [PATCH] retro_get_cpu_features - don't spam log --- performance.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/performance.c b/performance.c index 5cfe6327f0..fcbc516359 100644 --- a/performance.c +++ b/performance.c @@ -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; }