finalize 3.1.3

This commit is contained in:
dborth 2009-12-23 22:55:25 +00:00
parent ac50132052
commit 4e2f798827
5 changed files with 20 additions and 9 deletions

View File

@ -2,8 +2,8 @@
<app version="1">
<name>FCE Ultra GX</name>
<coder>Tantric</coder>
<version>3.1.2</version>
<release_date>20091202</release_date>
<version>3.1.3</version>
<release_date>20091223</release_date>
<short_description>Nintendo Emulator</short_description>
<long_description>A port of FCE Ultra to the Wii.</long_description>
</app>

View File

@ -1,7 +1,7 @@
¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤°`°¤ø,¸,ø¤°`°¤ø,¸¸,ø¤
- FCE Ultra GX -
Version 3.1.2
Version 3.1.3
http://code.google.com/p/fceugc
(Under GPL License)
@ -33,6 +33,16 @@ Wii/GameCube.
|0O×øo· UPDATE HISTORY ·oø×O0|
`¨•¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨ ¨¨¨¨¨¨¨¨¨¨¨¨¨'
[3.1.3 - December 23, 2009]
* Fixed major file loading issue, more games load now
* File browser now scrolls down to the last game when returning to browser
* Auto update for those using USB now works
* Fixed scrollbar up/down buttons
* Fixed zapper
* Updates from FCEUX
* Minor optimizations
[3.1.2 - December 2, 2009]
* Fixed SMB (for real this time!)

View File

@ -17,7 +17,7 @@
#include "driver.h"
#define APPNAME "FCE Ultra GX"
#define APPVERSION "3.1.2"
#define APPVERSION "3.1.3"
#define APPFOLDER "fceugx"
#define PREF_FILE_NAME "settings.xml"
@ -67,7 +67,7 @@ struct SGCSettings{
char SaveFolder[MAXPATHLEN]; // Path to save files
char CheatFolder[MAXPATHLEN]; // Path to cheat files
char smbip[16];
char smbip[80];
char smbuser[20];
char smbpwd[20];
char smbshare[20];

View File

@ -3731,7 +3731,7 @@ static int MenuSettingsNetwork()
switch (ret)
{
case 0:
OnScreenKeyboard(GCSettings.smbip, 16);
OnScreenKeyboard(GCSettings.smbip, 80);
break;
case 1:
@ -3751,7 +3751,8 @@ static int MenuSettingsNetwork()
{
firstRun = false;
strncpy (options.value[0], GCSettings.smbip, 15);
strncpy (options.value[0], GCSettings.smbip, 25);
options.value[0][25] = 0;
strncpy (options.value[1], GCSettings.smbshare, 19);
strncpy (options.value[2], GCSettings.smbuser, 19);
strncpy (options.value[3], GCSettings.smbpwd, 19);

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<app version="3.1.2">
<file url="http://fceugc.googlecode.com/files/FCE%20Ultra%20GX%203.1.2%20-%20Wii.zip"></file>
<app version="3.1.3">
<file url="http://fceugc.googlecode.com/files/FCE%20Ultra%20GX%203.1.3.zip"></file>
</app>