GSCapture: Fix incorrect format string for FFmpeg version

This commit is contained in:
Connor McLaughlin 2023-08-27 20:34:36 +10:00 committed by GitHub
parent 94670baa64
commit e703baf295
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ bool GSCapture::LoadFFmpeg(bool report_errors)
" libavcodec: {}\n"
" libavformat: {}\n"
" libavutil: {}\n"
" libswscale: {}\n",
" libswscale: {}\n"
" libswresample: {}\n", LIBAVCODEC_VERSION_MAJOR, LIBAVFORMAT_VERSION_MAJOR, LIBAVUTIL_VERSION_MAJOR,
LIBSWSCALE_VERSION_MAJOR, LIBSWRESAMPLE_VERSION_MAJOR));
}