Merge pull request #1008 from akumanatt/quadtone
Alternative ZX Spectrum beeper sound engine
This commit is contained in:
commit
74988df204
8 changed files with 484 additions and 0 deletions
|
|
@ -59,6 +59,7 @@
|
|||
#include "platform/lynx.h"
|
||||
#include "platform/pokey.h"
|
||||
#include "platform/zxbeeper.h"
|
||||
#include "platform/zxbeeperquadtone.h"
|
||||
#include "platform/bubsyswsg.h"
|
||||
#include "platform/n163.h"
|
||||
#include "platform/pet.h"
|
||||
|
|
@ -389,6 +390,9 @@ void DivDispatchContainer::init(DivSystem sys, DivEngine* eng, int chanCount, do
|
|||
case DIV_SYSTEM_SFX_BEEPER:
|
||||
dispatch=new DivPlatformZXBeeper;
|
||||
break;
|
||||
case DIV_SYSTEM_SFX_BEEPER_QUADTONE:
|
||||
dispatch=new DivPlatformZXBeeperQuadTone;
|
||||
break;
|
||||
case DIV_SYSTEM_LYNX:
|
||||
dispatch=new DivPlatformLynx;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue