Merge branch 'master' into n163

This commit is contained in:
cam900 2022-03-23 03:26:09 +09:00 committed by GitHub
commit 73267444fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 748 additions and 2 deletions

View file

@ -48,6 +48,7 @@
#include "platform/bubsyswsg.h"
#include "platform/n163.h"
#include "platform/pet.h"
#include "platform/vic20.h"
#include "platform/dummy.h"
#include "../ta-log.h"
#include "song.h"
@ -283,6 +284,9 @@ void DivDispatchContainer::init(DivSystem sys, DivEngine* eng, int chanCount, do
case DIV_SYSTEM_PET:
dispatch=new DivPlatformPET;
break;
case DIV_SYSTEM_VIC20:
dispatch=new DivPlatformVIC20;
break;
default:
logW("this system is not supported yet! using dummy platform.\n");
dispatch=new DivPlatformDummy;