This commit is contained in:
twinaphex 2016-09-08 05:48:43 +02:00
parent 83194ff235
commit 229e0dd640
6 changed files with 28 additions and 24 deletions

View File

@ -24,6 +24,10 @@
#include <retro_assert.h> #include <retro_assert.h>
#include <string/stdstring.h> #include <string/stdstring.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "file_path_special.h" #include "file_path_special.h"
#include "audio/audio_driver.h" #include "audio/audio_driver.h"
#include "configuration.h" #include "configuration.h"
@ -41,10 +45,6 @@
#include "tasks/tasks_internal.h" #include "tasks/tasks_internal.h"
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
/* All config related settings go here. */ /* All config related settings go here. */
struct config_bool_setting struct config_bool_setting

View File

@ -22,6 +22,10 @@
#include "config.h" #include "config.h"
#endif #endif
#ifdef HAVE_MENU
#include "menu/menu_driver.h"
#endif
#include "command.h" #include "command.h"
#include "msg_hash.h" #include "msg_hash.h"
@ -35,10 +39,6 @@
#include "runloop.h" #include "runloop.h"
#include "verbosity.h" #include "verbosity.h"
#ifdef HAVE_MENU
#include "menu/menu_driver.h"
#endif
#define HASH_LOCATION_DRIVER 0x09189689U #define HASH_LOCATION_DRIVER 0x09189689U
#define HASH_CAMERA_DRIVER 0xf25db959U #define HASH_CAMERA_DRIVER 0xf25db959U
#define HASH_MENU_DRIVER 0xd607fb05U #define HASH_MENU_DRIVER 0xd607fb05U

View File

@ -32,6 +32,10 @@
#include "config.h" #include "config.h"
#endif #endif
#ifdef HAVE_CHEEVOS
#include "cheevos.h"
#endif
#include "dynamic.h" #include "dynamic.h"
#include "command.h" #include "command.h"
@ -46,9 +50,6 @@
#include "cores/internal_cores.h" #include "cores/internal_cores.h"
#include "frontend/frontend_driver.h" #include "frontend/frontend_driver.h"
#include "content.h" #include "content.h"
#ifdef HAVE_CHEEVOS
#include "cheevos.h"
#endif
#include "retroarch.h" #include "retroarch.h"
#include "runloop.h" #include "runloop.h"
#include "configuration.h" #include "configuration.h"

View File

@ -13,15 +13,6 @@
* If not, see <http://www.gnu.org/licenses/>. * If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include <boolean.h>
#include <string.h>
#include <time.h>
#include <errno.h>
#ifdef _WIN32 #ifdef _WIN32
#include <direct.h> #include <direct.h>
@ -33,6 +24,12 @@
#include <CoreFoundation/CoreFoundation.h> #include <CoreFoundation/CoreFoundation.h>
#endif #endif
#include <stdlib.h>
#include <boolean.h>
#include <string.h>
#include <time.h>
#include <errno.h>
#include <file/file_path.h> #include <file/file_path.h>
#include <string/stdstring.h> #include <string/stdstring.h>
@ -41,6 +38,10 @@
#include <retro_assert.h> #include <retro_assert.h>
#include <retro_miscellaneous.h> #include <retro_miscellaneous.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "configuration.h" #include "configuration.h"
#include "file_path_special.h" #include "file_path_special.h"

View File

@ -24,10 +24,6 @@
#include "config.h" #include "config.h"
#endif #endif
#include "list_special.h"
#include "frontend/frontend_driver.h"
#include "core_info.h"
#ifdef HAVE_MENU #ifdef HAVE_MENU
#include "menu/menu_driver.h" #include "menu/menu_driver.h"
#endif #endif
@ -40,6 +36,8 @@
#include "location/location_driver.h" #include "location/location_driver.h"
#endif #endif
#include "list_special.h"
#include "frontend/frontend_driver.h"
#include "core_info.h" #include "core_info.h"
#include "gfx/video_driver.h" #include "gfx/video_driver.h"
#include "input/input_driver.h" #include "input/input_driver.h"

View File

@ -35,6 +35,10 @@
#include <string/stdstring.h> #include <string/stdstring.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "file_path_special.h" #include "file_path_special.h"
#include "verbosity.h" #include "verbosity.h"