Explorar el Código

SFML: set default window size to 640x480

Streetwalrus Einstein hace 10 años
padre
commit
b094cd66bc
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      platform/sfml/Graphics.cpp

+ 1 - 1
platform/sfml/Graphics.cpp

@@ -12,7 +12,7 @@ sf::RenderTexture buffer;
 
 void GRAPHICS::init()
 {
-    window.create(sf::VideoMode(320, 240), "WalrusRPG");
+    window.create(sf::VideoMode(640, 480), "WalrusRPG");
     view = sf::View(window.getDefaultView());
     buffer.create(320, 240);
 }