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