mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Merge pull request #4485 from ligfx/fixmin
DolphinQt2: InfoWidget: explicit type for std::min
This commit is contained in:
commit
827de2ed06
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ void InfoWidget::ComputeChecksum()
|
|||
if (progress->wasCanceled())
|
||||
return;
|
||||
|
||||
u64 read_size = std::min(file_data.size(), game_size - read_offset);
|
||||
u64 read_size = std::min<u64>(file_data.size(), game_size - read_offset);
|
||||
file->Read(read_offset, read_size, file_data.data());
|
||||
hash.addData(reinterpret_cast<char*>(file_data.data()), read_size);
|
||||
read_offset += read_size;
|
||||
|
|
Loading…
Add table
Reference in a new issue