mirror of
https://github.com/TheShadowEevee/libWiiSharp.git
synced 2025-01-11 07:28:50 -06:00
Fix a bug in U8 - Credit to Hallowizer (https://github.com/dnasdw/libwiisharp/pull/4)
This commit is contained in:
parent
597516d426
commit
ccde74a090
1 changed files with 1 additions and 1 deletions
2
U8.cs
2
U8.cs
|
@ -710,7 +710,7 @@ namespace libWiiSharp
|
|||
int num3 = u8Nodes.Count + 2;
|
||||
for (int index2 = 0; index2 < dirContent.Length; ++index2)
|
||||
{
|
||||
if (dirContent[index2].Contains(dirContent[index1] + "\\"))
|
||||
if (dirContent[index2].Contains(dirContent[index1] + Path.DirectorySeparatorChar))
|
||||
{
|
||||
++num3;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue