mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-26 14:33:01 +00:00
why
This commit is contained in:
parent
741d5d86c1
commit
7fa61a564c
2 changed files with 3 additions and 3 deletions
|
@ -53,7 +53,7 @@ const char* regCheatSheetSupervision[]={
|
|||
};
|
||||
|
||||
unsigned char noiseReg[3];
|
||||
unsigned char kon[3];
|
||||
unsigned char kon[4];
|
||||
unsigned char initWrite[4];
|
||||
|
||||
const char** DivPlatformSupervision::getRegisterSheet() {
|
||||
|
@ -436,7 +436,7 @@ void DivPlatformSupervision::reset() {
|
|||
memset(tempL,0,32*sizeof(int));
|
||||
memset(tempR,0,32*sizeof(int));
|
||||
memset(noiseReg,0,3*sizeof(unsigned char));
|
||||
memset(kon,0,3*sizeof(unsigned char));
|
||||
memset(kon,0,4*sizeof(unsigned char));
|
||||
memset(initWrite,1,sizeof(unsigned char));
|
||||
sampleOffset=0;
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ class DivPlatformSupervision: public DivDispatch {
|
|||
int sample, hasOffset; // again, for channel 3 ONLY
|
||||
bool setPos;
|
||||
Channel():
|
||||
SharedChannel<signed char>(31),
|
||||
SharedChannel<signed char>(63),
|
||||
duty(0),
|
||||
len(0x1f),
|
||||
pan(3),
|
||||
|
|
Loading…
Reference in a new issue