PCSX2 / pcsx2_patches

Patches for Widescreen, No Interlace etc go in here, syncs with the main repo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Widescreen Patch Problem with Ratchet & Clank: Up Your Arsenal Multiplayer

isaac-lal opened this issue · comments

https://github.com/PCSX2/pcsx2_patches/blob/main/patches/SCUS-97353_49536F3F.pnach

Essentially, whenever you scope in with the sniper and switch to a different weapon, the FOV is reverted to the built in 16:9 and stays reverted until death.

https://www.youtube.com/watch?v=490GLp105aA

Is it possible to fix this?

Disable this for Multiplayer mode:

//Check if running in Single player
patch=1,EE,E005DC82,extended,0013B052
patch=1,EE,200C004C,extended,0804EC17
patch=1,EE,200C00A0,extended,0804EC21
patch=1,EE,2013B054,extended,08030000
patch=1,EE,2013B07C,extended,08030015
patch=1,EE,001439FD,byte,00000001 //Force built-in widescreen

Disable this for Single player mode:

//Check if running in Multiplayer
patch=1,EE,E005DC82,extended,001930B2
patch=1,EE,200C004C,extended,08064C2F
patch=1,EE,200C00A0,extended,08064C39
patch=1,EE,201930B4,extended,08030000
patch=1,EE,201930DC,extended,08030015
patch=1,EE,001A5A3D,byte,00000001 //Force built-in widescreen

Does it make any difference?