diff --git a/Shared/SneakGame.cs b/Shared/SneakGame.cs index 25dba68..94d2001 100644 --- a/Shared/SneakGame.cs +++ b/Shared/SneakGame.cs @@ -28,6 +28,9 @@ namespace SemiColinGames { public SneakGame() { graphics = new GraphicsDeviceManager(this); + graphics.SynchronizeWithVerticalRetrace = false; + IsFixedTimeStep = true; + TargetElapsedTime = TimeSpan.FromSeconds(1.0 / 120); IsMouseVisible = true; Content.RootDirectory = "Content"; }