* Comment out resizable flag because it blue-screens on Windows
authorMathnerd314 <man.is.allan@gmail.com>
Sat, 14 Nov 2009 15:19:31 +0000 (15:19 +0000)
committerMathnerd314 <man.is.allan@gmail.com>
Sat, 14 Nov 2009 15:19:31 +0000 (15:19 +0000)
* Editor images are shown in debug builds

SVN-Revision: 5937

src/tile.cpp
src/video/gl_renderer.cpp

index 661117b..9e0d39b 100644 (file)
@@ -106,9 +106,19 @@ Tile::parse(const lisp::Lisp& reader)
     attributes |= SOLID | SLOPE;
   }
 
-  const lisp::Lisp* images = reader.get_lisp("images");
+  const lisp::Lisp* images;
+#ifdef DEBUG
+  images = reader.get_lisp("editor-images");
   if(images)
     parse_images(*images);
+  else {
+#endif /*DEBUG*/
+    images = reader.get_lisp("images");
+    if(images)
+      parse_images(*images);
+#ifdef DEBUG
+  }
+#endif /*DEBUG*/
 
   correct_attributes();
   return id;
index 1d062c4..c861595 100644 (file)
@@ -177,7 +177,7 @@ Renderer::Renderer()
     }
   else
     {
-      flags |= SDL_RESIZABLE;
+//      flags |= SDL_RESIZABLE;
       width  = config->window_width;
       height = config->window_height;
     }
@@ -546,7 +546,7 @@ Renderer::resize(int w, int h)
 {
   // This causes the screen to go black, which is annoying, but seems
   // unavoidable with SDL at the moment
-  SDL_SetVideoMode(w, h, 0, SDL_OPENGL | SDL_RESIZABLE);
+  SDL_SetVideoMode(w, h, 0, SDL_OPENGL /*| SDL_RESIZABLE*/);
 
   config->window_width  = w;
   config->window_height = h;