From 77afddf4ba0f3220b96868d0ff973e9f86ba873f Mon Sep 17 00:00:00 2001 From: "SND\\rene87_cp" Date: Wed, 3 Apr 2013 21:27:26 +0000 Subject: [PATCH] For Test Only replace 2 private bools with proteced for an W8 workaround --- ANX.Framework/Game.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ANX.Framework/Game.cs b/ANX.Framework/Game.cs index 6fbbda49..6cf661d5 100644 --- a/ANX.Framework/Game.cs +++ b/ANX.Framework/Game.cs @@ -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()