forked from TeamTofuShop/segatools
added VFD toggle to config
This commit is contained in:
@ -160,6 +160,7 @@ void chusan_hook_config_load(
|
||||
dvd_config_load(&cfg->dvd, filename);
|
||||
io4_config_load(&cfg->io4, filename);
|
||||
gfx_config_load(&cfg->gfx, filename);
|
||||
vfd_config_load(&cfg->vfd, filename);
|
||||
chuni_dll_config_load(&cfg->dll, filename);
|
||||
slider_config_load(&cfg->slider, filename);
|
||||
led15093_config_load(&cfg->led15093, filename);
|
||||
|
@ -20,6 +20,7 @@ struct chusan_hook_config {
|
||||
struct dvd_config dvd;
|
||||
struct io4_config io4;
|
||||
struct gfx_config gfx;
|
||||
struct vfd_config vfd;
|
||||
struct chuni_dll_config dll;
|
||||
struct slider_config slider;
|
||||
struct led15093_config led15093;
|
||||
|
@ -122,7 +122,7 @@ static DWORD CALLBACK chusan_pre_startup(void)
|
||||
unsigned int first_port = is_cvt ? 2 : 20;
|
||||
|
||||
if (!is_cvt) {
|
||||
hr = vfd_hook_init(2);
|
||||
hr = vfd_hook_init(&chusan_hook_cfg.vfd, 2);
|
||||
|
||||
if (FAILED(hr)) {
|
||||
goto fail;
|
||||
|
Reference in New Issue
Block a user