mirror of https://github.com/stella-emu/stella.git
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:
parent
402b13afd7
commit
c29a6b26c2
|
@ -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));
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
|
Loading…
Reference in New Issue