PCSX2 - Widescreen Game Patches
I was interested in playing TM Black and it feels like the widescren patch is messing up with the controller, with it enabled the controller stops working after a level or in menus at least it feels that way.
Reply

Sponsored links

(PATCH NOTES)

gametitle= Portal Runner NTSC-U (SLUS-20003)
comment= Portal Runner NTSC-U (SLUS-20003) Widescreen Hack by VIRGIN KLM

//P1 Screen
patch=1,EE,0030ADD0,word,3FA1C40E // 3FD7B013

//P2 Screen
patch=1,EE,0030B000,word,3FA1C40E // 3FD7B013

//L1 R1 to L2 R2.then.L1 TO R1..modifying R.Joy=blackscreen
patch=1,EE,001e7154,word,0803f414
patch=1,EE,000fd050,word,00c0c821
patch=1,EE,000fd054,word,08079c57
patch=1,EE,000fd058,word,24030070
patch=1,EE,001e71c4,word,0803f417
patch=1,EE,000fd05c,word,87240002
patch=1,EE,000fd060,word,3085f0ff
patch=1,EE,000fd064,word,93260012
patch=1,EE,000fd068,word,93270013
patch=1,EE,000fd06c,word,93280010
patch=1,EE,000fd070,word,93290011
patch=1,EE,000fd074,word,30810100
patch=1,EE,000fd078,word,34a30800
patch=1,EE,000fd07c,word,0061280b
patch=1,EE,000fd080,word,a3260011
patch=1,EE,000fd084,word,30810200
patch=1,EE,000fd088,word,34a30400
patch=1,EE,000fd08c,word,0061280b
patch=1,EE,000fd090,word,a3270010
patch=1,EE,000fd094,word,30810400
patch=1,EE,000fd098,word,34a30100
patch=1,EE,000fd09c,word,0061280b
patch=1,EE,000fd0a0,word,a3280012
patch=1,EE,000fd0a4,word,30810800
patch=1,EE,000fd0a8,word,34a30200
patch=1,EE,000fd0ac,word,0061280b
patch=1,EE,000fd0b0,word,a3290013
patch=1,EE,000fd0b4,word,03e00008
patch=1,EE,000fd0b8,word,a7250002
...............
...............
For "Portal Runner NTSC", controller remapper works, if you don't try to fix the "dual inverted Right Joystick Camera"
...............
...............
For "Jet X20", pnatch patcher will not apply the widescreen patch, it says something like "Can't Identify .iso Filesystem".............rebuilding with "the cddvdgen', gives same error, just rebuilding with "ultraiso, changing file properties to "UDF" and "DOS8.3"........gives same error.

I forget how I got it to patch the last time, maybe, i took the SLUS file and placed it in another ps2 iso, patched it and then returned it............when that game is widescreen patched "jet x2O", it has slowdown............only Starwars Battlefront 1 and 2, also have some slowdown when widescreen patched, haven't encounted anyothers (slowdown after widescreen patch) on the PS2 Phat using Open PS2 Loader.
Reply
Request for a widescreen pnach for

Rolling PAL region SLES-51906

   
Reply
I'd like to request an ultrawide patch for Rule of Rose (preferably the US version). I have no idea how to alter the existing patch to make it work for ultrawide resolutions (21:9, such as 2560x1080), and hoping someone here has the knowledge for how to tweak it Wink

Any help would be most appreciated <3


Attached Files
.pnach   F3FD313E.pnach (Size: 737 bytes / Downloads: 113)
Reply
gametitle=Metal Gear Solid 2 - Substance (NTSC-U)

//Skateboard - Mini game
patch=1,EE,003c054c,word,3f400000 //3f800000

Credit to Esppiral

Note: You need to disable the normal widescreen hack in order to access this game.

just change
patch=1,EE,0011fee0,word,3c013f40
to
//patch=1,EE,0011fee0,word,3c013f40


Attached Files Thumbnail(s)
   
Reply
(10-18-2021, 09:09 PM)Red-tv Wrote: gametitle=Metal Gear Solid 2 - Substance (NTSC-U)

//Skateboard - Mini game
patch=1,EE,003c054c,word,3f400000 //3f800000

Credit to Esppiral

Note: You need to disable the normal widescreen hack in order to access this game.

just change
patch=1,EE,0011fee0,word,3c013f40
to
//patch=1,EE,0011fee0,word,3c013f40

Or you can use the E-type conditional codes (or D-type, use whichever suits you) to avoid manually disabling or enabling the cheats like this:

Code:
//Main Game
patch=1,EE,e0010c28,extended,00100010
patch=1,EE,2011fee0,extended,3c013f40

//Skateboard - Mini game
patch=1,EE,e0021c28,extended,00100010
patch=1,EE,2011fee0,extended,dfbf0030
patch=1,EE,203c054c,extended,3f400000 //3f800000

Though I have to report that the mini game WS patch seemingly doesn't work (I can't see the differences from the stock 4:3 FOV)
Also, for some reason, E-type codes won't function properly in PCSX2 if the cheats below it are in "byte/short/word" datatype and must be changed to "extended" (It will ignores the condition and tries to execute all the codes at the same time).
[Image: cGzK8nC.gif]
Reply
(10-19-2021, 06:38 AM)BloodRaynare Wrote: Or you can use the E-type conditional codes (or D-type, use whichever suits you) to avoid manually disabling or enabling the cheats like this:

Code:
//Main Game
patch=1,EE,e0010c28,extended,00100010
patch=1,EE,2011fee0,extended,3c013f40

//Skateboard - Mini game
patch=1,EE,e0021c28,extended,00100010
patch=1,EE,2011fee0,extended,dfbf0030
patch=1,EE,203c054c,extended,3f400000 //3f800000

Though I have to report that the mini game WS patch seemingly doesn't work (I can't see the differences from the stock 4:3 FOV)
Also, for some reason, E-type codes won't function properly in PCSX2 if the cheats below it are in "byte/short/word" datatype and must be changed to "extended" (It will ignores the condition and tries to execute all the codes at the same time).

Thanks, I tried to do it myself but couldn't do that
any chance for black bars remove?
Reply
(10-19-2021, 09:29 PM)Red-tv Wrote: Thanks, I tried to do it myself but couldn't do that
any chance for black bars remove?

In the main MGS2 game? I'll see what can I do.
But, hopefully the game's already render the subtitles with outlines so it wouldn't hard to read them if the black bars are removed.
[Image: cGzK8nC.gif]
Reply
(10-17-2021, 05:17 PM)Tetris5 Wrote: I was interested in playing TM Black and it feels like the widescren patch is messing up with the controller, with it enabled the controller stops working after a level or in menus

Would it be possible to provide the following information?
  1. Which PCSX2 build are you using?
  2. Which variant of TMB are you playing?
  3. Are you using save states?
  4. Would it be possible to provide detailed reproduction steps?
Some parts of the TMB widescreen hacks overwrite the scePadGetFrameCount function's MIPS instructions (starts at address 20205510 in the NTSC-U retail version). But that function is orphaned from what I can tell. So it shouldn't have any impact in practice unless there's a flaw in my logic.

I haven't been able to get controls to stop working in any of my own testing (at least so far).


(10-17-2021, 05:17 PM)Tetris5 Wrote: at least it feels that way.

Could you elaborate on what you mean by it feeling that way? Wouldn't controls either work or not work (nothing in-between)?
Reply
gametitle=Shadow Man - 2econd Coming (E)(SLES-50446)

comment=Widescreen Hack by Arapapa

//Widescreen hack 16:9...patch SLES_504.46 file only.official iop patch applied

//X-Fov
patch=1,EE,002b9534,word,3FE38E08 //3faaaaab
patch=1,EE,002b955c,word,3FE38E08 //3faaaaab

//CONFIGURATION 4 in game, R.Joy Up/Down Swap, L1toR1.L1toL2.L2toR2
patch=1,EE,001f6d1c,word,0803f414
patch=1,EE,000fd050,word,00c0c821
patch=1,EE,000fd054,word,0807db49
patch=1,EE,000fd058,word,24030070
patch=1,EE,001f6d8c,word,0803f417
patch=1,EE,000fd05c,word,87240002
patch=1,EE,000fd060,word,3085f0ff
patch=1,EE,000fd064,word,93260012
patch=1,EE,000fd068,word,93270013
patch=1,EE,000fd06c,word,93280010
patch=1,EE,000fd070,word,93290011
patch=1,EE,000fd074,word,30810100
patch=1,EE,000fd078,word,34a30400
patch=1,EE,000fd07c,word,0061280b
patch=1,EE,000fd080,word,a3260010
patch=1,EE,000fd084,word,30810200
patch=1,EE,000fd088,word,34a30100
patch=1,EE,000fd08c,word,0061280b
patch=1,EE,000fd090,word,a3270012
patch=1,EE,000fd094,word,30810400
patch=1,EE,000fd098,word,34a30800
patch=1,EE,000fd09c,word,0061280b
patch=1,EE,000fd0a0,word,a3280011
patch=1,EE,000fd0a4,word,30810800
patch=1,EE,000fd0a8,word,34a30200
patch=1,EE,000fd0ac,word,0061280b
patch=1,EE,000fd0b0,word,a3290013
patch=1,EE,000fd0b4,word,93210005
patch=1,EE,000fd0b8,word,382a00ff
patch=1,EE,000fd0bc,word,a7250002
patch=1,EE,000fd0c0,word,03e00008
patch=1,EE,000fd0c4,word,a32a0005
................
................
NEW PATCH RELEASED
https://www.romhacking.net/hacks/4845/

First Patch (WITH THE FIX), then widescreen and controller pnatch (ONE PATCH)
you must only use the pnatch patcher on the SLES file, if you choose to select also "PS2CODE.BIN" GAME WILL FREE AT STARTUP ON BLACK SCREEN

(USING Open ps2 loader PHAT PS2, enable..."mode 2 + MDMA0" (fixes screen jitter, same also fixes for Soul Reaver 2 and Drop Ship, other games too)

CONFIGURATION 4 IN GAME
Left Hand Weapon = L1
Right Hand Weapon = R1
Jump = R2
Dodge/Duck = L2

(this makes it easier to "duck and shoot" at small enemies, this could be a BIG PROBLEM)
****************
The reason is asthetic, originally, left and right hand was r1 and r2 shoulders, but it can just seem odd to have left and right hand movements on the right side of the controller.
Reply




Users browsing this thread: 31 Guest(s)