mirror of
https://github.com/libretro/RetroArch
synced 2025-01-09 12:54:51 +00:00
Compilation fixes - headers need to be moved to separate include dir
This commit is contained in:
parent
c0de19f23d
commit
46b79ccd78
@ -9,8 +9,8 @@
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
#include "bitstream.h"
|
||||
#include <stdlib.h>
|
||||
#include <libchdr/bitstream.h>
|
||||
|
||||
/***************************************************************************
|
||||
* INLINE FUNCTIONS
|
||||
|
@ -24,7 +24,7 @@
|
||||
|
||||
#include <retro_inline.h>
|
||||
|
||||
#include "cdrom.h"
|
||||
#include <libchdr/cdrom.h>
|
||||
|
||||
/***************************************************************************
|
||||
DEBUGGING
|
||||
|
@ -41,15 +41,15 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "chd.h"
|
||||
#include "cdrom.h"
|
||||
#include "flac.h"
|
||||
#include "huffman.h"
|
||||
#include <libchdr/chd.h>
|
||||
#include <libchdr/minmax.h>
|
||||
#include <libchdr/cdrom.h>
|
||||
#include <libchdr/flac.h>
|
||||
#include <libchdr/huffman.h>
|
||||
#include "zlib.h"
|
||||
#include "LzmaEnc.h"
|
||||
#include "LzmaDec.h"
|
||||
#include "retro_inline.h"
|
||||
#include "minmax.h"
|
||||
#include <retro_inline.h>
|
||||
|
||||
#define TRUE 1
|
||||
#define FALSE 0
|
||||
|
@ -11,8 +11,8 @@
|
||||
|
||||
#include <assert.h>
|
||||
#include <string.h>
|
||||
#include "flac.h"
|
||||
#include "minmax.h"
|
||||
#include <libchdr/flac.h>
|
||||
#include <libchdr/minmax.h>
|
||||
|
||||
/***************************************************************************
|
||||
* FLAC DECODER
|
||||
|
@ -101,8 +101,8 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "huffman.h"
|
||||
#include "minmax.h"
|
||||
#include <libchdr/huffman.h>
|
||||
#include <libchdr/minmax.h>
|
||||
|
||||
/***************************************************************************
|
||||
* MACROS
|
||||
|
@ -27,7 +27,7 @@
|
||||
|
||||
#include <streams/chd_stream.h>
|
||||
#include <retro_endianness.h>
|
||||
#include <chd.h>
|
||||
#include <libchdr/chd.h>
|
||||
|
||||
#define SECTOR_SIZE 2352
|
||||
#define SUBCODE_SIZE 96
|
||||
|
Loading…
Reference in New Issue
Block a user