Skip to content

Commit

Permalink
finalize 3.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
dborth committed Jul 15, 2010
1 parent 61c1ec7 commit e965719
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 9 deletions.
4 changes: 2 additions & 2 deletions hbc/meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<app version="1">
<name>FCE Ultra GX</name>
<coder>Tantric</coder>
<version>3.1.8</version>
<release_date>20100620</release_date>
<version>3.1.9</version>
<release_date>20100714</release_date>
<short_description>Nintendo Emulator</short_description>
<long_description>A port of FCE Ultra to the Wii.</long_description>
</app>
11 changes: 10 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
�,���`���,��,���`���,�,���`���,��,���`���,�,���`���,��,���`���,�,���`���,��,��

- FCE Ultra GX -
Version 3.1.8
Version 3.1.9
http://code.google.com/p/fceugc
(Under GPL License)

Expand Down Expand Up @@ -33,6 +33,15 @@ Wii/GameCube.
|0O��o� UPDATE HISTORY �o��O0|
`������� ���������������� ��������������� �������������������� �������������'

[3.1.9 - July 14, 2010]

* Fixed 16:9 correction in Original mode
* Fixed PAL/NTSC timing switching issue
* Ability to use both USB ports (requires updated IOS 202 - WARNING: older
versions of IOS 202 are NO LONGER supported)
* Hide non-ROM files
* Other minor improvements

[3.1.8 - June 20, 2010]

* USB improvements
Expand Down
2 changes: 1 addition & 1 deletion source/fceugx.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include "fceultra/driver.h"

#define APPNAME "FCE Ultra GX"
#define APPVERSION "3.1.8"
#define APPVERSION "3.1.9"
#define APPFOLDER "fceugx"
#define PREF_FILE_NAME "settings.xml"

Expand Down
6 changes: 3 additions & 3 deletions source/fileop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -530,9 +530,9 @@ bool ParseDirEntries()
if(ext == NULL)
continue;

if( stricmp(p, "nes") != 0 && stricmp(p, "fds") != 0 &&
stricmp(p, "nsf") != 0 && stricmp(p, "unf") != 0 &&
stricmp(p, "nez") != 0 && stricmp(p, "unif") != 0 &&
if( stricmp(ext, "nes") != 0 && stricmp(ext, "fds") != 0 &&
stricmp(ext, "nsf") != 0 && stricmp(ext, "unf") != 0 &&
stricmp(ext, "nez") != 0 && stricmp(ext, "unif") != 0 &&
stricmp(ext, "zip") != 0 && stricmp(ext, "7z") != 0)
continue;
}
Expand Down
4 changes: 2 additions & 2 deletions update.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<app version="3.1.8">
<file url="http://fceugc.googlecode.com/files/FCE%20Ultra%20GX%203.1.8.zip"></file>
<app version="3.1.9">
<file url="http://fceugc.googlecode.com/files/FCE%20Ultra%20GX%203.1.9.zip"></file>
</app>

0 comments on commit e965719

Please sign in to comment.