fix copypaste error

This commit is contained in:
feos 2018-10-24 20:02:45 +03:00
parent e808618981
commit 8a27fe9c56
1 changed files with 2 additions and 2 deletions
BizHawk.Emulation.Common/Base Implementations

View File

@ -196,12 +196,12 @@ namespace BizHawk.Emulation.Common
_reads.RemoveAt(i);
}
for (int i = _reads.Count - 1; i >= 0; i--)
for (int i = _writes.Count - 1; i >= 0; i--)
{
_writes.RemoveAt(i);
}
for (int i = _reads.Count - 1; i >= 0; i--)
for (int i = _execs.Count - 1; i >= 0; i--)
{
_execs.RemoveAt(i);
}