This commit is contained in:
parent
cb6451efa3
commit
a4880148d0
3 changed files with 9 additions and 5 deletions
|
@ -92,7 +92,7 @@ public:
|
||||||
*/
|
*/
|
||||||
// Memcard filenames (not using else, to make sure its correct)
|
// Memcard filenames (not using else, to make sure its correct)
|
||||||
#if defined(__TERRITORY_USA__)
|
#if defined(__TERRITORY_USA__)
|
||||||
#define MEMCARD_BASE_FILENAME "BASLUS-00000"
|
#define MEMCARD_BASE_FILENAME "BASLUS-01352"
|
||||||
#endif
|
#endif
|
||||||
#if defined(__TERRITORY_UK__)
|
#if defined(__TERRITORY_UK__)
|
||||||
#define MEMCARD_BASE_FILENAME "BESLES-00000"
|
#define MEMCARD_BASE_FILENAME "BESLES-00000"
|
||||||
|
|
|
@ -92,7 +92,7 @@ private:
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
SAVELOAD_HEADERID=1,
|
SAVELOAD_HEADERID=2,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -95,6 +95,10 @@ static const int NORMAL__FRAME_H=160;
|
||||||
static const int WANT_TO_SAVE__FRAME_W=NORMAL__FRAME_W;
|
static const int WANT_TO_SAVE__FRAME_W=NORMAL__FRAME_W;
|
||||||
static const int WANT_TO_SAVE__FRAME_H=96;
|
static const int WANT_TO_SAVE__FRAME_H=96;
|
||||||
|
|
||||||
|
#define SAVENAME "SBSP"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*----------------------------------------------------------------------
|
/*----------------------------------------------------------------------
|
||||||
Function:
|
Function:
|
||||||
Purpose:
|
Purpose:
|
||||||
|
@ -289,7 +293,7 @@ void CSaveScene::think(int _frames)
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
setMode(MODE__SAVING);
|
setMode(MODE__SAVING);
|
||||||
if(!m_saveLoadDatabase->startSave("blah"))
|
if(!m_saveLoadDatabase->startSave(SAVENAME))
|
||||||
{
|
{
|
||||||
setMode(MODE__SAVEERROR);
|
setMode(MODE__SAVEERROR);
|
||||||
}
|
}
|
||||||
|
@ -378,7 +382,7 @@ void CSaveScene::think(int _frames)
|
||||||
if(m_userResponse==USERRESPONSE__OK)
|
if(m_userResponse==USERRESPONSE__OK)
|
||||||
{
|
{
|
||||||
setMode(MODE__SAVING);
|
setMode(MODE__SAVING);
|
||||||
if(!m_saveLoadDatabase->startSave("blah"))
|
if(!m_saveLoadDatabase->startSave(SAVENAME))
|
||||||
{
|
{
|
||||||
setMode(MODE__SAVEERROR);
|
setMode(MODE__SAVEERROR);
|
||||||
}
|
}
|
||||||
|
@ -422,7 +426,7 @@ void CSaveScene::think(int _frames)
|
||||||
if(m_userResponse==USERRESPONSE__YES)
|
if(m_userResponse==USERRESPONSE__YES)
|
||||||
{
|
{
|
||||||
setMode(MODE__SAVING);
|
setMode(MODE__SAVING);
|
||||||
if(!m_saveLoadDatabase->startSave("blah",0))
|
if(!m_saveLoadDatabase->startSave(SAVENAME,0))
|
||||||
{
|
{
|
||||||
setMode(MODE__SAVEERROR);
|
setMode(MODE__SAVEERROR);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue