1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-25 13:57: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), .version = QLatin1String(patch.version),
.path = patchPath, .path = patchPath,
.hashes = convertedHashes, .hashes = convertedHashes,
.hashBlockSize = patch.hash_block_size, .hashBlockSize = static_cast<long>(patch.hash_block_size),
.length = patch.length, .length = static_cast<long>(patch.length),
.isBoot = isBoot()}; .isBoot = isBoot()};
qDebug(ASTRA_PATCHER) << "Adding a queued patch:"; qDebug(ASTRA_PATCHER) << "Adding a queued patch:";