Moved the APU files up by one level, since they are shared between the GB and GBA cores.
git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@837 a31d4220-a93d-0410-bf67-fe4944624d44
This commit is contained in:
parent
74d06efcc6
commit
73a4b8295f
|
@ -156,12 +156,15 @@ SET(SRC_DMG
|
|||
src/dmg/gbPrinter.cpp
|
||||
src/dmg/gbSGB.cpp
|
||||
src/dmg/gbSound.cpp
|
||||
src/dmg/gb_apu/Blip_Buffer.cpp
|
||||
src/dmg/gb_apu/Effects_Buffer.cpp
|
||||
src/dmg/gb_apu/Gb_Apu.cpp
|
||||
src/dmg/gb_apu/Gb_Apu_State.cpp
|
||||
src/dmg/gb_apu/Gb_Oscs.cpp
|
||||
src/dmg/gb_apu/Multi_Buffer.cpp
|
||||
)
|
||||
|
||||
SET(SRC_APU
|
||||
src/apu/Blip_Buffer.cpp
|
||||
src/apu/Effects_Buffer.cpp
|
||||
src/apu/Gb_Apu.cpp
|
||||
src/apu/Gb_Apu_State.cpp
|
||||
src/apu/Gb_Oscs.cpp
|
||||
src/apu/Multi_Buffer.cpp
|
||||
)
|
||||
|
||||
SET(SRC_SDL
|
||||
|
@ -267,6 +270,7 @@ ADD_LIBRARY (
|
|||
${SRC_MAIN}
|
||||
${SRC_AGB}
|
||||
${SRC_DMG}
|
||||
${SRC_APU}
|
||||
${SRC_FEX_MINI}
|
||||
${SRC_FILTERS}
|
||||
${SRC_DEBUGGER}
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
#include "Util.h"
|
||||
#include "common/Port.h"
|
||||
|
||||
#include "dmg/gb_apu/Gb_Apu.h"
|
||||
#include "dmg/gb_apu/Multi_Buffer.h"
|
||||
#include "apu/Gb_Apu.h"
|
||||
#include "apu/Multi_Buffer.h"
|
||||
|
||||
#include "common/SoundDriver.h"
|
||||
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
#include "gbGlobals.h"
|
||||
#include "gbSound.h"
|
||||
|
||||
#include "gb_apu/Gb_Apu.h"
|
||||
#include "gb_apu/Effects_Buffer.h"
|
||||
#include "../apu/Gb_Apu.h"
|
||||
#include "../apu/Effects_Buffer.h"
|
||||
|
||||
extern int gbHardware;
|
||||
extern long soundSampleRate; // current sound quality
|
||||
|
|
Loading…
Reference in New Issue