Fixed what appears to be a minor including error in sdl/i_system.c

Basically, Wolfy's linux (non-CMake) compiling apparently fails here, and config.in.h actually lives outside of the sdl folder. Blame a particular someone for blindly copy+pasting these includes in this file without considering the consequences when adding support for CMake everywhere.
This commit is contained in:
Monster Iestyn 2016-01-10 18:24:58 +00:00
parent 6929b6fe4b
commit 997ae7dcc9
1 changed files with 2 additions and 2 deletions

View File

@ -21,9 +21,9 @@
/// \brief SRB2 system stuff for SDL /// \brief SRB2 system stuff for SDL
#ifdef CMAKECONFIG #ifdef CMAKECONFIG
#include "config.h" #include "../config.h"
#else #else
#include "config.h.in" #include "../config.h.in"
#endif #endif
#ifndef _WIN32_WCE #ifndef _WIN32_WCE