Move header include for location/location_driver.h out of

driver.h
This commit is contained in:
twinaphex 2015-12-05 15:47:33 +01:00
parent 3790b1d566
commit 19a7ee6486
7 changed files with 7 additions and 3 deletions

View File

@ -23,6 +23,7 @@
#include "verbosity.h"
#include "audio/audio_driver.h"
#include "audio/audio_resampler_driver.h"
#include "location/location_driver.h"
#ifdef HAVE_MENU
#include "menu/menu.h"

View File

@ -28,7 +28,6 @@
#include "libretro_private.h"
#include "camera/camera_driver.h"
#include "location/location_driver.h"
#include "record/record_driver.h"
#include "libretro_version_1.h"

View File

@ -28,6 +28,7 @@
#endif
#include "audio/audio_driver.h"
#include "location/location_driver.h"
#include "performance.h"
#include "libretro_private.h"

View File

@ -14,7 +14,7 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "../../driver.h"
#include "../location_driver.h"
typedef struct android_location
{

View File

@ -14,7 +14,7 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "../../driver.h"
#include "../location_driver.h"
static void *null_location_init(void)
{

View File

@ -16,6 +16,8 @@
#include <string.h>
#include "location_driver.h"
#include "../general.h"
#include "../string_list_special.h"
#include "../verbosity.h"

View File

@ -38,6 +38,7 @@
#include "../driver.h"
#include "../general.h"
#include "../dynamic.h"
#include "../location/location_driver.h"
#include "../audio/audio_driver.h"
#include "../audio/audio_resampler_driver.h"
#include "../input/input_config.h"