Fixed path to auto-updater tools.

This commit is contained in:
LoRd_MuldeR 2014-02-26 01:08:59 +01:00
parent 1decd835d9
commit 20db251b94
2 changed files with 3 additions and 3 deletions

View File

@ -25,8 +25,8 @@
#define VER_X264_MAJOR 2
#define VER_X264_MINOR 3
#define VER_X264_PATCH 2
#define VER_X264_BUILD 797
#define VER_X264_PATCH 3
#define VER_X264_BUILD 798
#define VER_X264_PORTABLE_EDITION (0)

View File

@ -474,7 +474,7 @@ bool UpdaterDialog::checkBinaries(QString &wgetBin, QString &gpgvBin)
for(size_t i = 0; FILE_INFO[i].name; i++)
{
const QString binPath = QString("%1/common/%2").arg(m_sysinfo->getAppPath(), QString::fromLatin1(FILE_INFO[i].name));
const QString binPath = QString("%1/toolset/common/%2").arg(m_sysinfo->getAppPath(), QString::fromLatin1(FILE_INFO[i].name));
if(okay = okay && checkFileHash(binPath, FILE_INFO[i].hash))
{
binaries.insert(FILE_INFO[i].name, binPath);