Skip to content

Commit

Permalink
MSBuild fix part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
temisu committed Jun 29, 2024
1 parent 0ae1673 commit bae7c94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IceDecompressor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ void IceDecompressor::decompressInternal(Buffer &rawData,bool useBytes)
for (uint32_t j=0;j<4U;j++)
{
rawData[i+j*2U]=values[j]>>8U;
rawData[i+j*2U+1U]=values[j];
rawData[i+j*2U+1U]=uint8_t(values[j]);
}
}
}
Expand Down

0 comments on commit bae7c94

Please sign in to comment.