This commit is contained in:
dborth 2010-04-10 06:33:28 +00:00
parent 2e949e8538
commit 73dcbe4eac
4 changed files with 12 additions and 7 deletions

View File

@ -10,7 +10,7 @@
­———————————————————————————————————————————————————————————————————————————— ­————————————————————————————————————————————————————————————————————————————
×—–­—–­—–­—–­ –­—–­—–­—–­—–­—–­—–­—–­—–­—–­— ­—–­—–­—–­—–­—–­—–­—–­—-­—–­-–•¬ ×—–­—–­—–­—–­ –­—–­—–­—–­—–­—–­—–­—–­—–­—–­— ­—–­—–­—–­—–­—–­—–­—–­—-­—–­-–•¬
|0O×øo· Snes9x GX 4.1.7 ·oø×O0| |0O×øo· Snes9x GX 4.1.8 ·oø×O0|
| http://code.google.com/p/snes9x-gx | | http://code.google.com/p/snes9x-gx |
| (Under GPL License) | | (Under GPL License) |
`¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨' `¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨'
@ -43,6 +43,10 @@ Wii homebrew is WiiBrew (www.wiibrew.org).
| UPDATE HISTORY | | UPDATE HISTORY |
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————• •˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
[4.1.8 - April 9, 2010]
* Fix auto-save bug
[4.1.7 - April 9, 2010] [4.1.7 - April 9, 2010]
* Freezing issue fixed * Freezing issue fixed

View File

@ -516,6 +516,10 @@ int BrowserLoadFile()
if(!IsValidROM()) if(!IsValidROM())
goto done; goto done;
// store the filename (w/o ext) - used for sram/freeze naming
StripExt(Memory.ROMFilename, browserList[browser.selIndex].filename);
strcpy(loadedFile, browserList[browser.selIndex].filename);
SNESROMSize = 0; SNESROMSize = 0;
S9xDeleteCheats(); S9xDeleteCheats();
Memory.LoadROM("ROM"); Memory.LoadROM("ROM");
@ -532,9 +536,6 @@ int BrowserLoadFile()
else if (GCSettings.AutoLoad == 2) else if (GCSettings.AutoLoad == 2)
LoadSnapshotAuto(SILENT); LoadSnapshotAuto(SILENT);
// store the filename (w/o ext) - used for sram/freeze naming
StripExt(Memory.ROMFilename, browserList[browser.selIndex].filename);
strcpy(loadedFile, browserList[browser.selIndex].filename);
ResetBrowser(); ResetBrowser();
loaded = 1; loaded = 1;
} }

View File

@ -20,7 +20,7 @@
#include "filelist.h" #include "filelist.h"
#define APPNAME "Snes9x GX" #define APPNAME "Snes9x GX"
#define APPVERSION "4.1.7" #define APPVERSION "4.1.8"
#define APPFOLDER "snes9xgx" #define APPFOLDER "snes9xgx"
#define PREF_FILE_NAME "settings.xml" #define PREF_FILE_NAME "settings.xml"

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<app version="4.1.7"> <app version="4.1.8">
<file url="http://snes9x-gx.googlecode.com/files/Snes9x%20GX%204.1.7.zip"></file> <file url="http://snes9x-gx.googlecode.com/files/Snes9x%20GX%204.1.8.zip"></file>
</app> </app>