SF [ 2046984 ] Player 3 inputs when not used

This commit is contained in:
zeromus 2008-08-12 07:32:44 +00:00
parent 95b126c1cb
commit b6bad1295e
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,8 @@
---version 2.0.2 released---
12-aug-2008 - punkrockguy318 - SDL: Saner sound defaults for less choppy sound
12-aug-2008 - punkrockguy318 - SF [ 2047050 ] SDL: "--special" option fixed for special video scaling filters
12-aug-2008 - zeromus - SF [ 2046984 ] Player 3 inputs when not used
12-aug-2008 - zeromus - print a special message when trying to open an FCM reminding user to convert. (finishes SF [ 2011832 ] Opening non movie file crashes FCEUX)
12-aug-2008 - zeromus - SF [ 2046985 ] SRAM not wiped on power cycle (during movies)
11-aug-2008 - zeromus - restore IPS patching capability which was lost when archive support was added

View File

@ -220,12 +220,12 @@ static void LoadGP(int w, MovieRecord* mr)
if(w==0)
{
joy[0] = mr->joysticks[0];
joy[2] = mr->joysticks[2];
if(FSAttached) joy[2] = mr->joysticks[2];
}
else
{
joy[1] = mr->joysticks[1];
joy[3] = mr->joysticks[3];
if(FSAttached) joy[3] = mr->joysticks[3];
}
}