Cleanup some strings

This commit is contained in:
twinaphex 2016-07-01 10:01:58 +02:00
parent 303897924c
commit 928eb582f6

View File

@ -78,7 +78,7 @@ static bool init_playback(bsv_movie_t *handle, const char *path)
if (!handle->file)
{
RARCH_ERR("Could not open BSV file \"%s\" for playback.\n", path);
RARCH_ERR("Could not open BSV file for playback, path : \"%s\".\n", path);
return false;
}
@ -148,7 +148,7 @@ static bool init_record(bsv_movie_t *handle, const char *path)
handle->file = fopen(path, "wb");
if (!handle->file)
{
RARCH_ERR("Could not open BSV \"%s\" for recording.\n", path);
RARCH_ERR("Could not open BSV file for recording, path : \"%s\".\n", path);
return false;
}