Fixed compile warning in VS2012, and bumped version #.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2622 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2013-02-23 02:09:33 +00:00
parent 340adfe4ab
commit 07ded07acc
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
#include <cstdlib>
#define STELLA_VERSION "3.8"
#define STELLA_VERSION "3.9_pre1"
#define STELLA_BUILD atoi("$Rev$" + 6)
#endif

View File

@ -560,7 +560,7 @@ inline void TIA::startFrame()
mySystem->resetCycles();
// Setup clocks that'll be used for drawing this frame
myClockWhenFrameStarted = -clocks;
myClockWhenFrameStarted = -1 * clocks;
myClockStartDisplay = myClockWhenFrameStarted;
myClockStopDisplay = myClockWhenFrameStarted + myStopDisplayOffset;
myClockAtLastUpdate = myClockStartDisplay;