Skip to content

Commit

Permalink
Move header include for location/location_driver.h out of
Browse files Browse the repository at this point in the history
driver.h
  • Loading branch information
inactive123 committed Dec 5, 2015
1 parent 3790b1d commit 19a7ee6
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 0 additions & 1 deletion driver.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 1 addition & 0 deletions dynamic.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#endif

#include "audio/audio_driver.h"
#include "location/location_driver.h"
#include "performance.h"

#include "libretro_private.h"
Expand Down
2 changes: 1 addition & 1 deletion location/drivers/android.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* If not, see <http://www.gnu.org/licenses/>.
*/

#include "../../driver.h"
#include "../location_driver.h"

typedef struct android_location
{
Expand Down
2 changes: 1 addition & 1 deletion location/drivers/nulllocation.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
2 changes: 2 additions & 0 deletions location/location_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

#include <string.h>

#include "location_driver.h"

#include "../general.h"
#include "../string_list_special.h"
#include "../verbosity.h"
Expand Down
1 change: 1 addition & 0 deletions menu/menu_setting.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 19a7ee6

Please sign in to comment.