diff --git a/src/Game.cs b/src/Game.cs index 93c7b26..8c528ea 100644 --- a/src/Game.cs +++ b/src/Game.cs @@ -77,8 +77,6 @@ namespace MoonWorks accumulator += frameTime; - bool updateThisLoop = (accumulator >= timestep); - if (!quit) { while (accumulator >= timestep) @@ -95,10 +93,7 @@ namespace MoonWorks double alpha = accumulator / timestep; - if (updateThisLoop) - { - Draw(timestep, alpha); - } + Draw(timestep, alpha); } } }