- --
Viewing Issue Advanced Details
ID | Category [?] | Severity [?] | Reproducibility | Date Submitted | Last Update |
---|---|---|---|---|---|
05568 | Sound | Minor | Always | May 3, 2014, 05:05 | Feb 21, 2015, 23:40 |
Tester | Gragt | View Status | Public | Platform | MESS (Official Binary) |
Assigned To | Resolution | Open | OS | Windows Vista/7/8 (64-bit) | |
Status [?] | Confirmed | Driver | |||
Version | 0.153 | Fixed in Version | Build | 64-bit | |
Fixed in Git Commit | Github Pull Request # | ||||
Summary | 05568: genesis [chakan]: Missing level introduction music | ||||
Description |
When entering one of the four realms for the first time at the start of Chakan, the game switches to a screen with an hourglass and scrolling text that describes the boss of the selected realm. There should be some music playing during these hourglass sequences but they are silent in MESS. The rest of the music (introduction, title screen, levels, etc.) apparently plays fine. This problem doesn't occur with the same ROM in other emulators, like Kega Fusion 3.64. |
||||
Steps To Reproduce | |||||
Additional Information | |||||
Github Commit | |||||
Flags | |||||
Regression Version | |||||
Affected Sets / Systems | genesis [chakan] | ||||
Attached Files
|
randomly_working_hack.diff (489 bytes) Feb 21, 2015, 23:39 Uploaded by enik [Show Content] [Hide Content]--- mess-git\src\emu\video\315_5313.c 2015-01-17 07:30:04.000000000 -0200 +++ mess-new\src\emu\video\315_5313.c 2015-02-21 18:56:52.000000000 -0300 @@ -2625,7 +2625,7 @@ void sega315_5313_device::vdp_handle_sca if (get_scanline_counter() == m_irq6_scanline) { // osd_printf_debug("x %d",get_scanline_counter()); - m_irq6_on_timer->adjust(attotime::from_usec(6)); + m_irq6_on_timer->adjust(attotime::from_usec(65)); m_irq6_pending = 1; m_vblank_flag = 1; | ||||
Relationships
There are no relationship linked to this issue. |
Notes
1
No.11470
enik Tester
Feb 21, 2015, 23:40
|
I got the music working *sometimes*, by changing the delay of VDP's irq6 timer to an arbitrary greater value. I uploaded a diff file of one of the hacks I tried. Without the change, the level introduction was always mute in my tests. |
---|