[CHDFile] Assign the BinaryReader correctly

This commit is contained in:
Matt Nadareski
2017-10-31 10:10:37 -07:00
parent 67b613ade9
commit 395de83f56

View File

@@ -95,7 +95,7 @@ namespace SabreTools.Library.External
/// <param name="chdstream">Stream representing the CHD file</param>
public CHDFile(Stream chdstream)
{
BinaryReader br = new BinaryReader(chdstream);
m_br = new BinaryReader(chdstream);
}
/// <summary>