Merge pull request #399 from bladeoner/master

Fix several file references in the APU folder
This commit is contained in:
bearoso 2018-08-20 10:33:22 -05:00 committed by GitHub
commit aafb691fe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 11 additions and 11 deletions

View File

@ -190,11 +190,11 @@
***********************************************************************************/ ***********************************************************************************/
#include <math.h> #include <math.h>
#include "snes9x.h" #include "../snes9x.h"
#include "apu.h" #include "apu.h"
#include "msu1.h" #include "../msu1.h"
#include "snapshot.h" #include "../snapshot.h"
#include "display.h" #include "../display.h"
#include "hermite_resampler.h" #include "hermite_resampler.h"
#include "bapu/snes/snes.hpp" #include "bapu/snes/snes.hpp"

View File

@ -193,7 +193,7 @@
#ifndef _APU_H_ #ifndef _APU_H_
#define _APU_H_ #define _APU_H_
#include "snes9x.h" #include "../snes9x.h"
typedef void (*apu_callback) (void *); typedef void (*apu_callback) (void *);

View File

@ -1,6 +1,6 @@
// snes_spc 0.9.0. http://www.slack.net/~ant/ // snes_spc 0.9.0. http://www.slack.net/~ant/
#include "snes9x.h" #include "../../../snes9x.h"
#include "SPC_DSP.h" #include "SPC_DSP.h"

View File

@ -1,4 +1,4 @@
#include <snes/snes.hpp> #include "../snes/snes.hpp"
#define DSP_CPP #define DSP_CPP
namespace SNES { namespace SNES {

View File

@ -7,7 +7,7 @@
char tmp[1024]; char tmp[1024];
#endif #endif
#include <snes/snes.hpp> #include "../snes/snes.hpp"
#define SMP_CPP #define SMP_CPP
namespace SNES { namespace SNES {

View File

@ -1,4 +1,4 @@
#include "snes/snes.hpp" #include "../snes/snes.hpp"
#include <stdio.h> #include <stdio.h>
typedef struct spc_file { typedef struct spc_file {
@ -25,7 +25,7 @@ typedef struct spc_file {
namespace SNES { namespace SNES {
#include "dsp/blargg_endian.h" #include "../dsp/blargg_endian.h"
void SMP::save_spc (uint8 *block) { void SMP::save_spc (uint8 *block) {
spc_file out; spc_file out;

View File

@ -1,7 +1,7 @@
#ifndef __SNES_HPP #ifndef __SNES_HPP
#define __SNES_HPP #define __SNES_HPP
#include "snes9x.h" #include "../../../snes9x.h"
#define SNES9X #define SNES9X