diff options
Diffstat (limited to 'xbmc/video/Teletext.cpp')
-rw-r--r-- | xbmc/video/Teletext.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/xbmc/video/Teletext.cpp b/xbmc/video/Teletext.cpp index b679d58a17..0f8be9a3dd 100644 --- a/xbmc/video/Teletext.cpp +++ b/xbmc/video/Teletext.cpp @@ -32,11 +32,6 @@ #include "filesystem/SpecialProtocol.h" #include "guilib/GraphicContext.h" -#if HAVE_SDL_VERSION == 1 -#include <SDL/SDL_stdinc.h> -#elif HAVE_SDL_VERSION == 2 -#include <SDL2/SDL_stdinc.h> -#else #define SDL_memset4(dst, val, len) \ do { \ uint32_t _count = (len); \ @@ -53,7 +48,6 @@ do { \ } \ } while(0) #define SDL_memcpy4(dst, src, len) memcpy(dst, src, (len) << 2) -#endif static const char *TeletextFont = "special://xbmc/media/Fonts/teletext.ttf"; |