psx - fix bug from r8648

This commit is contained in:
zeromus 2014-12-25 18:21:43 +00:00
parent ffa672fd4a
commit dec5cd46de
1 changed files with 1 additions and 2 deletions

View File

@ -423,12 +423,11 @@ bool PS_CDC::DecodeSubQ(uint8 *subpw)
if((tmp_q[0] & 0xF) == 1)
{
memcpy(SubQBuf_Safe, tmp_q, 0xC);
SubQChecksumOK = subq_check_checksum(tmp_q);
if(SubQChecksumOK)
{
// memcpy(SubQBuf_Safe, tmp_q, 0xC);
memcpy(SubQBuf_Safe, tmp_q, 0xC);
return(true);
}
}