Merge branch 'master' of https://github.com/tildearrow/furnace into es5506_alt
* 'master' of https://github.com/tildearrow/furnace: YM2610: optimize oscilloscope fetch CPU usage GUI: add audio load meter to statistics GUI: put "OK" and "Cancel" buttons in the bottom better FM chip names sysDef refactor, part 3 - PLEASE READ NO Reduce unnecessary line Debug improvements AY8930: Fix VGM output. # Conflicts: # .gitignore # src/engine/playback.cpp # src/gui/debugWindow.cpp
This commit is contained in:
commit
4021abe495
18 changed files with 2519 additions and 1925 deletions
|
|
@ -233,15 +233,19 @@ struct DivRegWrite {
|
|||
};
|
||||
|
||||
struct DivDispatchOscBuffer {
|
||||
bool follow;
|
||||
unsigned int rate;
|
||||
unsigned short needle;
|
||||
unsigned short readNeedle;
|
||||
unsigned short followNeedle;
|
||||
short data[65536];
|
||||
|
||||
DivDispatchOscBuffer():
|
||||
follow(true),
|
||||
rate(65536),
|
||||
needle(0),
|
||||
readNeedle(0) {
|
||||
readNeedle(0),
|
||||
followNeedle(0) {
|
||||
memset(data,0,65536*sizeof(short));
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue