ZSNES on MS platforms no longer saves save directory if not changed.
This commit is contained in:
@@ -141,14 +141,17 @@ extern unsigned int ZCloseFile(); //Close_File
|
|||||||
|
|
||||||
#ifdef __LINUX__
|
#ifdef __LINUX__
|
||||||
extern char zcfgdir[1024];
|
extern char zcfgdir[1024];
|
||||||
|
unsigned char changedsavedir = 1; //Set to yes, since savedir is always set and considered to be changed
|
||||||
|
#else
|
||||||
|
unsigned char changedsavedir = 0; //Only set to yes if modified in the paths window
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
char SRAMDir[1024];
|
char SRAMDir[1024];
|
||||||
|
|
||||||
char LoadDriveB[2];
|
char LoadDriveB[2];
|
||||||
char LoadDirB[128];
|
char LoadDirB[128];
|
||||||
|
|
||||||
//extern "C"{
|
|
||||||
unsigned char cfgsoundon = 0;
|
unsigned char cfgsoundon = 0;
|
||||||
unsigned char cfgSoundQuality = 5;
|
unsigned char cfgSoundQuality = 5;
|
||||||
unsigned char cfgStereoSound = 1;
|
unsigned char cfgStereoSound = 1;
|
||||||
@@ -170,8 +173,6 @@ unsigned char JoyStatRead = 0;
|
|||||||
unsigned char pl12s34 = 0;
|
unsigned char pl12s34 = 0;
|
||||||
unsigned char cfgdontsave = 0;
|
unsigned char cfgdontsave = 0;
|
||||||
unsigned char cfgreinittime = 30;
|
unsigned char cfgreinittime = 30;
|
||||||
//}
|
|
||||||
|
|
||||||
|
|
||||||
#define ConvertJoyMapHelp(a,b,c)\
|
#define ConvertJoyMapHelp(a,b,c)\
|
||||||
if(b == c) \
|
if(b == c) \
|
||||||
@@ -561,7 +562,14 @@ void DOScreatenewcfg()
|
|||||||
WRITE_LINE("; Savefile directory. Leave it blank if you want the save files to be in the\r\n");
|
WRITE_LINE("; Savefile directory. Leave it blank if you want the save files to be in the\r\n");
|
||||||
WRITE_LINE("; same directory as the games. It should be in a format like : C:\\dir\\dir\r\n\r\n");
|
WRITE_LINE("; same directory as the games. It should be in a format like : C:\\dir\\dir\r\n\r\n");
|
||||||
|
|
||||||
|
if (changedsavedir)
|
||||||
|
{
|
||||||
sprintf(buffer, "SaveDirectory = %s\r\n\r\n", SRAMDir);
|
sprintf(buffer, "SaveDirectory = %s\r\n\r\n", SRAMDir);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
sprintf(buffer, "SaveDirectory = \r\n\r\n");
|
||||||
|
}
|
||||||
SAVE_LINE(buffer);
|
SAVE_LINE(buffer);
|
||||||
|
|
||||||
WRITE_LINE("; Game directory. This is the directory where the GUI starts at.\r\n");
|
WRITE_LINE("; Game directory. This is the directory where the GUI starts at.\r\n");
|
||||||
|
|||||||
@@ -166,7 +166,8 @@ EXTSYM GUIHQ3X
|
|||||||
EXTSYM GUIHQ4X
|
EXTSYM GUIHQ4X
|
||||||
EXTSYM firstsaveinc
|
EXTSYM firstsaveinc
|
||||||
EXTSYM nssdip1,nssdip2,nssdip3,nssdip4,nssdip5,nssdip6
|
EXTSYM nssdip1,nssdip2,nssdip3,nssdip4,nssdip5,nssdip6
|
||||||
;EXTSYM st010difficulty
|
EXTSYM changedsavedir
|
||||||
|
|
||||||
%ifdef __LINUX__
|
%ifdef __LINUX__
|
||||||
EXTSYM numlockptr
|
EXTSYM numlockptr
|
||||||
%endif
|
%endif
|
||||||
|
|||||||
@@ -1684,6 +1684,7 @@ GUIPathKeys:
|
|||||||
|
|
||||||
cmp dword[GUIInputBox],1
|
cmp dword[GUIInputBox],1
|
||||||
jne .notBox1
|
jne .notBox1
|
||||||
|
mov byte[changedsavedir],1 ;Need this to know if we should save the path
|
||||||
mov eax,SRAMDir
|
mov eax,SRAMDir
|
||||||
jmp .boxselected
|
jmp .boxselected
|
||||||
.notBox1
|
.notBox1
|
||||||
|
|||||||
Reference in New Issue
Block a user