fix: missing type

This commit is contained in:
h z
2025-02-18 16:05:37 +00:00
parent 2d0b25f65c
commit b21023ba24
3 changed files with 7 additions and 8 deletions

View File

@@ -24,7 +24,7 @@ public partial class PoloniumTextureButton : TextureButton
set
{
PrivateTextureSetName = value;
t = GlobalRegistry.TextureSetMap.GetValueOrDefault(value, null);
TextureSet t = GlobalRegistry.TextureSetMap.GetValueOrDefault(value, null);
if (t is not null)
{
TextureNormal = t.Normal;