Get rid of some header includes

This commit is contained in:
twinaphex 2016-09-01 05:36:52 +02:00
parent f38ce959e4
commit 4f577f1932
7 changed files with 18 additions and 8 deletions

View File

@ -49,7 +49,6 @@
#include "dynamic.h"
#include "content.h"
#include "movie.h"
#include "general.h"
#include "msg_hash.h"
#include "retroarch.h"
#include "managers/cheat_manager.h"

View File

@ -33,9 +33,9 @@
#include "input/input_keymaps.h"
#include "input/input_remapping.h"
#include "defaults.h"
#include "general.h"
#include "core.h"
#include "retroarch.h"
#include "runloop.h"
#include "system.h"
#include "verbosity.h"
#include "lakka.h"

View File

@ -26,12 +26,14 @@
#include <lists/string_list.h>
#include <libretro.h>
#include "configuration.h"
#include "dynamic.h"
#include "core.h"
#include "general.h"
#include "msg_hash.h"
#include "managers/state_manager.h"
#include "runloop.h"
#include "system.h"
#include "verbosity.h"
#include "gfx/video_driver.h"
#include "audio/audio_driver.h"

View File

@ -14,11 +14,11 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <compat/strl.h>
#include <compat/posix_string.h>
#include <string/stdstring.h>
#include "command.h"
#include "general.h"
#include "msg_hash.h"
#include "system.h"
@ -27,7 +27,10 @@
#include "camera/camera_driver.h"
#include "record/record_driver.h"
#include "location/location_driver.h"
#include "configuration.h"
#include "core.h"
#include "runloop.h"
#include "verbosity.h"
#ifdef HAVE_MENU
#include "menu/menu_driver.h"

View File

@ -15,6 +15,8 @@
#include <stddef.h>
#include <compat/strl.h>
#include <lists/file_list.h>
#include <lists/dir_list.h>
#include <file/file_path.h>
@ -36,8 +38,8 @@
#include "../defaults.h"
#include "../managers/cheat_manager.h"
#include "../managers/core_option_manager.h"
#include "../general.h"
#include "../retroarch.h"
#include "../runloop.h"
#include "../system.h"
#include "../core.h"
#include "../frontend/frontend_driver.h"

View File

@ -34,6 +34,8 @@
#include <string/stdstring.h>
#include <lists/string_list.h>
#include <compat/strl.h>
#include "../frontend/frontend_driver.h"
#include "menu_setting.h"
@ -43,13 +45,15 @@
#include "menu_input.h"
#include "menu_navigation.h"
#include "../configuration.h"
#include "../msg_hash.h"
#include "../defaults.h"
#include "../driver.h"
#include "../general.h"
#include "../system.h"
#include "../core.h"
#include "../dynamic.h"
#include "../runloop.h"
#include "../verbosity.h"
#include "../camera/camera_driver.h"
#include "../location/location_driver.h"
#include "../record/record_driver.h"

View File

@ -45,13 +45,13 @@
#endif
#include "../defaults.h"
#include "../general.h"
#include "../configuration.h"
#include "../runloop.h"
#include "../msg_hash.h"
#include "../gfx/video_driver.h"
#include "../gfx/video_frame.h"
#ifdef HAVE_CONFIG_H
#include "../config.h"
#endif