|
From: <ste...@us...> - 2009-05-31 17:45:13
|
Revision: 1746
http://stella.svn.sourceforge.net/stella/?rev=1746&view=rev
Author: stephena
Date: 2009-05-31 17:45:05 +0000 (Sun, 31 May 2009)
Log Message:
-----------
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.
Modified Paths:
--------------
trunk/src/emucore/Paddles.cxx
Modified: trunk/src/emucore/Paddles.cxx
===================================================================
--- trunk/src/emucore/Paddles.cxx 2009-05-29 10:20:31 UTC (rev 1745)
+++ trunk/src/emucore/Paddles.cxx 2009-05-31 17:45:05 UTC (rev 1746)
@@ -299,8 +299,8 @@
}
}
- 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));
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|