From 0bd4984c069e803723011a547a8d9274211005b1 Mon Sep 17 00:00:00 2001 From: caitsith2 Date: Sat, 25 Aug 2018 15:49:50 -0700 Subject: [PATCH] Address issue #5 --- libhac.Nand/DiscUtils.Fat/ClusterStream.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libhac.Nand/DiscUtils.Fat/ClusterStream.cs b/libhac.Nand/DiscUtils.Fat/ClusterStream.cs index c02b015f..97167e58 100644 --- a/libhac.Nand/DiscUtils.Fat/ClusterStream.cs +++ b/libhac.Nand/DiscUtils.Fat/ClusterStream.cs @@ -134,7 +134,7 @@ namespace DiscUtils.Fat if (!TryLoadCurrentCluster()) { - if ((_position == _length || _position == DetectLength()) && !_atEOF) + if ((_position == _length || _position == DetectLength())) { _atEOF = true; return 0;