mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-12-26 11:11:49 +01:00
finalize 4.1.2
This commit is contained in:
parent
b28a03c0da
commit
6b82d72cb5
@ -1,9 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<app version="1">
|
<app version="1">
|
||||||
<name>Snes9X GX</name>
|
<name>Snes9X GX</name>
|
||||||
<coder>Tantric, michniewski</coder>
|
<coder>Tantric</coder>
|
||||||
<version>4.1.0</version>
|
<version>4.1.2</version>
|
||||||
<release_date>20090916</release_date>
|
<release_date>20091007</release_date>
|
||||||
<short_description>Super Nintendo Emulator</short_description>
|
<short_description>Super Nintendo Emulator</short_description>
|
||||||
<long_description>
|
<long_description>
|
||||||
A Super Nintendo Emulator for Wii
|
A Super Nintendo Emulator for Wii
|
||||||
|
@ -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 |
|
| http://code.google.com/p/snes9x-gx |
|
||||||
| (Under GPL License) |
|
| (Under GPL License) |
|
||||||
`¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨'
|
`¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨'
|
||||||
@ -29,7 +29,7 @@ Wii homebrew is WiiBrew (www.wiibrew.org).
|
|||||||
| FEATURES |
|
| FEATURES |
|
||||||
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
|
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
|
||||||
|
|
||||||
* Based on Snes9x 1.51 - superior ROM compatibility
|
* Based on Snes9x 1.51
|
||||||
* Wiimote, Nunchuk, Classic, and Gamecube controller support
|
* Wiimote, Nunchuk, Classic, and Gamecube controller support
|
||||||
* SNES Superscope, Mouse, Justifier support
|
* SNES Superscope, Mouse, Justifier support
|
||||||
* Cheat support
|
* Cheat support
|
||||||
@ -46,6 +46,11 @@ Wii homebrew is WiiBrew (www.wiibrew.org).
|
|||||||
| UPDATE HISTORY |
|
| 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]
|
[4.1.1 - September 19, 2009]
|
||||||
|
|
||||||
* Fixed black screen bug
|
* Fixed black screen bug
|
||||||
|
@ -277,7 +277,8 @@ decodePrefsData ()
|
|||||||
result = false; // reset settings
|
result = false; // reset settings
|
||||||
else if(verMajor == 4 && verMinor == 0 && verPoint < 2) // anything less than 4.0.2
|
else if(verMajor == 4 && verMinor == 0 && verPoint < 2) // anything less than 4.0.2
|
||||||
result = false; // reset settings
|
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
|
result = false; // reset settings
|
||||||
else
|
else
|
||||||
result = true;
|
result = true;
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
#include "filelist.h"
|
#include "filelist.h"
|
||||||
|
|
||||||
#define APPNAME "Snes9x GX"
|
#define APPNAME "Snes9x GX"
|
||||||
#define APPVERSION "4.1.1"
|
#define APPVERSION "4.1.2"
|
||||||
#define APPFOLDER "snes9x"
|
#define APPFOLDER "snes9x"
|
||||||
#define PREF_FILE_NAME "settings.xml"
|
#define PREF_FILE_NAME "settings.xml"
|
||||||
|
|
||||||
|
@ -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.1">
|
<app version="4.1.2">
|
||||||
<file url="http://snes9x-gx.googlecode.com/files/Snes9x%20GX%204.1.1%20-%20Wii.zip"></file>
|
<file url="http://snes9x-gx.googlecode.com/files/Snes9x%20GX%204.1.2%20-%20Wii.zip"></file>
|
||||||
</app>
|
</app>
|
||||||
|
Loading…
Reference in New Issue
Block a user