mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 23:11:14 +01:00
Merge pull request #8480 from JosJuice/volumeverifier-block-future
VolumeVerifier: Fix a copypaste error
This commit is contained in:
commit
bc449fb98f
@ -1122,7 +1122,7 @@ void VolumeVerifier::Process()
|
|||||||
if (m_block_index < m_blocks.size() &&
|
if (m_block_index < m_blocks.size() &&
|
||||||
m_blocks[m_block_index].offset < m_progress + bytes_to_read)
|
m_blocks[m_block_index].offset < m_progress + bytes_to_read)
|
||||||
{
|
{
|
||||||
m_md5_future = std::async(
|
m_block_future = std::async(
|
||||||
std::launch::async,
|
std::launch::async,
|
||||||
[this, read_succeeded, bytes_to_read](size_t block_index, u64 progress) {
|
[this, read_succeeded, bytes_to_read](size_t block_index, u64 progress) {
|
||||||
while (block_index < m_blocks.size() &&
|
while (block_index < m_blocks.size() &&
|
||||||
|
Loading…
x
Reference in New Issue
Block a user