mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 22:11:26 +12:00
VS: fix compilation on VS 17.4
This commit is contained in:
parent
3236931416
commit
ff082b98cb
1 changed files with 1 additions and 1 deletions
|
@ -294,7 +294,7 @@ std::vector<u8> tar_object::save_directory(const std::string& src_dir, std::vect
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ptr += utils::aligned_div(std::bit_width(i), 3) - 1;
|
ptr += utils::aligned_div(static_cast<u32>(std::bit_width(i)), 3) - 1;
|
||||||
|
|
||||||
for (; i; ptr--, i /= 8)
|
for (; i; ptr--, i /= 8)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue