From 88eea511dba5137292d4e5442f73b133af42164a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 3 Sep 2016 07:40:57 +0200 Subject: [PATCH] Remove if 0 blocks --- input/input_autodetect.c | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/input/input_autodetect.c b/input/input_autodetect.c index ca5cbe0318..39a7db4190 100644 --- a/input/input_autodetect.c +++ b/input/input_autodetect.c @@ -101,18 +101,12 @@ static int input_try_autoconfigure_joypad_from_conf(config_file_t *conf, && input_pid != 0) { score += 3; -#if 0 - RARCH_LOG("Autodetect: VID/PID match score=%d\n", score); -#endif } /* Check for name match */ if (string_is_equal(ident, params->name)) { score += 2; -#if 0 - RARCH_LOG("Autodetect: exact name match score=%d\n", score); -#endif } else { @@ -120,15 +114,8 @@ static int input_try_autoconfigure_joypad_from_conf(config_file_t *conf, && !strncmp(params->name, ident, strlen(ident))) { score += 1; -#if 0 - RARCH_LOG("Autodetect: partial name match score=%d\n", score); -#endif } } -#if 0 - RARCH_LOG("Autodetect: configuration file: %s score: %d\n", - conf->path, score); -#endif return score; }