Browse Source

Fixed incorrect value for allow_resize call in X11 shell extension

David Wimsey 11 years ago
parent
commit
6a44da0111
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Samples/pyinvaders/src/main.cpp

+ 1 - 1
Samples/pyinvaders/src/main.cpp

@@ -87,7 +87,7 @@ int main(int ROCKET_UNUSED_PARAMETER(argc), char** ROCKET_UNUSED_PARAMETER(argv)
 
 	// Generic OS initialisation, creates a window and attaches OpenGL.
 	if (!Shell::Initialise("../Samples/pyinvaders/") ||
-		!Shell::OpenWindow("Rocket Invaders from Mars (Python Powered)", shell_renderer, 1024, 768, true))
+		!Shell::OpenWindow("Rocket Invaders from Mars (Python Powered)", shell_renderer, 1024, 768, false))
 	{
 		Shell::Shutdown();
 		return -1;