Add missing access modifier

This commit is contained in:
YoshiRulz 2021-01-16 07:35:24 +10:00
parent f2747b31b0
commit 3ccd10bb36
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ using BizHawk.Common;
namespace BizHawk.Client.Common
{
class TempFileStateDictionary : IDictionary<int, byte[]>, IDisposable
internal class TempFileStateDictionary : IDictionary<int, byte[]>, IDisposable
{
private Dictionary<int, Stream> _streams = new Dictionary<int, Stream>();