diff --git a/stella/src/common/Version.hxx b/stella/src/common/Version.hxx index 41a427875..b9b2fe9c6 100644 --- a/stella/src/common/Version.hxx +++ b/stella/src/common/Version.hxx @@ -13,13 +13,13 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Version.hxx,v 1.58 2009-05-01 11:25:07 stephena Exp $ +// $Id: Version.hxx,v 1.59 2009-05-02 21:27:32 stephena Exp $ //============================================================================ #ifndef VERSION_HXX #define VERSION_HXX -#define STELLA_BASE_VERSION "2.7.7" +#define STELLA_BASE_VERSION "2.7.8_cvs" #ifdef NIGHTLY_BUILD #define STELLA_VERSION STELLA_BASE_VERSION "pre-" NIGHTLY_BUILD diff --git a/stella/src/emucore/Paddles.cxx b/stella/src/emucore/Paddles.cxx index c0ff694a1..34d7ea1e4 100644 --- a/stella/src/emucore/Paddles.cxx +++ b/stella/src/emucore/Paddles.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Paddles.cxx,v 1.16 2009-01-01 18:13:36 stephena Exp $ +// $Id: Paddles.cxx,v 1.17 2009-05-02 21:27:32 stephena Exp $ //============================================================================ #define TRIGMAX 240 @@ -299,8 +299,8 @@ void Paddles::update() } } - myAnalogPinValue[Five] = (Int32)(1000000 * (myCharge[1] / 255.0)); - myAnalogPinValue[Nine] = (Int32)(1000000 * (myCharge[0] / 255.0)); + myAnalogPinValue[Five] = (Int32)(1100000 * (myCharge[1] / 255.0)); + myAnalogPinValue[Nine] = (Int32)(1100000 * (myCharge[0] / 255.0)); } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -