finalize 4.1.2

This commit is contained in:
dborth 2009-10-07 07:03:05 +00:00
parent b28a03c0da
commit 6b82d72cb5
5 changed files with 15 additions and 9 deletions

View File

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<app version="1">
<name>Snes9X GX</name>
<coder>Tantric, michniewski</coder>
<version>4.1.0</version>
<release_date>20090916</release_date>
<coder>Tantric</coder>
<version>4.1.2</version>
<release_date>20091007</release_date>
<short_description>Super Nintendo Emulator</short_description>
<long_description>
A Super Nintendo Emulator for Wii

View File

@ -10,7 +10,7 @@
­————————————————————————————————————————————————————————————————————————————
×—–­—–­—–­—–­ –­—–­—–­—–­—–­—–­—–­—–­—–­—–­— ­—–­—–­—–­—–­—–­—–­—–­—-­—–­-–•¬
|0O×øo· Snes9x GX 4.1.1 ·oø×O0|
|0O×øo· Snes9x GX 4.1.2 ·oø×O0|
| http://code.google.com/p/snes9x-gx |
| (Under GPL License) |
`¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨'
@ -29,7 +29,7 @@ Wii homebrew is WiiBrew (www.wiibrew.org).
| FEATURES |
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
* Based on Snes9x 1.51 - superior ROM compatibility
* Based on Snes9x 1.51
* Wiimote, Nunchuk, Classic, and Gamecube controller support
* SNES Superscope, Mouse, Justifier support
* Cheat support
@ -46,6 +46,11 @@ Wii homebrew is WiiBrew (www.wiibrew.org).
| UPDATE HISTORY |
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
[4.1.2 - October 7, 2009]
* Revamped filebrowser and file I/O
* Many, many other bug fixes
[4.1.1 - September 19, 2009]
* Fixed black screen bug

View File

@ -277,7 +277,8 @@ decodePrefsData ()
result = false; // reset settings
else if(verMajor == 4 && verMinor == 0 && verPoint < 2) // anything less than 4.0.2
result = false; // reset settings
else if(verMajor > curMajor || verMinor > curMinor || verPoint > curPoint) // some future version
else if((verMajor*100 + verMinor*10 + verPoint) >
(curMajor*100 + curMinor*10 + curPoint)) // some future version
result = false; // reset settings
else
result = true;

View File

@ -20,7 +20,7 @@
#include "filelist.h"
#define APPNAME "Snes9x GX"
#define APPVERSION "4.1.1"
#define APPVERSION "4.1.2"
#define APPFOLDER "snes9x"
#define PREF_FILE_NAME "settings.xml"

View File

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