From 216eda8c3a7b14967953a4ed26fb4fa7bf44e3f4 Mon Sep 17 00:00:00 2001 From: camprevail Date: Sat, 16 Nov 2024 16:04:59 -0500 Subject: [PATCH] Fix grayscale texbins with alpha Grayscale textures in jubeat that had a transparent background were being extracted with black backgrounds. --- gitadora-textool/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitadora-textool/Program.cs b/gitadora-textool/Program.cs index ca0a033..635f08b 100644 --- a/gitadora-textool/Program.cs +++ b/gitadora-textool/Program.cs @@ -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