diff --git a/changelog.txt b/changelog.txt index 26d7d570..6801f4cc 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,4 @@ +28-april-2010 - ugetab - Added microphone support option. When enabled, Port 2 Start activates the Microphone. Movies also support this. 25-april-2010 - FatRatKnight - Fixed a potential desync that plays out an extra frame without an update to the frame count involving heavy lua use, joypad.get, and a loadstate. 23-april-2010 - ugetab - Win32 - Added Tools>GUI option to partially disable visual themes, so the emulator can be made to look like it did in 2.1.1 and earlier releases. 20-april-2010 - adelikat - New lua functions movie.ispoweron() and movie.isfromsavestate() diff --git a/src/input.cpp b/src/input.cpp index a9ff4e33..a39b65d2 100644 --- a/src/input.cpp +++ b/src/input.cpp @@ -127,16 +127,13 @@ static DECLFR(JPRead) // Not verified against hardware. if (replaceP2StartWithMicrophone) { - // This line is iffy, may cause trouble. Needs more testing. - if (joy_readbit[1] >= 8) { - if (joy[1]&8) { - microphone = !microphone; - if (microphone) { - ret|=4; - } - } else { - microphone = false; + if (joy[1]&8) { + microphone = !microphone; + if (microphone) { + ret|=4; } + } else { + microphone = false; } } diff --git a/vc/Help/fceux.hnd b/vc/Help/fceux.hnd index 84afca6e..83196e90 100644 Binary files a/vc/Help/fceux.hnd and b/vc/Help/fceux.hnd differ