mirror of https://github.com/snes9xgit/snes9x.git
Merge pull request #19 from bl0ckeduser/patch-1
Fix include paths in apu code
This commit is contained in:
commit
d251878ef3
|
@ -194,7 +194,7 @@
|
|||
|
||||
namespace SNES
|
||||
{
|
||||
#include "dsp/blargg_endian.h"
|
||||
#include "bapu/dsp/blargg_endian.h"
|
||||
|
||||
CPU cpu;
|
||||
}
|
||||
|
|
|
@ -27,8 +27,8 @@ struct Processor
|
|||
int32 clock;
|
||||
};
|
||||
|
||||
#include "smp/smp.hpp"
|
||||
#include "dsp/sdsp.hpp"
|
||||
#include "../smp/smp.hpp"
|
||||
#include "../dsp/sdsp.hpp"
|
||||
|
||||
class CPU
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue