No comemnt on this :/

This commit is contained in:
2026-01-07 18:42:16 +01:00
parent 022d69dc8e
commit 86461481ae

View File

@@ -164,12 +164,12 @@ CTRFF_API void DecodeImage(std::vector<ctrff::u8>& ret,
* by this we either extract the high or low one and multiply * by this we either extract the high or low one and multiply
* by 17 aka 0x11 to get the resulting A8 Value * by 17 aka 0x11 to get the resulting A8 Value
*/ */
ctrff::u8 a4 = src & 1 ? ((ret[src >> 1] >> 4) & 0xf) * 0x11 ctrff::u8 a4 = src & 1 ? ((pixels[src >> 1] >> 4) & 0xf) * 0x11
: (ret[src >> 1] & 0xf) * 0x11; : (pixels[src >> 1] & 0xf) * 0x11;
pixels[dst + 0] = a4; ret[dst + 0] = a4;
pixels[dst + 1] = a4; ret[dst + 1] = a4;
pixels[dst + 2] = a4; ret[dst + 2] = a4;
pixels[dst + 3] = 255; ret[dst + 3] = 255;
} }
} }
break; break;