diff options
| -rw-r--r-- | src/video_core/host_shaders/astc_decoder.comp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/host_shaders/astc_decoder.comp b/src/video_core/host_shaders/astc_decoder.comp index ca93dc2a2..fd38dcfe5 100644 --- a/src/video_core/host_shaders/astc_decoder.comp +++ b/src/video_core/host_shaders/astc_decoder.comp | |||
| @@ -88,7 +88,7 @@ int color_bitsread = 0; | |||
| 88 | #define VECTOR_ARRAY_SIZE DIVCEIL(ARRAY_NUM_ELEMENTS * 2, 4) | 88 | #define VECTOR_ARRAY_SIZE DIVCEIL(ARRAY_NUM_ELEMENTS * 2, 4) |
| 89 | uvec4 result_vector[VECTOR_ARRAY_SIZE]; | 89 | uvec4 result_vector[VECTOR_ARRAY_SIZE]; |
| 90 | 90 | ||
| 91 | int result_index = 0; | 91 | uint result_index = 0; |
| 92 | uint result_vector_max_index; | 92 | uint result_vector_max_index; |
| 93 | bool result_limit_reached = false; | 93 | bool result_limit_reached = false; |
| 94 | 94 | ||