src/sound

This commit is contained in:
Jasmine Iwanek
2022-03-13 10:03:39 -04:00
parent 0d9161016d
commit c195b348a7
22 changed files with 654 additions and 650 deletions

View File

@@ -207,15 +207,15 @@ static const device_config_t cms_config[] = {
};
const device_t cms_device = {
"Creative Music System / Game Blaster",
"cms",
DEVICE_ISA,
0,
cms_init,
cms_close,
NULL,
{ NULL },
NULL,
NULL,
cms_config
.name = "Creative Music System / Game Blaster",
.internal_name = "cms",
.flags = DEVICE_ISA,
.local = 0,
.init = cms_init,
.close = cms_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = cms_config
};