diff options
Diffstat (limited to 'src/video_core/textures/astc.cpp')
| -rw-r--r-- | src/video_core/textures/astc.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/textures/astc.cpp b/src/video_core/textures/astc.cpp index 5c65844dd..c15548d34 100644 --- a/src/video_core/textures/astc.cpp +++ b/src/video_core/textures/astc.cpp | |||
| @@ -811,6 +811,8 @@ static void DecodeColorValues(u32* out, u8* data, const u32* modes, const u32 nP | |||
| 811 | 811 | ||
| 812 | // We now have enough to decode our s32eger sequence. | 812 | // We now have enough to decode our s32eger sequence. |
| 813 | std::vector<IntegerEncodedValue> decodedColorValues; | 813 | std::vector<IntegerEncodedValue> decodedColorValues; |
| 814 | decodedColorValues.reserve(32); | ||
| 815 | |||
| 814 | InputBitStream colorStream(data); | 816 | InputBitStream colorStream(data); |
| 815 | DecodeIntegerSequence(decodedColorValues, colorStream, range, nValues); | 817 | DecodeIntegerSequence(decodedColorValues, colorStream, range, nValues); |
| 816 | 818 | ||