Skip to content

Commit

Permalink
fix SD2SP2
Browse files Browse the repository at this point in the history
  • Loading branch information
dborth committed Jan 31, 2021
1 parent 5929fe9 commit 9aaed4f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ Wii/GameCube.

## UPDATE HISTORY

[3.4.9 - January 31, 2021]

* Fixed SD2SP2 issues
* Changed max game image dimensions to 640x480 to support screenshots

[3.4.8 - January 18, 2021]

* Compiled with latest devkitPPC/libogc
Expand Down
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, Zopenko, Askot, others</coder>
<version>3.4.8</version>
<release_date>20210118</release_date>
<version>3.4.9</version>
<release_date>20210131</release_date>
<short_description>Nintendo Emulator</short_description>
<long_description>A port of FCE Ultra to the Wii.</long_description>
<ahb_access />
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.4.8"
#define APPVERSION "3.4.9"
#define APPFOLDER "fceugx"
#define PREF_FILE_NAME "settings.xml"

Expand Down
1 change: 1 addition & 0 deletions source/fileop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,7 @@ void MountAllFAT()
#else
MountFAT(DEVICE_SD_SLOTA, SILENT);
MountFAT(DEVICE_SD_SLOTB, SILENT);
MountFAT(DEVICE_SD_PORT2, SILENT);
#endif
}

Expand Down
4 changes: 2 additions & 2 deletions source/menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3866,9 +3866,9 @@ static int MenuSettingsFile()
#endif

// correct load/save methods out of bounds
if(GCSettings.LoadMethod > 6)
if(GCSettings.LoadMethod > 7)
GCSettings.LoadMethod = 0;
if(GCSettings.SaveMethod > 6)
if(GCSettings.SaveMethod > 7)
GCSettings.SaveMethod = 0;

if (GCSettings.LoadMethod == DEVICE_AUTO) sprintf (options.value[0],"Auto Detect");
Expand Down

0 comments on commit 9aaed4f

Please sign in to comment.