1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-25 05:47:45 +00:00

Fix int conversion that's wrecking MSVC builds

This commit is contained in:
Joshua Goins 2024-08-22 21:07:41 -04:00
parent edffbd13dc
commit 5077ae188c

View file

@ -120,8 +120,8 @@ QCoro::Task<bool> Patcher::patch(const physis_PatchList &patchList)
.version = QLatin1String(patch.version),
.path = patchPath,
.hashes = convertedHashes,
.hashBlockSize = patch.hash_block_size,
.length = patch.length,
.hashBlockSize = static_cast<long>(patch.hash_block_size),
.length = static_cast<long>(patch.length),
.isBoot = isBoot()};
qDebug(ASTRA_PATCHER) << "Adding a queued patch:";