Memory Viewer - Automatically move to the next address after memory poke

This commit is contained in:
andres.delikat 2011-03-08 05:31:57 +00:00
parent 69fc532a22
commit 47b9a5ffb4
1 changed files with 2 additions and 0 deletions

View File

@ -88,6 +88,8 @@ namespace BizHawk.MultiClient
string temp = nibbles[0].ToString() + ((char)e.KeyCode).ToString();
int x = int.Parse(temp, NumberStyles.HexNumber);
Domain.PokeByte(addressHighlighted, (byte)x);
ClearNibbles();
addressHighlighted++;
this.Refresh();
}