Made code -Wshadow clean
[supertux.git] / src / gui / menu_manager.cpp
index aae71e9..89087b1 100644 (file)
@@ -164,13 +164,13 @@ MenuManager::process_input()
 }
 
 void
-MenuManager::event(const SDL_Event& event)
+MenuManager::event(const SDL_Event& event_)
 {
   if (current() && !m_transition->is_active())
   {
     // only pass events when the menu is fully visible and not in a
     // transition animation
-    current()->event(event);
+    current()->event(event_);
   }
 }