Yet another XML fix

This commit is contained in:
Angelo Salese 2013-01-28 03:11:35 +00:00
parent d8e186f367
commit 02ed13b546
2 changed files with 4 additions and 4 deletions

View File

@ -190,7 +190,7 @@
Clockwork Knight: Pepperouchau no Fukubukuro (Japan) [GS-9074] | (cknightc) Seems playable bug hangs sometimes?
Clockwork Knight: Pepperouchau's Adventure Gekan (Japan) [GS-9029] | (cknight2j) Seems playable bug hangs sometimes?
Clockwork Knight: Pepperouchau's Adventure Joukan (Japan) [GS-9004] | (cknightj) Seems playable bug hangs sometimes?
Clockworks (Japan) [T-22302G] | (clockwrk)
Clockwerx (Japan) [T-22302G] | (clockwrk)
Code R (Japan) [T-23502G] | (coder)
Columns Arcade Collection (Japan) (Sega Ages) [GS-9161] | (columns)
Command & Conquer (Japan) [GS-9131] | (commconqj)
@ -3153,7 +3153,7 @@ Olympic Soccer (Fra) T-7904H-09
<!-- Identifying ClockWerx (Japan)... -->
<software name="clockwrk" supported="no">
<description>Clockworks (Jpn)</description>
<description>ClockWerx (Jpn)</description>
<year>1996</year>
<publisher>Tokuma Shoten</publisher>
<info name="serial" value="T-22302G"/>
@ -15705,7 +15705,7 @@ Olympic Soccer (Fra) T-7904H-09
<!-- Identifying ClockWerx (T-22302G)... -->
<software name="clockwrka" cloneof="clockwrk" supported="no">
<description>Clockworks (Jpn, Alt)</description>
<description>ClockWerx (Jpn, Alt)</description>
<year>1996</year>
<publisher>Tokuma Shoten</publisher>
<info name="serial" value="T-22302G"/>

View File

@ -225,11 +225,11 @@ static int get_track_index(void)
static void cr_standard_return(UINT16 cur_status)
{
cd_stat |= CD_STAT_PERI;
cr1 = cur_status | (playtype << 7) | 0x00 | (cdda_repeat_count & 0xf); //options << 4 | repeat & 0xf
cr2 = (cur_track == 0xff) ? 0xffff : (cdrom_get_adr_control(cdrom, cur_track)<<8 | cur_track); // TODO: fix current track
cr3 = (get_track_index()<<8) | (cd_curfad>>16); //index & 0xff00
cr4 = cd_curfad;
cd_stat |= CD_STAT_PERI;
}
static void cd_free_block(blockT *blktofree);