Skip to content

Commit

Permalink
Remove some "not-so-serious" logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Themaister committed Sep 7, 2012
1 parent 29a1e7a commit 369431d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions file.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 369431d

Please sign in to comment.