From 91d0c5b95a3237ec8102891f01aaab0e7667d7bb Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 7 Oct 2013 01:00:25 +0000 Subject: [PATCH] (RARCH_CONSOL) Get rid of more console config loading legacy code --- settings.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/settings.c b/settings.c index fd3a204342..03aad23b28 100644 --- a/settings.c +++ b/settings.c @@ -607,13 +607,6 @@ bool config_load_file(const char *path) /* TODO - will be refactored later to make it more clean - it's more * important that it works for consoles right now */ - for (unsigned i = 0; i < MAX_PLAYERS; i++) - { - char cfg[64]; - snprintf(cfg, sizeof(cfg), "input_device_p%u", i + 1); - CONFIG_GET_INT(input.device[i], cfg); - } - CONFIG_GET_BOOL_EXTERN(console.screen.gamma_correction, "gamma_correction"); bool msg_enable = false;