From 369431d97d80b2483b2b38e8c89ce474512edc2d Mon Sep 17 00:00:00 2001 From: Themaister Date: Fri, 7 Sep 2012 21:58:53 +0200 Subject: [PATCH] Remove some "not-so-serious" logs. --- file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/file.c b/file.c index b6283b109f..a31eeb87a8 100644 --- a/file.c +++ b/file.c @@ -359,14 +359,14 @@ static void dump_to_file_desperate(const void *data, size_t size, int type) strlcat(path, ramtype2str(type), sizeof(path)); if (dump_to_file(path, data, size)) - RARCH_WARN("Succeeded in saving RAM data to \"%s\". Phew ... :D\n", path); + RARCH_WARN("Succeeded in saving RAM data to \"%s\".\n", path); else goto error; return; error: - RARCH_WARN("Failed ... Tough luck ... :(\n"); + RARCH_WARN("Failed ... Cannot recover save file.\n"); } bool save_state(const char *path)