mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2025-02-12 20:13:31 +00:00
Fix bug loading files in U8 archives
This commit is contained in:
parent
21067aa72f
commit
72a12c5c05
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ namespace FirstPlugin
|
|||
|
||||
SetFileNames(entries, 1, entries.Count, "");
|
||||
|
||||
for (int i = 0; i < entries.Count - 1; i++)
|
||||
for (int i = 0; i < entries.Count; i++)
|
||||
{
|
||||
if (entries[i].nodeType != NodeEntry.NodeType.Directory)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue