From 0c7c15c04724b9184fc49746aaaf75488c292ca9 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Fri, 24 Jan 2020 20:43:43 -0500 Subject: [PATCH] set target framerate back to 60 GitOrigin-RevId: 7a97b3cd07afccafab047ad81df10269360b066e --- Shared/SneakGame.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared/SneakGame.cs b/Shared/SneakGame.cs index 86fb604..bd2a384 100644 --- a/Shared/SneakGame.cs +++ b/Shared/SneakGame.cs @@ -30,7 +30,7 @@ namespace SemiColinGames { graphics = new GraphicsDeviceManager(this); graphics.SynchronizeWithVerticalRetrace = false; IsFixedTimeStep = true; - TargetElapsedTime = TimeSpan.FromSeconds(1.0 / 120); + TargetElapsedTime = TimeSpan.FromSeconds(1.0 / 60); IsMouseVisible = true; Content.RootDirectory = "Content"; }