override Dispose in homebrew romfs stream

This commit is contained in:
Thog 2019-02-12 12:55:30 +01:00
parent 66a40e0e2c
commit d0110b0da7
No known key found for this signature in database
GPG key ID: 0CD291558FAFDBC6

View file

@ -65,5 +65,13 @@ namespace Ryujinx.HLE.HOS
{
throw new NotImplementedException();
}
protected override void Dispose(bool disposing)
{
if (disposing)
{
_baseStream.Dispose();
}
}
}
}