SNES - oops, hookup setting the frame counter as well

This commit is contained in:
andres.delikat 2012-09-07 20:31:05 +00:00
parent 71652b25dc
commit d56c0c354b
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo.SNES
};
int timeFrameCounter;
public int Frame { get { return timeFrameCounter; } }
public int Frame { get { return timeFrameCounter; } set { timeFrameCounter = value; } }
public int LagCount { get; set; }
public bool IsLagFrame { get; private set; }
public string SystemId { get { return "SNES"; } }