mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
Remove double ';'
This commit is contained in:
parent
ad1aa59ce1
commit
2a36fa0855
@ -54,7 +54,7 @@ static std::string build_stage_source(
|
||||
return "";
|
||||
|
||||
/* Version header. */
|
||||
str << lines->elems[0].data;;
|
||||
str << lines->elems[0].data;
|
||||
str << '\n';
|
||||
|
||||
for (i = 1; i < lines->size; i++)
|
||||
|
@ -1604,7 +1604,7 @@ static void ffmpeg_flush_video(ffmpeg_t *handle)
|
||||
static void ffmpeg_flush_buffers(ffmpeg_t *handle)
|
||||
{
|
||||
void *audio_buf = NULL;
|
||||
bool did_work = false;;
|
||||
bool did_work = false;
|
||||
void *video_buf = av_malloc(2 * handle->params.fb_width *
|
||||
handle->params.fb_height * handle->video.pix_size);
|
||||
size_t audio_buf_size = handle->config.audio_enable ?
|
||||
|
Loading…
Reference in New Issue
Block a user