mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 14:35:46 +00:00
astc: Increase integer encoded vector size
Invalid ASTC textures seem to write more bytes here, increase the size to something that can't make us push out of bounds.
This commit is contained in:
parent
185c16d893
commit
c0c51e4be0
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ struct IntegerEncodedValue {
|
|||
};
|
||||
};
|
||||
using IntegerEncodedVector = boost::container::static_vector<
|
||||
IntegerEncodedValue, 64,
|
||||
IntegerEncodedValue, 256,
|
||||
boost::container::static_vector_options<
|
||||
boost::container::inplace_alignment<alignof(IntegerEncodedValue)>,
|
||||
boost::container::throw_on_overflow<false>>::type>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue