~ubuntu-branches/debian/experimental/mednafen/experimental

« back to all changes in this revision

Viewing changes to src/psx/mdec.cpp

  • Committer: Package Import Robot
  • Author(s): Stephen Kitt
  • Date: 2012-11-19 07:00:37 UTC
  • mfrom: (1.2.12)
  • Revision ID: package-import@ubuntu.com-20121119070037-jvknrm13zvim88oc
Tags: 0.9.26-1
* New upstream WIP version.
* Change priority to "extra" to match libvorbisidec1's.
* Drop "DM-Upload-Allowed" since it is no longer appropriate.
* Refresh patches, replacing MPC_STATUS_FAIL constant from older mpcdec
  versions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
432
432
 }
433
433
 else
434
434
 {
 
435
  puts("BONUS GNOMES");
435
436
  V = rand();
436
437
 }
437
438
 return(V);
439
440
 
440
441
bool MDEC_DMACanRead(void)
441
442
{
442
 
 return (OutBuffer.CanRead() >= 2) || ((Command & 0xF5FF0000) != 0x30000000);
 
443
 return(OutBuffer.CanRead() >= 2); //(OutBuffer.CanRead() >= 2) || ((Command & 0xF5FF0000) != 0x30000000);
443
444
}
444
445
 
445
446
void MDEC_Write(const pscpu_timestamp_t timestamp, uint32 A, uint32 V)