Fix up SDL2 include paths

Using "SDL2/SDL_xxx.h" instead of "SDL_xxx.h" caused
the include paths provided by pkg-config to be ignored,
and headers from a standard include path to be used instead.
This commit is contained in:
Jonas Kulla 2013-10-13 23:21:34 +02:00
parent 8b9c501249
commit 39436ad231
22 changed files with 40 additions and 40 deletions

View file

@ -25,11 +25,11 @@
#include "config.h"
#include "etc-internal.h"
#include "SDL2/SDL_scancode.h"
#include "SDL2/SDL_joystick.h"
#include "SDL2/SDL_mouse.h"
#include "SDL_scancode.h"
#include "SDL_joystick.h"
#include "SDL_mouse.h"
#include "SDL2/SDL_mutex.h"
#include "SDL_mutex.h"
#include <QByteArray>
#include <QVector>