Fix packing order issue (thanks @mrneo240!)
This commit is contained in:
parent
cf273eab42
commit
f349cd1b49
|
@ -55,7 +55,7 @@ void _glApplyColorTable() {
|
||||||
GLushort i = 0;
|
GLushort i = 0;
|
||||||
for(; i < src->width; ++i) {
|
for(; i < src->width; ++i) {
|
||||||
GLubyte* entry = &src->data[i * 4];
|
GLubyte* entry = &src->data[i * 4];
|
||||||
pvr_set_pal_entry(i, PACK_ARGB8888(entry[3], entry[1], entry[2], entry[0]));
|
pvr_set_pal_entry(i, PACK_ARGB8888(entry[3], entry[0], entry[1], entry[2]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user