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:
parent
fb55c4b813
commit
216eda8c3a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user