mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-11 20:44:24 +00:00
header include changes
This commit is contained in:
parent
229c25dfc7
commit
09fe26257c
@ -17,6 +17,7 @@
|
||||
#include <string.h>
|
||||
|
||||
#include "audio_driver.h"
|
||||
#include "audio_resampler_driver.h"
|
||||
#include "audio_utils.h"
|
||||
#include "audio_thread_wrapper.h"
|
||||
|
||||
|
@ -13,12 +13,11 @@
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "../audio_resampler_driver.h"
|
||||
#include <math.h>
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
#include <math.h>
|
||||
|
||||
#include "../audio_resampler_driver.h"
|
||||
typedef struct rarch_nearest_resampler
|
||||
{
|
||||
float fraction;
|
||||
|
@ -15,9 +15,9 @@
|
||||
|
||||
/* Bog-standard windowed SINC implementation. */
|
||||
|
||||
#include <math.h>
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <math.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef __SSE__
|
||||
|
1
driver.c
1
driver.c
@ -22,6 +22,7 @@
|
||||
#include "msg_hash.h"
|
||||
#include "verbosity.h"
|
||||
#include "audio/audio_driver.h"
|
||||
#include "audio/audio_resampler_driver.h"
|
||||
|
||||
#ifdef HAVE_MENU
|
||||
#include "menu/menu.h"
|
||||
|
1
driver.h
1
driver.h
@ -33,7 +33,6 @@
|
||||
|
||||
#include "camera/camera_driver.h"
|
||||
#include "location/location_driver.h"
|
||||
#include "audio/audio_resampler_driver.h"
|
||||
#include "record/record_driver.h"
|
||||
|
||||
#include "libretro_version_1.h"
|
||||
|
@ -18,6 +18,7 @@
|
||||
#define __RARCH_GENERAL_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <math.h>
|
||||
#include <limits.h>
|
||||
|
||||
/* Platform-specific headers */
|
||||
|
@ -39,6 +39,7 @@
|
||||
#include "../general.h"
|
||||
#include "../dynamic.h"
|
||||
#include "../audio/audio_driver.h"
|
||||
#include "../audio/audio_resampler_driver.h"
|
||||
#include "../input/input_common.h"
|
||||
#include "../input/input_autodetect.h"
|
||||
#include "../config.def.h"
|
||||
|
@ -61,6 +61,7 @@ extern "C" {
|
||||
|
||||
#include "../../general.h"
|
||||
#include "../../verbosity.h"
|
||||
#include "../../audio/audio_resampler_driver.h"
|
||||
#include "../../audio/audio_utils.h"
|
||||
#include "../record_driver.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user