mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 09:59:59 +03:00
QDir::exists is not static in Qt 5.1.1
This commit is contained in:
parent
851a77d5bb
commit
df82d8fadb
1 changed files with 1 additions and 1 deletions
|
|
@ -374,7 +374,7 @@ void MultiMC::initGlobalSettings()
|
|||
QLOG_INFO() << "Using new FTB path";
|
||||
ftbDefault = PathCombine(QString::fromWCharArray(newBuf), "ftblauncher");
|
||||
}
|
||||
if (!QDir::exists(ftbDefault) || !QFile::exists(PathCombine(ftbDefault, "ftblaunch.cfg")))
|
||||
if (!QFile::exists(PathCombine(ftbDefault, "ftblaunch.cfg")))
|
||||
{
|
||||
if (!GetEnvironmentVariableW(L"APPDATA", buf, APPDATA_BUFFER_SIZE))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue