From 568021192cd7e7037b050ed8b35c3e926baa13be Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 25 Jul 2016 07:54:31 +0200 Subject: [PATCH] Fix cheevos boolean settings not being read --- configuration.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.c b/configuration.c index 9e4f529d47..0707203b64 100644 --- a/configuration.c +++ b/configuration.c @@ -1364,7 +1364,7 @@ static bool config_load_file(const char *path, bool set_defaults) { "video_force_srgb_enable", &settings->video.force_srgb_disable}, { "core_set_supports_no_game_enable", &settings->set_supports_no_game_enable}, { "video_shared_context", &settings->video.shared_context}, -#ifdef CHEEVOS +#ifdef HAVE_CHEEVOS { "cheevos_enable", &settings->cheevos.enable}, { "cheevos_test_unofficial", &settings->cheevos.test_unofficial}, { "cheevos_hardcore_mode_enable", &settings->cheevos.hardcore_mode_enable},