mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 07:59:42 +00:00
Cleanup some strings
This commit is contained in:
parent
303897924c
commit
928eb582f6
4
movie.c
4
movie.c
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user