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

« back to all changes in this revision

Viewing changes to src/nes/input/shadow.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:
122
122
  if(ptr[8]&7 && (!(ZD.mzb&7)))
123
123
   ZD.bogo=5;
124
124
 
125
 
  ZD.mzx=(uint32)MDFN_de32lsb(ptr + 0);
126
 
  ZD.mzy=(uint32)MDFN_de32lsb(ptr + 4);
 
125
  ZD.mzx = (int32)MDFN_de32lsb(ptr + 0) >> 16;
 
126
  ZD.mzy = (int32)MDFN_de32lsb(ptr + 4) >> 16;
127
127
  ZD.mzb=ptr[8];
128
128
 
129
129
  NESPPU_TranslateMouseXY(ZD.mzx, ZD.mzy);