Make it compile with 4.6.1. master-legacy
authorwolfgangb <wolfgangb@837edb03-e0f3-0310-88ca-d4d4e8b29345>
Wed, 28 Sep 2011 19:15:22 +0000 (19:15 +0000)
committerwolfgangb <wolfgangb@837edb03-e0f3-0310-88ca-d4d4e8b29345>
Wed, 28 Sep 2011 19:15:22 +0000 (19:15 +0000)
git-svn-id: http://supertux.lethargik.org/svn/supertux/trunk/supertux@6694 837edb03-e0f3-0310-88ca-d4d4e8b29345

src/addon/addon_manager.cpp
src/gui/menu.cpp
src/supertux/screen_manager.hpp

index cd899f0..562096c 100644 (file)
@@ -29,7 +29,6 @@
 #ifdef HAVE_LIBCURL
 #  include <curl/curl.h>
 #  include <curl/easy.h>
-#  include <curl/types.h>
 #endif
 
 #include "addon/addon.hpp"
index 6ce60ac..b05d41e 100644 (file)
@@ -453,7 +453,6 @@ Menu::draw_item(DrawingContext& context, int index)
   Color text_color = default_color;
   float x_pos       = pos.x;
   float y_pos       = pos.y + 24*index - menu_height/2 + 12;
-  int shadow_size = 2;
   int text_width  = int(Resources::normal_font->get_text_width(pitem.text));
   int input_width = int(Resources::normal_font->get_text_width(pitem.input) + 10);
   int list_width = 0;
@@ -470,7 +469,6 @@ Menu::draw_item(DrawingContext& context, int index)
 
   if(index == active_item)
   {
-    shadow_size = 3;
     text_color = active_color;
   }
 
index 0751365..d885443 100644 (file)
@@ -18,6 +18,7 @@
 #define HEADER_SUPERTUX_SUPERTUX_MAINLOOP_HPP
 
 #include <memory>
+#include <cstddef>
 
 #include "scripting/thread_queue.hpp"