Skip to content

Commit

Permalink
Removed self-assignment...doesn't seem to be in original snes9x code.
Browse files Browse the repository at this point in the history
  • Loading branch information
trafficwise committed Apr 6, 2017
1 parent cb97472 commit 35ddd9d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion snes9x/c4.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,6 @@ void C4Op1F (void)
{
tanval = (double) C41FYVal / C41FXVal;
C41FAngleRes = (int16) (atan(tanval) / (C4_PI * 2) * 512);
C41FAngleRes = C41FAngleRes;
if (C41FXVal< 0)
C41FAngleRes += 0x100;
C41FAngleRes &= 0x1FF;
Expand Down

0 comments on commit 35ddd9d

Please sign in to comment.