From 496ebaad0ed0a714a10151ca05b431433c569ef3 Mon Sep 17 00:00:00 2001 From: chaoskagami Date: Mon, 1 Aug 2016 20:54:51 -0400 Subject: [PATCH] Ambiguity in text. Screw ... --- source/option.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/option.c b/source/option.c index 2abcb06..29b46d5 100644 --- a/source/option.c +++ b/source/option.c @@ -78,7 +78,7 @@ load_config() if (!(conf_handle = fopen(PATH_CONFIG, "r"))) { fprintf(BOTTOM_SCREEN, "Config file is missing:\n" " %s\n" - "Will create it with defaults.\n", + "Regenerating with defaults.\n", PATH_CONFIG); regenerate_config(); } else { @@ -99,7 +99,7 @@ load_config() if (config.config_ver < config_version) { fprintf(BOTTOM_SCREEN, "Config file has outdated version:\n" " %s\n" - "Regenerating with defaults...\n", + "Regenerating with defaults.\n", PATH_CONFIG); f_unlink(PATH_CONFIG); regenerate_config(); @@ -117,8 +117,6 @@ load_config() void save_config() { - fprintf(stderr, "Saving config...\n"); - write_file(enable_list, PATH_TEMP "/PATCHENABLE", FCRAM_SPACING / 2); f_unlink(PATH_CONFIG); @@ -132,4 +130,6 @@ save_config() fclose(conf_handle); config.options[OPTION_RECONFIGURED] = 1; // Save caches on boot. + + fprintf(stderr, "Saved config successfully.\n"); } -- 2.39.5