From c356649a699cb1e01ceb1b8146c9463ebe883353 Mon Sep 17 00:00:00 2001 From: "aliaksei.kalosha" Date: Tue, 18 Mar 2025 13:08:08 +0100 Subject: [PATCH] set default value for QuantizedPreviewWindow PSXBPP --- Editor/QuantizedPreviewWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Editor/QuantizedPreviewWindow.cs b/Editor/QuantizedPreviewWindow.cs index 1a2038c..e5fb939 100644 --- a/Editor/QuantizedPreviewWindow.cs +++ b/Editor/QuantizedPreviewWindow.cs @@ -14,7 +14,7 @@ namespace SplashEdit.EditorCode private Texture2D vramTexture; // VRAM representation of the texture private List clut; // Color Lookup Table (CLUT), stored as a 1D list private ushort[] indexedPixelData; // Indexed pixel data for VRAM storage - private PSXBPP bpp; + private PSXBPP bpp = PSXBPP.TEX_4BIT; private readonly int previewSize = 256; [MenuItem("Window/Quantized Preview")]