diff options
-rw-r--r-- | application/MultiMC.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/application/MultiMC.cpp b/application/MultiMC.cpp index fb82510d..d5779321 100644 --- a/application/MultiMC.cpp +++ b/application/MultiMC.cpp @@ -720,6 +720,13 @@ void MultiMC::installUpdates(const QString updateFilesDir, GoUpdate::OperationLi // replace = move original out to backup, if it exists, move the new file in its place case GoUpdate::Operation::OP_REPLACE: { +#ifdef Q_OS_WIN32 + // hack for people renaming the .exe because ... reasons :) + if(op.dest == "MultiMC.exe") + { + op.dest = QFileInfo(applicationFilePath()).fileName(); + } +#endif QFileInfo replaced (FS::PathCombine(root(), op.dest)); #ifdef Q_OS_WIN32 if(QSysInfo::windowsVersion() < QSysInfo::WV_VISTA) |