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:
parent
edffbd13dc
commit
5077ae188c
1 changed files with 2 additions and 2 deletions
|
@ -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:";
|
||||
|
|
Loading…
Add table
Reference in a new issue