Browse Source

Fixed a compiler warning on Linux and iOS.

Alex Szpakowski 10 years ago
parent
commit
b2b5a1d9df
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/modules/window/sdl/Window.cpp

+ 4 - 0
src/modules/window/sdl/Window.cpp

@@ -1000,6 +1000,10 @@ void Window::requestAttention(bool continuous)
 #elif defined(LOVE_MACOSX)
 
 	love::osx::requestAttention(continuous);
+
+#else
+
+	LOVE_UNUSED(continuous);
 	
 #endif