Remove some "not-so-serious" logs.

This commit is contained in:
Themaister 2012-09-07 21:58:53 +02:00
parent 29a1e7ac27
commit 369431d97d

4
file.c
View File

@ -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)