Preparing for upcoming 3.7.3 release.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2557 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2012-10-22 23:23:32 +00:00
parent 99d79bdd67
commit 7e198cb34d
4 changed files with 32 additions and 31 deletions

View File

@ -12,7 +12,7 @@
Release History Release History
=========================================================================== ===========================================================================
3.7.2 to 3.8: (xxx xx, 2012) 3.7.2 to 3.7.3: (xxx xx, 2012)
* Note: because of TIA/RIOT changes, the state file format has changed * Note: because of TIA/RIOT changes, the state file format has changed
again, and old state files will not work with this release. again, and old state files will not work with this release.

View File

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

View File

@ -30,7 +30,7 @@
#include "StateManager.hxx" #include "StateManager.hxx"
#define STATE_HEADER "03070103state" #define STATE_HEADER "03070300state"
#define MOVIE_HEADER "03030000movie" #define MOVIE_HEADER "03030000movie"
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

View File

@ -3,6 +3,7 @@
#include <fstream> #include <fstream>
#include <sstream> #include <sstream>
#include <cstring> #include <cstring>
#include <cstdlib>
using namespace std; using namespace std;