- --
Viewing Issue Advanced Details
| ID | Category [?] | Severity [?] | Reproducibility | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 00222 | Sound | Minor | Have not tried | Jan 27, 2008, 04:06 | Nov 22, 2016, 09:51 |
| Tester | Kold666 | View Status | Public | Platform | |
| Assigned To | couriersud | Resolution | Fixed | OS | |
| Status [?] | Resolved | Driver | |||
| Version | 0.115u3 | Fixed in Version | Build | ||
| Fixed in Git Commit | Github Pull Request # | ||||
| Summary | 00222: twinbee: Speech is not played correctly. | ||||
| Description |
Speech is not played correctly. Fix posted by BUT in 0.122u4 |
||||
| Steps To Reproduce | |||||
| Additional Information | |||||
| Github Commit | |||||
| Flags | |||||
| Regression Version | |||||
| Affected Sets / Systems | twinbee | ||||
|
Attached Files
|
Index: mame/src/mame/drivers/nemesis.c
===================================================================
--- mame/src/mame/drivers/nemesis.c (revision 3007)
+++ mame/src/mame/drivers/nemesis.c (working copy)
@@ -2128,6 +2128,12 @@
0 /* memory length */
};
+static struct VLM5030interface gx400_vlm5030_interface =
+{
+ REGION_SOUND1, /* memory region */
+ 0x800, /* memory length */
+};
+
static void volume_callback(int v)
{
K007232_set_volume(0,0,(v >> 4) * 0x11,0);
@@ -2467,7 +2473,7 @@
MDRV_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.35) /* verified with OST */
MDRV_SOUND_ADD(VLM5030, 3579545)
- MDRV_SOUND_CONFIG(vlm5030_interface)
+ MDRV_SOUND_CONFIG(gx400_vlm5030_interface)
MDRV_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.70) /* unused */
MACHINE_DRIVER_END
@@ -2516,7 +2522,7 @@
MDRV_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.60)
MDRV_SOUND_ADD(VLM5030, 3579545)
- MDRV_SOUND_CONFIG(vlm5030_interface)
+ MDRV_SOUND_CONFIG(gx400_vlm5030_interface)
MDRV_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.70)
MACHINE_DRIVER_END
| ||||
Relationships
| There are no relationship linked to this issue. |
Notes
1
|
No.13409
Fujix Administrator
Nov 22, 2016, 09:51
|
Speech is played correctly now. |
|---|