Browse Source

SFML: disable vsync for now

Streetwalrus Einstein 10 years ago
parent
commit
06b1ed7864
1 changed files with 0 additions and 1 deletions
  1. 0 1
      platform/sfml/Graphics.cpp

+ 0 - 1
platform/sfml/Graphics.cpp

@@ -12,7 +12,6 @@ sf::RenderTexture buffer;
 void GRAPHICS::init()
 {
     window.create(sf::VideoMode::getDesktopMode(), "WalrusRPG", sf::Style::Fullscreen);
-    window.setVerticalSyncEnabled(true);
     window.setFramerateLimit(60);
     view = sf::View(window.getDefaultView());
     buffer.create(320, 240);