• R/O
  • HTTP
  • SSH
  • HTTPS

x264-launcher: Commit

Simple x264 Launcher development repository


Commit MetaInfo

Revisióncb42e52fb114e526ae37616dfa0a7400224d4066 (tree)
Tiempo2019-07-22 22:46:29
Autorlordmulder <mulder2@gmx....>
Commiterlordmulder

Log Message

Fixed detection of "portable" VapourSynth.

Cambiar Resumen

Diferencia incremental

--- a/src/thread_vapoursynth.cpp
+++ b/src/thread_vapoursynth.cpp
@@ -186,7 +186,7 @@ int VapourSynthCheckThread::threadMain(void)
186186 //Look for "portable" VapourSynth version
187187 for (size_t i = 0; i < 2U; i++)
188188 {
189- const QString vpsPortableDir = QString("%1/extra/VapourSynth-%u").arg(QCoreApplication::applicationDirPath(), VPS_BITNESS(i));
189+ const QString vpsPortableDir = QString("%1/extra/VapourSynth-%2").arg(QCoreApplication::applicationDirPath(), QString::number(VPS_BITNESS(i)));
190190 if (VALID_DIR(vpsPortableDir))
191191 {
192192 const QFileInfo vpsPortableFile = QFileInfo(QString("%1/vspipe.exe").arg(vpsPortableDir));
@@ -197,7 +197,7 @@ int VapourSynthCheckThread::threadMain(void)
197197 }
198198 }
199199
200- //Read VapourSynth path from registry
200+ //Read VapourSynth path from the registry
201201 if (vapoursynthPath.isEmpty())
202202 {
203203 for (size_t i = 0; i < 3U; i++)
Show on old repository browser