fix SDL2 include in 534c4da

For SDL2 includes are specified as:

```cpp
```

rather than as:

```cpp
```

without the `SDL/` prefix, this was causing a compile error.
This commit is contained in:
Rafael Kitover 2016-12-19 02:15:44 -08:00
parent fba7adf3eb
commit dea31e52e9
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#include <wx/dcbuffer.h>
#include <SDL/SDL_joystick.h>
#include <SDL_joystick.h>
#include "../../version.h"
#include "../common/ConfigManager.h"