Input Roll - oops, update current cell regardless of if the caller has subscribed to the PointedCellChanged event

This commit is contained in:
adelikat 2014-09-28 17:28:57 +00:00
parent f5a3d28f21
commit a2762d708e
1 changed files with 3 additions and 2 deletions

View File

@ -1228,10 +1228,11 @@ namespace BizHawk.Client.EmuHawk
/// <param name="newCell"></param>
private void CellChanged(Cell newCell)
{
LastCell = CurrentCell;
CurrentCell = newCell;
if (PointedCellChanged != null && newCell != CurrentCell)
{
LastCell = CurrentCell;
CurrentCell = newCell;
PointedCellChanged(this, new CellEventArgs(LastCell, CurrentCell));
}
}