For Test Only replace 2 private bools with proteced for an W8 workaround

This commit is contained in:
SND\rene87_cp 2013-04-03 21:27:26 +00:00 committed by Konstantin Koch
parent 37075c7e90
commit 77afddf4ba

View File

@ -34,8 +34,8 @@ namespace ANX.Framework
private IGraphicsDeviceService graphicsDeviceService;
private GameServiceContainer gameServices;
private bool firstUpdateDone;
private bool firstDrawDone;
protected bool firstUpdateDone;
protected bool firstDrawDone;
private bool drawingSlow;
private bool inRun;
private bool isInitialized;
@ -218,7 +218,8 @@ namespace ANX.Framework
public void ResetElapsedTime()
{
throw new NotImplementedException();
//TODO Check if it works right
gameTimeAccu = TimeSpan.MinValue;
}
protected virtual bool BeginDraw()