Skip to content

Commit

Permalink
webMAN MOD 1.47.37
Browse files Browse the repository at this point in the history
- Fixed file name for cached .SFO + PNG extracted from exFAT/NTFS when mounted. Issue #626
  • Loading branch information
aldostools committed Mar 11, 2022
1 parent 715cf89 commit 1450308
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 2 deletions.
Binary file modified _Projects_/updater/pkgfiles/USRDIR/webftp_server_full.sprx
Binary file not shown.
Binary file modified _Projects_/updater/pkgfiles/USRDIR/webftp_server_lite.sprx
Binary file not shown.
Binary file modified _Projects_/updater/pkgfiles/USRDIR/webftp_server_noncobra.sprx
Binary file not shown.
Binary file not shown.
Binary file modified _Projects_/updater/update/dev_hdd0/plugins/webftp_server.sprx
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion include/_mount.h
Original file line number Diff line number Diff line change
Expand Up @@ -1193,7 +1193,7 @@ static void cache_icon0_and_param_sfo(char *destpath)
wait_for("/dev_bdvd", 15);

char *ext = destpath + strlen(destpath);
strcat(ext, ".SFO\0");
strcpy(ext, ".SFO");
dont_copy_same_size = false;

// cache PARAM.SFO
Expand Down
2 changes: 1 addition & 1 deletion include/mount_rawiso.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ if(ntfs_ext)

if(IS(ntfs_ext, ".ntfs[PS3ISO]"))
{
get_name(templn, _path, NO_EXT);
get_name(templn, _path, GET_WMTMP);
cache_icon0_and_param_sfo(templn);
set_bdvd_as_app_home(); // mount (NTFS) PS3ISO in /app_home
#ifdef FIX_GAME
Expand Down

0 comments on commit 1450308

Please sign in to comment.