mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-26 14:33:01 +00:00
GBA: wahahaha
initializing after pushing
This commit is contained in:
parent
b27d99b1b0
commit
cb2aeb649f
1 changed files with 6 additions and 6 deletions
|
@ -501,6 +501,12 @@ int DivPlatformGBADMA::init(DivEngine* p, int channels, int sugRate, const DivCo
|
||||||
parent=p;
|
parent=p;
|
||||||
dumpWrites=false;
|
dumpWrites=false;
|
||||||
skipRegisterWrites=false;
|
skipRegisterWrites=false;
|
||||||
|
wtMemCompo=DivMemoryComposition();
|
||||||
|
wtMemCompo.name="Wavetable RAM";
|
||||||
|
wtMemCompo.used=256*2;
|
||||||
|
wtMemCompo.capacity=256*2;
|
||||||
|
wtMemCompo.memory=(unsigned char*)wtMem;
|
||||||
|
wtMemCompo.waveformView=DIV_MEMORY_WAVE_8BIT_SIGNED;
|
||||||
for (int i=0; i<2; i++) {
|
for (int i=0; i<2; i++) {
|
||||||
isMuted[i]=false;
|
isMuted[i]=false;
|
||||||
oscBuf[i]=new DivDispatchOscBuffer;
|
oscBuf[i]=new DivDispatchOscBuffer;
|
||||||
|
@ -510,12 +516,6 @@ int DivPlatformGBADMA::init(DivEngine* p, int channels, int sugRate, const DivCo
|
||||||
sampleMemLen=0;
|
sampleMemLen=0;
|
||||||
romMemCompo=DivMemoryComposition();
|
romMemCompo=DivMemoryComposition();
|
||||||
romMemCompo.name="Sample ROM";
|
romMemCompo.name="Sample ROM";
|
||||||
wtMemCompo=DivMemoryComposition();
|
|
||||||
wtMemCompo.name="Wavetable RAM";
|
|
||||||
wtMemCompo.used=256*2;
|
|
||||||
wtMemCompo.capacity=256*2;
|
|
||||||
wtMemCompo.memory=(unsigned char*)wtMem;
|
|
||||||
wtMemCompo.waveformView=DIV_MEMORY_WAVE_8BIT_SIGNED;
|
|
||||||
setFlags(flags);
|
setFlags(flags);
|
||||||
reset();
|
reset();
|
||||||
return 2;
|
return 2;
|
||||||
|
|
Loading…
Reference in a new issue