src/Engine.cc
changeset 389 e74c1820fbd2
parent 381 9b35bc329d23
child 408 e6cfc44266af
--- a/src/Engine.cc	Tue Jan 13 16:11:37 2009 +0000
+++ b/src/Engine.cc	Tue Jan 13 20:17:03 2009 +0200
@@ -12,9 +12,9 @@
     
 }
 
-void Engine::setupGraphics (void) {
+void Engine::setupGraphics (PixelCoordinate resolution, bool fullscreen) {
     // create the graphics
-    graphics = new Graphics(*this, game_state);
+    graphics = new Graphics(*this, game_state, resolution, fullscreen);
 }
 
 void Engine::setupNetworkServer (const std::string &listen_port) {