Fixed stupid copy&paste error. Fixes error about missing VapourSynth when Avisynth is *not* installed (but VapourSynth is).

This commit is contained in:
LoRd_MuldeR 2016-04-28 19:28:51 +02:00
parent 669a915118
commit f6e8d2e113
3 changed files with 5 additions and 2 deletions

View File

@ -2,6 +2,9 @@
Simple x264/x265 Launcher version history
-----------------------------------------
Version 2.69 [2016-04-28]
* Fixed a VapourSynth error, when Avisynth is *not* installed
Version 2.69 [2016-04-23]
* Updated x264 to revision 2692
* Updated x265 to version 1.9+140

View File

@ -26,7 +26,7 @@
#define VER_X264_MAJOR 2
#define VER_X264_MINOR 6
#define VER_X264_PATCH 9
#define VER_X264_BUILD 1024
#define VER_X264_BUILD 1025
#define VER_X264_PORTABLE_EDITION (0)

View File

@ -680,7 +680,7 @@ void AddJobDialog::accept(void)
}
else if(sourceType == MediaInfo::FILETYPE_VAPOURSYNTH)
{
if(!m_sysinfo->hasAvisynth())
if(!m_sysinfo->hasVapourSynth())
{
if(QMessageBox::warning(this, tr("VapurSynth unsupported!"), tr("<nobr>A VapourSynth script was selected as input, although VapourSynth is <b>not/<b> available!</nobr>"), tr("Abort"), tr("Ignore (at your own risk!)")) != 1)
{