Tweak icecrusher draw layers to avoid objects (such as coins) from appearing inside...
[supertux.git] / src / supertux / info_box_line.cpp
index e7ff52e..20a287c 100644 (file)
@@ -87,17 +87,17 @@ InfoBoxLine::LineType get_linetype_by_format_char(char format_char) {
 
 } // namespace
 
-InfoBoxLine::InfoBoxLine(char format_char, const std::string& text) : 
+InfoBoxLine::InfoBoxLine(char format_char, const std::string& text_) :
   lineType(NORMAL),
-  font(Resources::normal_font), 
+  font(Resources::normal_font),
   color(),
-  text(text), 
+  text(text_),
   image()
 {
   font = get_font_by_format_char(format_char);
   lineType = get_linetype_by_format_char(format_char);
   color = get_color_by_format_char(format_char);
-  if (lineType == IMAGE) 
+  if (lineType == IMAGE)
   {
     image = Surface::create(text);
   }