From 86e8010db307a571dd2d614be50a103b05665a82 Mon Sep 17 00:00:00 2001 From: Ezekiel Bethel Date: Mon, 19 Feb 2018 20:21:00 +0000 Subject: [PATCH] Item -> Index --- Ryujinx/OsHle/Objects/FspSrv/IDirectory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx/OsHle/Objects/FspSrv/IDirectory.cs b/Ryujinx/OsHle/Objects/FspSrv/IDirectory.cs index fa03f7e534..18565657bb 100644 --- a/Ryujinx/OsHle/Objects/FspSrv/IDirectory.cs +++ b/Ryujinx/OsHle/Objects/FspSrv/IDirectory.cs @@ -82,7 +82,7 @@ namespace Ryujinx.OsHle.Objects.FspSrv int CurrentIndex, CurrentItem; byte[] DirectoryEntry = new byte[DirectoryEntrySize]; - for (CurrentIndex = 0, CurrentItem = LastItem; CurrentItem < MaxDirectories; CurrentIndex++, CurrentItem++) + for (CurrentIndex = 0, CurrentItem = LastItem; CurrentIndex < MaxDirectories; CurrentIndex++, CurrentItem++) { MemoryStream MemStream = new MemoryStream(); BinaryWriter Writer = new BinaryWriter(MemStream);