fix copypaste error
This commit is contained in:
parent
e808618981
commit
8a27fe9c56
|
@ -196,12 +196,12 @@ namespace BizHawk.Emulation.Common
|
||||||
_reads.RemoveAt(i);
|
_reads.RemoveAt(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = _reads.Count - 1; i >= 0; i--)
|
for (int i = _writes.Count - 1; i >= 0; i--)
|
||||||
{
|
{
|
||||||
_writes.RemoveAt(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);
|
_execs.RemoveAt(i);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue