Add back accidentally removed static from decode_565

This commit is contained in:
REDxEYE 2022-08-12 03:16:58 +03:00
parent 8e11a6144a
commit 1c3a1df632
2 changed files with 1 additions and 3 deletions

View File

@ -28,5 +28,3 @@ typedef struct {
INT8 a0, a1; INT8 a0, a1;
UINT8 lut[6]; UINT8 lut[6];
} bc5s_alpha; } bc5s_alpha;
rgba decode_565(UINT16 x);

View File

@ -28,7 +28,7 @@ bc1_color_load(bc1_color *dst, const UINT8 *src) {
dst->lut = LOAD32(src + 4); dst->lut = LOAD32(src + 4);
} }
rgba static rgba
decode_565(UINT16 x) { decode_565(UINT16 x) {
rgba c; rgba c;
int r, g, b; int r, g, b;