Skip to content

Commit

Permalink
webMAN MOD 1.47.46g
Browse files Browse the repository at this point in the history
- Fixed display of Coverflow for PS3 on screen resolutions 480, 720, 1080
- R2 while mounting now disables CFW syscalls for NPDRM games in HDD and GAMEI, in addition to PS3 games (ISO or JB folders)
  • Loading branch information
aldostools committed Jun 25, 2024
1 parent 5d46a43 commit 782721d
Show file tree
Hide file tree
Showing 11 changed files with 70 additions and 4 deletions.
5 changes: 5 additions & 0 deletions _Projects_/codelists/Batman Arkham City BLUS30978 01.00.ncl
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,9 @@ AoB Infinite Health
dron_3
B 00010000 04000000
B 807E02942C03000040810040 38600080907E029460000000
#
Debug Menu (press R1+START)
0
dron_3
0 00E36504 38600000
#
31 changes: 31 additions & 0 deletions _Projects_/updater/pkgfiles/USRDIR/html/games.html
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,37 @@
.jumpbutton.right {
right: -630px;
}

@media screen and (max-width: 1920px) {
.view {
width: 1920px;
}
div{
zoom: 1;
-moz-transform: scale(1);
-moz-transform-origin: 0 0;
}
}
@media screen and (max-width: 1280px) {
.view {
width: 1280px;
}
div{
zoom: .6;
-moz-transform: scale(.6);
-moz-transform-origin: 0 0;
}
}
@media screen and (max-width: 860px) {
.view {
width: 640px;
}
div{
zoom: .4;
-moz-transform: scale(.4);
-moz-transform-origin: 0 0;
}
}
</style>
</head>
<body>
Expand Down
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 modified _Projects_/updater/update/dev_hdd0/plugins/webftp_server_lite.sprx
Binary file not shown.
Binary file not shown.
31 changes: 31 additions & 0 deletions _Projects_/updater/update/dev_hdd0/xmlhost/game_plugin/games.html
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,37 @@
.jumpbutton.right {
right: -630px;
}

@media screen and (max-width: 1920px) {
.view {
width: 1920px;
}
div{
zoom: 1;
-moz-transform: scale(1);
-moz-transform-origin: 0 0;
}
}
@media screen and (max-width: 1280px) {
.view {
width: 1280px;
}
div{
zoom: .6;
-moz-transform: scale(.6);
-moz-transform-origin: 0 0;
}
}
@media screen and (max-width: 860px) {
.view {
width: 640px;
}
div{
zoom: .4;
-moz-transform: scale(.4);
-moz-transform-origin: 0 0;
}
}
</style>
</head>
<body>
Expand Down
7 changes: 3 additions & 4 deletions include/mount/mount.h
Original file line number Diff line number Diff line change
Expand Up @@ -1732,12 +1732,13 @@ static void mount_thread(u64 action)

if(!ret && !isDir("/dev_bdvd")) show_error(_path);

mounting_done:

// -------------------------------------------------------------------------------------
// remove syscalls hodling R2 (or prevent remove syscall if path contains [online] tag)
// -------------------------------------------------------------------------------------

#ifdef REMOVE_SYSCALLS
else if(mount_unk == EMU_PS3)
if(mount_unk == EMU_PS3 || mount_unk == EMU_GAMEI || mount_unk == EMU_MAX)
{
// check if holding R2 to disable syscalls on PS3
bool r2 = is_pressed(CELL_PAD_CTRL_R2);
Expand All @@ -1746,8 +1747,6 @@ static void mount_thread(u64 action)
}
#endif

mounting_done:

#ifdef COBRA_ONLY

if((mount_unk == EMU_PS3) && (mount_app_home | !(webman_config->app_home)) && _path0 && strcasestr(_path0, ".iso"))
Expand Down

0 comments on commit 782721d

Please sign in to comment.