Yet another tweak to the paddle emulation. Game 4 in Casino now works

correctly for the PAL version of the ROM.  I'm still not really
satisfied with the paddle emulation, but I guess it will do for now.


git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1746 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2009-05-31 17:45:05 +00:00
parent 402b13afd7
commit c29a6b26c2
1 changed files with 2 additions and 2 deletions

View File

@ -299,8 +299,8 @@ void Paddles::update()
}
}
myAnalogPinValue[Five] = (Int32)(1100000 * (myCharge[1] / 255.0));
myAnalogPinValue[Nine] = (Int32)(1100000 * (myCharge[0] / 255.0));
myAnalogPinValue[Five] = (Int32)(1400000 * (myCharge[1] / 255.0));
myAnalogPinValue[Nine] = (Int32)(1400000 * (myCharge[0] / 255.0));
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -