mirror of
https://github.com/libretro/Genesis-Plus-GX.git
synced 2024-11-23 00:09:43 +00:00
Merge pull request #351 from sonninnos/libchdr-buildfix
libchdr buildfix attempt
This commit is contained in:
commit
c3bfcd04d6
@ -9,7 +9,7 @@
|
||||
***************************************************************************/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <libchdr/bitstream.h>
|
||||
#include "bitstream.h"
|
||||
|
||||
/***************************************************************************
|
||||
* INLINE FUNCTIONS
|
||||
|
@ -18,7 +18,7 @@
|
||||
#include <assert.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <libchdr/cdrom.h>
|
||||
#include "cdrom.h"
|
||||
|
||||
#ifdef WANT_RAW_DATA_SECTOR
|
||||
|
||||
|
@ -14,7 +14,6 @@
|
||||
#define __CDROM_H__
|
||||
|
||||
#include <stdint.h>
|
||||
#include <libchdr/chdconfig.h>
|
||||
|
||||
/***************************************************************************
|
||||
CONSTANTS
|
||||
|
@ -42,12 +42,13 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
|
||||
#include <libchdr/chd.h>
|
||||
#include <libchdr/cdrom.h>
|
||||
#include <libchdr/flac.h>
|
||||
#include <libchdr/huffman.h>
|
||||
|
||||
#include "types.h"
|
||||
#include "osd.h"
|
||||
#include "macros.h"
|
||||
#include "chd.h"
|
||||
#include "cdrom.h"
|
||||
#include "flac.h"
|
||||
#include "huffman.h"
|
||||
#include "zlib.h"
|
||||
#include "LzmaEnc.h"
|
||||
#include "LzmaDec.h"
|
||||
|
@ -46,8 +46,7 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <libchdr/coretypes.h>
|
||||
#include <libchdr/chdconfig.h>
|
||||
#include "coretypes.h"
|
||||
|
||||
/***************************************************************************
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include <assert.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <libchdr/flac.h>
|
||||
#include "flac.h"
|
||||
#define DR_FLAC_IMPLEMENTATION
|
||||
#include <dr_libs/dr_flac.h>
|
||||
|
||||
|
@ -101,7 +101,7 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <libchdr/huffman.h>
|
||||
#include "huffman.h"
|
||||
|
||||
#define MAX(x,y) ((x) > (y) ? (x) : (y))
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
#ifndef __HUFFMAN_H__
|
||||
#define __HUFFMAN_H__
|
||||
|
||||
#include <libchdr/bitstream.h>
|
||||
#include "bitstream.h"
|
||||
|
||||
|
||||
/***************************************************************************
|
||||
|
Loading…
Reference in New Issue
Block a user