Skip to content

Commit 76a0491

Browse files
committed
- Fix loading screen images being treated as icons in the UI (causing them to fail to load)
1 parent 893c3f5 commit 76a0491

File tree

1 file changed

+3
-0
lines changed
  • xivModdingFramework/Items/DataContainers

1 file changed

+3
-0
lines changed

xivModdingFramework/Items/DataContainers/XivUi.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,9 @@ public async Task<Dictionary<string, string>> GetTexPaths(bool addLowRes = true,
159159
{
160160
resPaths.Add(Name, "ui/uld/" + Name.ToLower() + ".tex");
161161
}
162+
} else if(SecondaryCategory == XivStrings.LoadingScreen)
163+
{
164+
resPaths.Add(Name, UiPath + '/' + Name + ".tex");
162165
}
163166
else
164167
{

0 commit comments

Comments
 (0)