Skip to content

Commit

Permalink
webMAN MOD 1.45.04
Browse files Browse the repository at this point in the history
- Fixed IDPS/PSID offsets for 4.81 DEX
- Fixed regression listing file names in XMB
  • Loading branch information
Aldo Vargas committed Dec 11, 2016
1 parent 974e9e0 commit ba7d367
Show file tree
Hide file tree
Showing 13 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion include/_mount.h
Original file line number Diff line number Diff line change
Expand Up @@ -811,6 +811,7 @@ static void do_umount(bool clean)
#endif //#ifdef COBRA_ONLY
}

#ifdef COBRA_ONLY
static void do_umount_eject(void)
{
do_umount(false);
Expand All @@ -821,6 +822,7 @@ static void do_umount_eject(void)

sys_timer_usleep(4000);
}
#endif //#ifdef COBRA_ONLY

static void get_last_game(char *last_path)
{
Expand Down Expand Up @@ -1170,7 +1172,6 @@ static bool mount_with_mm(const char *_path0, u8 do_eject)
}
}
#endif
#endif

// ------------------
// mount GAMEI game
Expand Down Expand Up @@ -1217,6 +1218,7 @@ static bool mount_with_mm(const char *_path0, u8 do_eject)
}
}
#endif
#endif

// ------------------
// mount PS2 Classic
Expand Down
4 changes: 2 additions & 2 deletions include/firmware.h
Original file line number Diff line number Diff line change
Expand Up @@ -265,12 +265,12 @@ static void detect_firmware(void)
}
else
#endif //#ifndef LAST_FIRMWARE_ONLY
if(c_firmware == 4.80f)
if(c_firmware >= 4.80f && c_firmware <= 4.81f)
{
idps_offset1 = 0x8000000000409A30ULL;
idps_offset2 = 0x800000000049CAF4ULL;
}
else if(c_firmware >= 4.75f && c_firmware <= 4.81f)
else if(c_firmware >= 4.75f && c_firmware <= 4.78f)
{
idps_offset1 = 0x8000000000409930ULL;
idps_offset2 = 0x800000000049CAF4ULL;
Expand Down
4 changes: 3 additions & 1 deletion include/games_html.h
Original file line number Diff line number Diff line change
Expand Up @@ -587,8 +587,10 @@ static int add_net_game(int ns, netiso_read_dir_result_data *data, int v3_entry,

get_title_and_id_from_sfo(templn, tempID, data[v3_entry].name, icon, tempstr, 0);
}
else if(is_html)
{get_name(enc_dir_name, data[v3_entry].name, NO_EXT); htmlenc(templn, enc_dir_name, 1);}
else
{get_name(enc_dir_name, data[v3_entry].name, NO_EXT); if(is_html) htmlenc(templn, enc_dir_name, 1);}
{get_name(templn, data[v3_entry].name, NO_EXT);}

if(data[v3_entry].is_directory && IS_ISO_FOLDER)
{
Expand Down
Binary file modified updater/pkgfiles/USRDIR/webftp_server.sprx
Binary file not shown.
Binary file modified updater/pkgfiles/USRDIR/webftp_server_ccapi.sprx
Binary file not shown.
Binary file modified updater/pkgfiles/USRDIR/webftp_server_english.sprx
Binary file not shown.
Binary file modified updater/pkgfiles/USRDIR/webftp_server_full.sprx
Binary file not shown.
Binary file modified updater/pkgfiles/USRDIR/webftp_server_lite.sprx
Binary file not shown.
Binary file modified updater/pkgfiles/USRDIR/webftp_server_noncobra.sprx
Binary file not shown.
Binary file modified updater/pkgfiles/USRDIR/webftp_server_ps3mapi.sprx
Binary file not shown.
Binary file modified updater/pkgfiles/USRDIR/webftp_server_rebug_cobra_english.sprx
Binary file not shown.
Binary file modified updater/pkgfiles/USRDIR/webftp_server_rebug_cobra_multi23.sprx
Binary file not shown.
Binary file modified updater/pkgfiles/USRDIR/webftp_server_rebug_cobra_ps3mapi.sprx
Binary file not shown.

0 comments on commit ba7d367

Please sign in to comment.