5
0
mirror of synced 2024-11-24 06:50:10 +01:00

Fix grayscale texbins with alpha

Grayscale textures in jubeat that had a transparent background were being extracted with black backgrounds.
This commit is contained in:
camprevail 2024-11-16 16:04:59 -05:00
parent fb55c4b813
commit 216eda8c3a
No known key found for this signature in database
GPG Key ID: AE88A69C341095B6

View File

@ -337,7 +337,7 @@ namespace gitadora_textool
{
for (int i = 0; i < 256; i++)
{
Color c = Color.FromArgb((byte)i, (byte)i, (byte)i);
Color c = Color.FromArgb((byte)i, (byte)i, (byte)i), (byte)i);
entries[i] = c;
}
} else