TIA: update to latest Stella core

This commit is contained in:
tildearrow 2022-09-09 23:21:45 -05:00
parent f2e519d71e
commit fcefbb4909
10 changed files with 421 additions and 791 deletions

View file

@ -22,7 +22,7 @@
#include "../dispatch.h"
#include "../macroInt.h"
#include <queue>
#include "sound/tia/TIASnd.h"
#include "sound/tia/Audio.h"
class DivPlatformTIA: public DivDispatch {
protected:
@ -42,7 +42,7 @@ class DivPlatformTIA: public DivDispatch {
Channel chan[2];
DivDispatchOscBuffer* oscBuf[2];
bool isMuted[2];
TIASound tia;
TIA::Audio tia;
unsigned char regPool[16];
friend void putDispatchChan(void*,int,int);