diff --git a/.github/scripts/validate_patches.py b/.github/scripts/validate_patches.py index 7648fe9b..18fa76ef 100644 --- a/.github/scripts/validate_patches.py +++ b/.github/scripts/validate_patches.py @@ -44,6 +44,25 @@ def is_file_valid(file_path): if re.match(",\d{8}(\n|\s*(//.*)*)+(?!.)", line): log_error(file_path, line_number, "Invalid comment syntax at end of patch line.", line, False) return False + elif cleaned_line.startswith("dpatch"): + match = re.match(r"^dpatch=(\d+),(\d+),(\d+)((?:,[\dA-Fa-f]+)+)", line) + if not match: + log_error(file_path, line_number, "Invalid dpatch format.", line, True) + return False + num_tuples = int(match.group(2)) + int(match.group(3)) + dat_str = match.group(4).strip(',').split(',') + if len(dat_str) != num_tuples * 2: + log_error(file_path, line_number, "Invalid dpatch format.", line, True) + return False + for i in range(0, num_tuples, 2): + # Offsets must be hex + if not re.match(r'^[0-9A-Fa-f]+$', dat_str[i]) or not re.match(r'^[0-9A-Fa-f]+$', dat_str[i+1]): + log_error(file_path, line_number, "Invalid dpatch format.", line, True) + return False + # Offsets must be 4 byte aligned + if int(dat_str[i], 16) % 4 != 0: + log_error(file_path, line_number, "Invalid dpatch offset alignment (must be 4 byte aligned).", line, True) + return False else: log_error(file_path, line_number, "Unknown line format.", line, True) return False @@ -73,4 +92,4 @@ def main(): sys.exit(0) if __name__ == '__main__': - main() \ No newline at end of file + main() diff --git a/patches/FF3DB201.pnach b/patches/FF3DB201.pnach index 42707f9f..ac358500 100644 --- a/patches/FF3DB201.pnach +++ b/patches/FF3DB201.pnach @@ -5,7 +5,7 @@ // //[Widescreen 16:9] //gsaspectratio=16:9 -//comment=Widescreen hack by El_Patas (NTSC-J by Arapapa) +//author=El_Patas (NTSC-J by Arapapa) // ////Widescreen hack 16:9 // diff --git a/patches/PBPX-95201_31603A01.pnach b/patches/PBPX-95201_31603A01.pnach index 999820b8..6b3aef70 100644 --- a/patches/PBPX-95201_31603A01.pnach +++ b/patches/PBPX-95201_31603A01.pnach @@ -2,7 +2,7 @@ gametitle=Kensetsu Juuki Kenka Battle - Buchigire Kongou!! [NTSC-J] [PBPX-95201] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas (NTSC-J by Arapapa) +author=El_Patas (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/PBPX-95201_35610B70.pnach b/patches/PBPX-95201_35610B70.pnach index 31fc0aaa..0e1b8d39 100644 --- a/patches/PBPX-95201_35610B70.pnach +++ b/patches/PBPX-95201_35610B70.pnach @@ -1,7 +1,7 @@ [Widescreen 16:9] gsaspectratio=16:9 gametitle=Simple 2000 Series Vol. 11 - The Offroad Buggy(Rebuild) (J)(PBPX-95201)(SLPM-62223) -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/PBPX-95201_AA75FE6A.pnach b/patches/PBPX-95201_AA75FE6A.pnach index 36f41958..61b9d2a5 100644 --- a/patches/PBPX-95201_AA75FE6A.pnach +++ b/patches/PBPX-95201_AA75FE6A.pnach @@ -2,7 +2,7 @@ gametitle=Inaka Kurasi - Nan no Shima no Monogatari (Super Best Collection) [NTS [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/PBPX-95201_BD27FC43.pnach b/patches/PBPX-95201_BD27FC43.pnach index 53cd07db..c8071a0e 100644 --- a/patches/PBPX-95201_BD27FC43.pnach +++ b/patches/PBPX-95201_BD27FC43.pnach @@ -2,7 +2,7 @@ gametitle=Pai Chenjan [NTSC-J] [PBPX-95201](SLPS-20135) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/PBPX-95201_CC0DF99A.pnach b/patches/PBPX-95201_CC0DF99A.pnach index dfb3b9f2..8f521b73 100644 --- a/patches/PBPX-95201_CC0DF99A.pnach +++ b/patches/PBPX-95201_CC0DF99A.pnach @@ -2,7 +2,7 @@ gametitle=Seigi-no Migata (J) (PBPX_95201) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (search 00000000 00000000 43ad1346 00000000) patch=1,EE,0020a7a4,word,3c013f40 // 00000000 hor fov diff --git a/patches/PBPX-95201_CE3B7939.pnach b/patches/PBPX-95201_CE3B7939.pnach index d3232b7b..a55659fa 100644 --- a/patches/PBPX-95201_CE3B7939.pnach +++ b/patches/PBPX-95201_CE3B7939.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 28 - The Bushido Tsujigiri Ichidai (PBPX-95201 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/PBPX-95201_D79F697A.pnach b/patches/PBPX-95201_D79F697A.pnach index 1217b839..da73e0e5 100644 --- a/patches/PBPX-95201_D79F697A.pnach +++ b/patches/PBPX-95201_D79F697A.pnach @@ -2,7 +2,7 @@ gametitle=Capcom vs SNK 2 - Millionaire Fighting (J)(SLPM-65047)(PBPX-95201) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/PBPX-95201_EE68CA13.pnach b/patches/PBPX-95201_EE68CA13.pnach index bdfe77fd..2432d452 100644 --- a/patches/PBPX-95201_EE68CA13.pnach +++ b/patches/PBPX-95201_EE68CA13.pnach @@ -2,7 +2,7 @@ gametitle=Maximo - Ghosts to Glory (J) (PBPX_95201) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 (pnach NTSC-J by Arapapa) +author=No.47 (pnach NTSC-J by Arapapa) //16:9 diff --git a/patches/PBPX-95201_F66528FF.pnach b/patches/PBPX-95201_F66528FF.pnach index e6274f4c..be3fada4 100644 --- a/patches/PBPX-95201_F66528FF.pnach +++ b/patches/PBPX-95201_F66528FF.pnach @@ -2,7 +2,7 @@ gametitle=Tetsu 1 - Densha de Battle! [NTSC-J] [PBPX-95201](SLPS-20100) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/PBPX-95201_F7D86DD0.pnach b/patches/PBPX-95201_F7D86DD0.pnach index 67d381aa..4dbe3f41 100644 --- a/patches/PBPX-95201_F7D86DD0.pnach +++ b/patches/PBPX-95201_F7D86DD0.pnach @@ -2,7 +2,7 @@ gametitle=3D Kakutou Tsukuru 2 [NTSC-J] (PBPX-95201)(SLPS-20214) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant patch=1,EE,002b59c4,word,3c013f40 //00000000 patch=1,EE,002b59c8,word,44810000 //00000000 diff --git a/patches/PBPX-95503_8AA991B0.pnach b/patches/PBPX-95503_8AA991B0.pnach index a7c29a99..db7aef22 100644 --- a/patches/PBPX-95503_8AA991B0.pnach +++ b/patches/PBPX-95503_8AA991B0.pnach @@ -31,7 +31,7 @@ patch=1,EE,102112F0,extended,0000005A patch=1,EE,20211014,extended,00000000 [Metric units] -description=Changes MPH to KMH, ft.lb to NM +description=Changes MPH to KMH, ft.lb to kgf.m author=Silent // Speed and distance units @@ -43,4 +43,4 @@ patch=1,EE,202F59D8,extended,0 // 0 - kgf.m // 1 - ft.lb // 2 - NM -patch=1,EE,202F59E0,extended,2 +patch=1,EE,202F59E0,extended,0 diff --git a/patches/SCAJ-20016_07E0108A.pnach b/patches/SCAJ-20016_07E0108A.pnach index e4bff622..658e9976 100644 --- a/patches/SCAJ-20016_07E0108A.pnach +++ b/patches/SCAJ-20016_07E0108A.pnach @@ -2,7 +2,7 @@ gametitle=Argus no Senshi [NTSC-J] [SCAJ-20016] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00207a5c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SCAJ-30001_A3D63039.pnach b/patches/SCAJ-30001_A3D63039.pnach index 593e5d15..d3da5fac 100644 --- a/patches/SCAJ-30001_A3D63039.pnach +++ b/patches/SCAJ-30001_A3D63039.pnach @@ -2,7 +2,7 @@ gametitle=Xenosaga Episode I [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,2093c0f0,extended,3f400000 patch=1,EE,2093c6e0,extended,3f400000 diff --git a/patches/SCES-50002_848A08B4.pnach b/patches/SCES-50002_848A08B4.pnach index e9801f8d..1aeed424 100644 --- a/patches/SCES-50002_848A08B4.pnach +++ b/patches/SCES-50002_848A08B4.pnach @@ -2,7 +2,7 @@ gametitle=Fantavision (E)(SCES-50002) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCES-50034_E6C0751A.pnach b/patches/SCES-50034_E6C0751A.pnach index 5109f789..9b13efe2 100644 --- a/patches/SCES-50034_E6C0751A.pnach +++ b/patches/SCES-50034_E6C0751A.pnach @@ -2,7 +2,7 @@ gametitle=Moto GP (E)(SCES-50034) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCES-50105_29B11E02.pnach b/patches/SCES-50105_29B11E02.pnach index 2ffcb1f3..c100d31e 100644 --- a/patches/SCES-50105_29B11E02.pnach +++ b/patches/SCES-50105_29B11E02.pnach @@ -2,7 +2,7 @@ gametitle=Sky Odyssey (PAL-M5) (SCES-50105) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0028ab58,word,3f400000 // 3f800000 hor fov diff --git a/patches/SCES-50241_E553C15B.pnach b/patches/SCES-50241_E553C15B.pnach index 0b450ad4..58115593 100644 --- a/patches/SCES-50241_E553C15B.pnach +++ b/patches/SCES-50241_E553C15B.pnach @@ -2,7 +2,7 @@ gametitle=The Bouncer (PAL-M6) (SCES-50241) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // //16:9 patch=1,EE,2037EC3C,extended,3F400000 // 3F800000 hor fov diff --git a/patches/SCES-50244_71E38F05.pnach b/patches/SCES-50244_71E38F05.pnach index 0de40d75..0a0a653d 100644 --- a/patches/SCES-50244_71E38F05.pnach +++ b/patches/SCES-50244_71E38F05.pnach @@ -2,7 +2,7 @@ gametitle=This Is Football 2002 (E)(SCES-50244) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCES-50293_C5A2A6E6.pnach b/patches/SCES-50293_C5A2A6E6.pnach index 2c3a1e19..d1bde8be 100644 --- a/patches/SCES-50293_C5A2A6E6.pnach +++ b/patches/SCES-50293_C5A2A6E6.pnach @@ -2,7 +2,7 @@ gametitle=ATV Offroad: All Terrain Vehicle [PAL-M5] (SCES_502.93) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0011F2AC,word,3C023CAC //3C023C8E Zoom diff --git a/patches/SCES-50354_7EBEEBBD.pnach b/patches/SCES-50354_7EBEEBBD.pnach index 6d5db207..53734538 100644 --- a/patches/SCES-50354_7EBEEBBD.pnach +++ b/patches/SCES-50354_7EBEEBBD.pnach @@ -2,7 +2,7 @@ gametitle=Klonoa 2: Lunatea's Veil PAL (SCES-50354) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht //50hz mode patch=1,EE,e0013f80,extended,0018bc94 // check 2018bc94 matches value (3c01)3f80 diff --git a/patches/SCES-50361_9C712FF0.pnach b/patches/SCES-50361_9C712FF0.pnach index 53707108..e3b34e99 100644 --- a/patches/SCES-50361_9C712FF0.pnach +++ b/patches/SCES-50361_9C712FF0.pnach @@ -1,9 +1,9 @@ -gametitle=Jak and Daxter - The Precursor Legacy (PAL-M6) (SCES-50361) +gametitle=Jak and Daxter - The Precursor Legacy (PAL-M6) (SCES-50361) 9C712FF0 [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen Hack +description=Widescreen fix // 16:9 patch=1,EE,202af8b0,extended,3f1f3b64 // 3f000000 zoom patch=1,EE,202af85c,extended,bf1f3b64 // bf000000 hud fix for zoom @@ -23,3 +23,7 @@ patch=1,EE,00702998,extended,000000E0 patch=1,EE,20110084,extended,30420000 +[NTSC Mode] +author=PeterDelta +description=NTSC mode at start. +patch=1,EE,0079F724,word,001503E4 //0014939C \ No newline at end of file diff --git a/patches/SCES-50408_326339BF.pnach b/patches/SCES-50408_326339BF.pnach index 3be512e7..27879379 100644 --- a/patches/SCES-50408_326339BF.pnach +++ b/patches/SCES-50408_326339BF.pnach @@ -2,7 +2,7 @@ gametitle=PaRappa the Rapper 2 (PAL-M5) (SCES-50408) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001666d4,word,3c013f40 diff --git a/patches/SCES-50409_3242590D.pnach b/patches/SCES-50409_3242590D.pnach index 20d54ba5..c0f454af 100644 --- a/patches/SCES-50409_3242590D.pnach +++ b/patches/SCES-50409_3242590D.pnach @@ -2,7 +2,7 @@ gametitle=Moto GP 2 (E)(SCES-50409) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCES-50410_1B9B7563.pnach b/patches/SCES-50410_1B9B7563.pnach index db500359..632aa7bd 100644 --- a/patches/SCES-50410_1B9B7563.pnach +++ b/patches/SCES-50410_1B9B7563.pnach @@ -2,7 +2,7 @@ gametitle=Ace Combat: Distant Thunder PAL (SCES_504.10) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas +author=El_Patas //Widescreen fix patch=1,EE,004235CC,word,441CF7AE //4440499A diff --git a/patches/SCES-50459_AAE9E301.pnach b/patches/SCES-50459_AAE9E301.pnach index 258ca4a1..5a238152 100644 --- a/patches/SCES-50459_AAE9E301.pnach +++ b/patches/SCES-50459_AAE9E301.pnach @@ -2,7 +2,7 @@ gametitle=Dropship - United Peace Force (E)(SCES-50459) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCES-50522_E45821EC.pnach b/patches/SCES-50522_E45821EC.pnach index 05c379c6..e27dabf6 100644 --- a/patches/SCES-50522_E45821EC.pnach +++ b/patches/SCES-50522_E45821EC.pnach @@ -2,7 +2,7 @@ gametitle=Disney's Peter Pan - The Legend of Never Land (E)(SCES-50522) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCES-50595_77C7F85A.pnach b/patches/SCES-50595_77C7F85A.pnach index 38f2598a..6826f121 100644 --- a/patches/SCES-50595_77C7F85A.pnach +++ b/patches/SCES-50595_77C7F85A.pnach @@ -2,7 +2,7 @@ gametitle=Disney's Pixar - Monsters, Inc. - Scare Island (E)(SCES-50595) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0011a3f0,word,0808ad25 // c6010068 jump to code-inject 0022b494 diff --git a/patches/SCES-50600_F5B07CC0.pnach b/patches/SCES-50600_F5B07CC0.pnach index 9d24e02a..7c984030 100644 --- a/patches/SCES-50600_F5B07CC0.pnach +++ b/patches/SCES-50600_F5B07CC0.pnach @@ -2,7 +2,7 @@ gametitle=Monsters Inc - Scare Island (PAL-G) (SCES-50600) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0011a3f0,word,0808ad25 // c6010068 jump to code-inject 0022b494 diff --git a/patches/SCES-50611_A595F752.pnach b/patches/SCES-50611_A595F752.pnach index 6124dfe8..f7c44f14 100644 --- a/patches/SCES-50611_A595F752.pnach +++ b/patches/SCES-50611_A595F752.pnach @@ -2,7 +2,7 @@ gametitle=Space Channel 5 (PAL-M5) (SCES-50611) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0011eecc,word,3c013f40 // 3c013f80 hor fov 50Hz diff --git a/patches/SCES-50612_EF710B2B.pnach b/patches/SCES-50612_EF710B2B.pnach index aa973fec..42b41c4b 100644 --- a/patches/SCES-50612_EF710B2B.pnach +++ b/patches/SCES-50612_EF710B2B.pnach @@ -2,7 +2,7 @@ gametitle=Space Channel 5 - Part 2 (PAL-M5) (SCES-50612) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001182f8,word,3c013f40 // 3c013f80 hor fov 50Hz diff --git a/patches/SCES-50759_B65AE44A.pnach b/patches/SCES-50759_B65AE44A.pnach index e87df260..146021f0 100644 --- a/patches/SCES-50759_B65AE44A.pnach +++ b/patches/SCES-50759_B65AE44A.pnach @@ -2,7 +2,7 @@ gametitle=Virtua Fighter 4 (PAL-M5) (SCES-50759) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00271614,word,3c194455 // 3c194420 hor fov @@ -13,7 +13,7 @@ patch=1,EE,0024c344,word,3c014456 // 3c014420 renderfix [No-Interlacing] gsinterlacemode=1 -comment=Disable interlacing hack by ElHecht +author=ElHecht // disable interlacing patch=1,EE,00269e68,word,a0800004 // a0820004 diff --git a/patches/SCES-50760_5C991F4E.pnach b/patches/SCES-50760_5C991F4E.pnach index 0caf4e50..219f91c3 100644 --- a/patches/SCES-50760_5C991F4E.pnach +++ b/patches/SCES-50760_5C991F4E.pnach @@ -1,21 +1,191 @@ -gametitle=ICO (SCES-50760) +gametitle=ICO * PAL-M5 * SCES-50760 * 5C991F4E [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -comment=Widescreen Hack -//widescreen + +// 16:9 widescreen patch=1,EE,00114dd0,word,3c013f40 patch=1,EE,00114dd4,word,4481c000 patch=1,EE,00114de0,word,46181082 -//render fix +// 16:9 Render fix patch=1,EE,001146F4,word,240302ab patch=1,EE,0054E478,word,44fa0000 +[Widescreen 16:10] +gsaspectratio=Stretch +author=nemesis2000 & pgert +patch=1,EE,00114dd0,word,3c013f55 +patch=1,EE,00114dd4,word,4481c000 +patch=1,EE,00114de0,word,46181082 +patch=1,EE,001146F4,word,240302ab +patch=1,EE,0054E478,word,44e10000 + +[Widescreen 15:10] +gsaspectratio=Stretch +author=nemesis2000 & pgert +patch=1,EE,00114dd0,word,3c013f64 +patch=1,EE,00114dd4,word,4481c000 +patch=1,EE,00114de0,word,46181082 +patch=1,EE,001146F4,word,240302ab +patch=1,EE,0054E478,word,44d2f000 + +[Widescreen 20:9] +gsaspectratio=Stretch +author=nemesis2000, kripkrop, Devina & pgert +comment=Imperfections might show up. +patch=1,EE,00114dd0,word,3c013f1a +patch=1,EE,00114dd4,word,4481c000 +patch=1,EE,00114de0,word,46181082 +patch=1,EE,001146F4,word,24030aaa +patch=1,EE,0054E478,word,451c4000 + +[Widescreen 21:9] +gsaspectratio=Stretch +author=nemesis2000, kripkrop, Devina & pgert +comment=Imperfections might show up. +patch=1,EE,00114dd0,word,3c013f12 +patch=1,EE,00114dd4,word,4481c000 +patch=1,EE,00114de0,word,46181082 +patch=1,EE,001146F4,word,24030aaa +patch=1,EE,0054E478,word,45241000 + [Remove Blackbars] author=nemesis2000 description=Removes black bars in cutscenes patch=1,EE,00113450,word,3c010000 +///////////////////// + +[60 fps & No Interlacing] +author=Red_Tv +comment=Might need EE overclocking to be stable. + +// 60 fps +patch=1,EE,0028F4C4,word,00000001 + +// Revert to 30 fps during Cutscenes +//patch=1,EE,e0010001,extended,0063AA08 +//patch=1,EE,2028F4C4,extended,00000002 + +// No Interlacing (needed for 60 fps) +patch=1,EE,0013CAD0,word,30420000 +patch=1,EE,001144AC,word,30420000 + +///////////////////// + +[60 fps] +author=synce & Agrippa +// 60 fps hack by Agrippa based on the NTSC-U hack by synce +comment=Set EE Cyclerate to 130% - 180% in combination with this. +// - makes some animations run too fast +patch=1,EE,E0010000,extended,0063AA08 +patch=1,EE,0028F4C4,extended,00000001 + +// Revert to 30 fps during Cutscenes +patch=1,EE,E0010001,extended,0063AA08 +patch=1,EE,0028F4C4,extended,00000002 + +[No-Interlacing] +comment=Don't combine with the 60 fps hacks. +patch=1,EE,0013CAD0,word,30420000 +patch=1,EE,001144AC,word,30420000 + +/////////////////// + +[Full height back buffer] +author=asasega & Agrippa + +// Hacks by Agrippa based on the asasega patch for the NTSC version. +// A full height back buffer enabled, instead of a downsampled front buffer. +// Works with both PAL and NTSC modes. + +// set the back buffer +patch=1,EE,2028F500,extended,00001040 +patch=1,EE,2028F528,extended,00001040 +// switch to the interlaced mode with FFMD set to 0. Progressive mode, applied by default, +// does add a black bar at the bottom in the NTSC mode when the back buffer is enabled +patch=1,EE,2028F4F8,extended,00000001 +patch=1,EE,2028F520,extended,00000001 + +// check if the PAL mode is turned on to extend the display buffer from 256 to 512 +patch=1,EE,E0024290,extended,0028F508 +patch=1,EE,2028F50C,extended,001FF9FF +patch=1,EE,2028F534,extended,001FF9FF +// check if the NTSC mode is turned on to extend the display buffer from 224 to 448 +patch=1,EE,E002927C,extended,0028F508 +patch=1,EE,2028F50C,extended,001DF9FF +patch=1,EE,2028F534,extended,001DF9FF + +/////////////////// + +[Debug Menu] +description=Press Select to open the Debug Menu. +// Enable 'Single Framestep' in the menu for 60fps. +patch=1,EE,20101F94,word,0C06C966 +patch=1,EE,201AF850,word,0806BD28 + +[Maximum Graphics Booster] +description=No Blur-Effect and maxed out Game Sharpness. +patch=1,EE,001322f0,word,03e00008 +patch=1,EE,001322f4,word,00000000 +patch=1,EE,001fca60,word,03e00008 +patch=1,EE,001fca64,word,00000000 +patch=1,EE,001137f8,word,03e00008 +patch=1,EE,001137fc,word,00000000 +patch=1,EE,001136b0,word,03e00008 +patch=1,EE,001136b4,word,00000000 + +[Disable Motion Blur] +patch=1,EE,001fca60,word,03e00008 +patch=1,EE,001fca64,word,00000000 + +[Disable Post-Effects] +description=Disables Post-Effect like the bright reddish Sky. +patch=1,EE,0028F808,word,00000000 + +[No Blackborders] +patch=1,EE,001133F8,word,44800800 +patch=1,EE,00113410,word,44800800 +patch=1,EE,00113420,word,44800800 +patch=1,EE,00113534,word,44800000 + +[No Shadow Effects] +patch=1,EE,0028F7CC,word,00000000 +patch=1,EE,0028F7D0,word,00000000 +patch=1,EE,0028F7D4,word,00000000 +patch=1,EE,0028F7D8,word,00000000 +patch=1,EE,0028F7DC,word,00000000 +patch=1,EE,0028F7E0,word,00000000 +patch=1,EE,0028F7E4,word,00000000 +patch=1,EE,0028F7E8,word,00000000 + +[RGB Values] +description=RGB Values enhanced & fixed + +// Characters RGB Values decently enhanced, +// disable extra Light on Boy and Objects +// and disable Boy-Dimming in dark Areas. +patch=1,EE,001170b4,word,24020000 +patch=1,EE,00117000,word,24130000 +patch=1,EE,00117010,word,24130000 +patch=1,EE,001175f4,word,44806000 +patch=1,EE,0028F780,word,3F900000 +patch=1,EE,0028F784,word,3F900000 +patch=1,EE,0028F788,word,3F900000 +patch=1,EE,0028F78C,word,3F800000 + +// World and Character main RGB fixed Values. +patch=1,EE,0028F7F0,word,00000080 +patch=1,EE,0028F7F4,word,00000080 +patch=1,EE,0028F7F8,word,00000080 +patch=1,EE,0028F7FC,word,00000000 + +/////////////////// + +// Mastercode - not needed for pcsx2 +//patch=1,EE,0E3C7dF2,extended,1456E7A5 +//patch=1,EE,F024E5d4,extended,0024E5d7 +/////////////////// diff --git a/patches/SCES-50781_83A82EA1.pnach b/patches/SCES-50781_83A82EA1.pnach index 678e9402..4961c771 100644 --- a/patches/SCES-50781_83A82EA1.pnach +++ b/patches/SCES-50781_83A82EA1.pnach @@ -2,7 +2,7 @@ gametitle=Destruction Derby Arenas [PAL] (SCES_507.81) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00263BF0,word,3C013FAB //3C013F80 diff --git a/patches/SCES-50878_2251E14D.pnach b/patches/SCES-50878_2251E14D.pnach index 02ba1260..5e9c6938 100644 --- a/patches/SCES-50878_2251E14D.pnach +++ b/patches/SCES-50878_2251E14D.pnach @@ -2,7 +2,7 @@ gametitle=Tekken 4 (SCES-50878) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 //ee patch patch=1,EE,00292424,word,24020001 diff --git a/patches/SCES-50887_7367D841.pnach b/patches/SCES-50887_7367D841.pnach index d34811ff..43bbdb83 100644 --- a/patches/SCES-50887_7367D841.pnach +++ b/patches/SCES-50887_7367D841.pnach @@ -2,7 +2,7 @@ gametitle=Alpine Racer 3 [PAL-M5] (SCES_508.87) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,206A1E5C,extended,3F199999 //3F800000 (Increases hor. axis) diff --git a/patches/SCES-50916_76F724A3.pnach b/patches/SCES-50916_76F724A3.pnach index 9794af31..f5e14b46 100644 --- a/patches/SCES-50916_76F724A3.pnach +++ b/patches/SCES-50916_76F724A3.pnach @@ -2,7 +2,7 @@ gametitle=Ratchet & Clank (PAL-M5) (SCES-50916) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 code-inject function patch=1,EE,e0220000,extended,00100000 // check 20100000 matches value xxxx0000 diff --git a/patches/SCES-50928_85FEEC45.pnach b/patches/SCES-50928_85FEEC45.pnach index e15936fe..a9b9d626 100644 --- a/patches/SCES-50928_85FEEC45.pnach +++ b/patches/SCES-50928_85FEEC45.pnach @@ -2,7 +2,7 @@ gametitle=SOCOM - U.S. Navy SEALs (PAL-M5) (SCES-50928) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0014f64c,word,3c013f40 // 00000000 ver fov diff --git a/patches/SCES-50959_B74A2938.pnach b/patches/SCES-50959_B74A2938.pnach index 7242586c..d8960c1a 100644 --- a/patches/SCES-50959_B74A2938.pnach +++ b/patches/SCES-50959_B74A2938.pnach @@ -3,11 +3,11 @@ gametitle=Disney Stitch: Experiment 626 [PAL-M2] [Esp-Por] (SCES_509.59) B74A293 [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,00236AE4,word,3C023F1E //3C023F00 Zoom 16:9 patch=1,EE,00236F34,word,3C03BFAC //3C03BF80 Y-FOV 16:9 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00628C88,byte,01 \ No newline at end of file diff --git a/patches/SCES-50966_5B1DC04C.pnach b/patches/SCES-50966_5B1DC04C.pnach index 8fc9caf6..ecb3b1f5 100644 --- a/patches/SCES-50966_5B1DC04C.pnach +++ b/patches/SCES-50966_5B1DC04C.pnach @@ -2,7 +2,7 @@ gametitle=Disney Stitch: Experiment 626 [PAL-M2] [Eng-Sve] (SCES_509.66) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCES-50968_F6DC728D.pnach b/patches/SCES-50968_F6DC728D.pnach index ab975f08..e5f67527 100644 --- a/patches/SCES-50968_F6DC728D.pnach +++ b/patches/SCES-50968_F6DC728D.pnach @@ -2,7 +2,7 @@ gametitle=Kingdom Hearts (PAL-F) (SCES-50968) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht - Port PAL-FR by PuNkY_BoY +author=ElHecht - Port PAL-FR by PuNkY_BoY // 16:9 patch=1,EE,00110634,word,3c1b3f40 // 00000000 hor fov gameplay diff --git a/patches/SCES-50971_09F5F39A.pnach b/patches/SCES-50971_09F5F39A.pnach index c66cc102..89a8b7e8 100644 --- a/patches/SCES-50971_09F5F39A.pnach +++ b/patches/SCES-50971_09F5F39A.pnach @@ -1,9 +1,9 @@ -gametitle=Kingdom Hearts (PAL-UK) (SCES-50971) +gametitle=Kingdom Hearts (PAL-S) SCES-50971 09F5F39A [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio // 16:9 patch=1,EE,00110634,word,3c1b3f40 // 00000000 hor fov gameplay patch=1,EE,0011066c,word,449bf800 // 00000000 @@ -43,13 +43,25 @@ patch=1,EE,001f9710,word,24030020 // 24030018 patch=1,EE,0010629c,word,3c071900 // 3c071c08 patch=1,EE,002a1608,word,70007000 // 74007000 -//black border fix +[Remove Blackbars] +author=ElHecht +description=Removes black bars in cutscenes patch=1,EE,0010430c,word,00000000 // ac510e48 patch=1,EE,0010442c,word,00000000 // ac450e48 [50 FPS] author=PeterDelta -comment=Gameplay at 50 fps, Gumi ship and scenes at 25 fps. Might need enable EE Overclock to be stable. -patch=1,EE,002B6ACC,word,00000000 //00000001 +description=Might need EE Overclock at 130%. Gumi ship at 25 fps. +patch=1,EE,002B6ACC,extended,00000000 patch=1,EE,E0010000,extended,00571954 -patch=1,EE,202B6ACC,extended,00000001 \ No newline at end of file +patch=1,EE,002B6ACC,extended,00000001 +patch=1,EE,E001100C,extended,002C0618 //marca trio roja (red trinity) +patch=1,EE,002B6ACC,extended,00000001 +patch=1,EE,E001100E,extended,002C0618 //marca trio verde (green trinity) +patch=1,EE,002B6ACC,extended,00000001 +patch=1,EE,E0010008,extended,002C0618 //halloween town coffin to transport at other zone +patch=1,EE,002B6ACC,extended,00000001 +patch=1,EE,E0011008,extended,002C0618 +patch=1,EE,002B6ACC,extended,00000001 +patch=1,EE,E0010009,extended,002C0618 +patch=1,EE,002B6ACC,extended,00000001 \ No newline at end of file diff --git a/patches/SCES-50982_EB518B9F.pnach b/patches/SCES-50982_EB518B9F.pnach index 289d6770..000a69c4 100644 --- a/patches/SCES-50982_EB518B9F.pnach +++ b/patches/SCES-50982_EB518B9F.pnach @@ -2,7 +2,7 @@ gametitle=Moto GP 3 (E)(SCES-50982) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCES-51004_BF513E01.pnach b/patches/SCES-51004_BF513E01.pnach index 9567cdf3..5bd6478f 100644 --- a/patches/SCES-51004_BF513E01.pnach +++ b/patches/SCES-51004_BF513E01.pnach @@ -2,7 +2,7 @@ gametitle=Formula One 2002 (E)(SCES-51004) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCES-51039_9F14CF3A.pnach b/patches/SCES-51039_9F14CF3A.pnach index 9ff53abb..f2204709 100644 --- a/patches/SCES-51039_9F14CF3A.pnach +++ b/patches/SCES-51039_9F14CF3A.pnach @@ -2,7 +2,7 @@ gametitle=This Is Football 2003 (E)(SCES-51039) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCES-51159_458485EF.pnach b/patches/SCES-51159_458485EF.pnach index f0957dcf..f5b5351d 100644 --- a/patches/SCES-51159_458485EF.pnach +++ b/patches/SCES-51159_458485EF.pnach @@ -2,5 +2,12 @@ gametitle=Getaway, The [PAL-M] SCES-51159 458485EF [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,001F0E98,word,1000000B //1500000B +description=Might need EE Overclock at 130%. +patch=1,EE,001F0EB8,word,24020001 //24020002 + +[NTSC Mode] +author=PeterDelta +description=NTSC mode at start. +patch=1,EE,003A99FC,extended,00000001 +patch=1,EE,D0391E88,extended,00000000 +patch=1,EE,00391E88,extended,00000001 \ No newline at end of file diff --git a/patches/SCES-51190_059E5FAA.pnach b/patches/SCES-51190_059E5FAA.pnach index 9b587481..41ce625b 100644 --- a/patches/SCES-51190_059E5FAA.pnach +++ b/patches/SCES-51190_059E5FAA.pnach @@ -3,18 +3,17 @@ gametitle=Dark Chronicle (PAL-M5) (SCES-51190) 059E5FAA [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,00139414,word,3c023f40 - [50 FPS] author=PeterDelta & Gabominated -comment=Unlocked at 50 FPS. Might need enable EE 130% Overclock to be stable. -patch=1,EE,0037CDD0,word,00000001 //00000002 srl zero,0x00 -patch=1,EE,00175AC8,word,3C033F19 //3C033F99 lui v1,0x3F99 -patch=1,EE,00175B10,word,3C033F19 //3C033F99 lui v1,0x3F99 +description=Might need EE Overclock at 130%. +patch=1,EE,0037CDD0,word,00000001 //00000002 +patch=1,EE,00175AC8,word,3C033F19 //3C033F99 +patch=1,EE,00175B10,word,3C033F19 //3C033F99 patch=1,EE,0035A788,word,3F000000 //3F800000 -patch=1,EE,E0050000,extended,103972B4 //revert cutscenes +patch=1,EE,E0050000,extended,01EFD534 //103972B4 old in case it fails patch=1,EE,E0040000,extended,01EFD43C patch=1,EE,2037CDD0,extended,00000002 patch=1,EE,20175AC8,extended,3C033F99 diff --git a/patches/SCES-51248_531061F2.pnach b/patches/SCES-51248_531061F2.pnach index 317ffda0..b0c2f2e3 100644 --- a/patches/SCES-51248_531061F2.pnach +++ b/patches/SCES-51248_531061F2.pnach @@ -1,6 +1,12 @@ gametitle=Dog's Life (PAL-M) SCES-51248 531061F2 +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Enable native widescreen +patch=1,EE,00AB51C0,byte,01 + [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00791350,word,3CA3D70A \ No newline at end of file diff --git a/patches/SCES-51463_3BD85DA4.pnach b/patches/SCES-51463_3BD85DA4.pnach index 66fbc5fe..c78ace26 100644 --- a/patches/SCES-51463_3BD85DA4.pnach +++ b/patches/SCES-51463_3BD85DA4.pnach @@ -2,5 +2,7 @@ gametitle=Ghosthunter (PAL-M) SCES-51463 3BD85DA4 [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,005681E0,word,00000001 //00000002 \ No newline at end of file +description=Might need EE Overclock at 180%. +patch=1,EE,005681E0,extended,00000001 +patch=1,EE,E0010000,extended,0056884C +patch=1,EE,005681E0,extended,00000002 \ No newline at end of file diff --git a/patches/SCES-51592_93223BE4.pnach b/patches/SCES-51592_93223BE4.pnach index 16fd9dbc..5d164ff6 100644 --- a/patches/SCES-51592_93223BE4.pnach +++ b/patches/SCES-51592_93223BE4.pnach @@ -2,7 +2,7 @@ gametitle=Formula One 2003 (E)(SCES-51592) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCES-51607_2F486E6F.pnach b/patches/SCES-51607_2F486E6F.pnach index bfe689f4..d0e67d5d 100644 --- a/patches/SCES-51607_2F486E6F.pnach +++ b/patches/SCES-51607_2F486E6F.pnach @@ -2,7 +2,7 @@ gametitle=Ratchet & Clank 2 (PAL-M5) (SCES-51607) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // enable widescreen mode in options patch=1,EE,e0010400,extended,001a7c28 // check 001a7c28 matches value xxxx0400 diff --git a/patches/SCES-51635_27D961D2.pnach b/patches/SCES-51635_27D961D2.pnach index 563c6058..3b0e552c 100644 --- a/patches/SCES-51635_27D961D2.pnach +++ b/patches/SCES-51635_27D961D2.pnach @@ -1,8 +1,19 @@ gametitle=Brave - The Search for Spirit Dancer (PAL-M) SCES-51635 27D961D2 +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Enable native widescreen +patch=1,EE,00465464,extended,00000001 + +[Remove Blackbars] +author=PeterDelta +description=Removes black bars in cutscenes +patch=1,EE,20401D50,extended,00000000 + [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,2033A784,extended,00000000 +description=Might need EE Overclock (130%). +patch=1,EE,20465500,extended,3CA3D70A patch=1,EE,E0010000,extended,003C66C8 -patch=1,EE,2033A784,extended,1040FFFA \ No newline at end of file +patch=1,EE,20465500,extended,3D23D70A \ No newline at end of file diff --git a/patches/SCES-51904_58A1B8D8.pnach b/patches/SCES-51904_58A1B8D8.pnach index 10e18c10..3012eb02 100644 --- a/patches/SCES-51904_58A1B8D8.pnach +++ b/patches/SCES-51904_58A1B8D8.pnach @@ -2,7 +2,7 @@ gametitle=SOCOM II - U.S. Navy SEALs (PAL-M5) (SCES-51904) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001c2e44,word,3c013f40 // 00000000 ver fov diff --git a/patches/SCES-52004_6624A78C.pnach b/patches/SCES-52004_6624A78C.pnach index c550a7dc..c26d563e 100644 --- a/patches/SCES-52004_6624A78C.pnach +++ b/patches/SCES-52004_6624A78C.pnach @@ -4,4 +4,4 @@ gametitle=Killzone [PAL-M] SCES-52004 6624A78C //author=PeterDelta. Disabled due to causing double speed in menu and game FMVs and other game breaking issues. //comment=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. //patch=1,EE,00152014,word,24420002 //24420001 -//patch=1,EE,005DB004,word,3F000000 //3F800000 speed general \ No newline at end of file +//patch=1,EE,005DB004,word,3F000000 //3F800000 speed general diff --git a/patches/SCES-52033_27E54B37.pnach b/patches/SCES-52033_27E54B37.pnach index 9e0c4bae..50ca7c83 100644 --- a/patches/SCES-52033_27E54B37.pnach +++ b/patches/SCES-52033_27E54B37.pnach @@ -2,7 +2,7 @@ gametitle=Syphon Filter: The Omega Strain (SCES-52033) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,003972e0,word,3c043f40 diff --git a/patches/SCES-52033_59EB2A95.pnach b/patches/SCES-52033_59EB2A95.pnach index e27e3408..1891eb61 100644 --- a/patches/SCES-52033_59EB2A95.pnach +++ b/patches/SCES-52033_59EB2A95.pnach @@ -3,9 +3,7 @@ gametitle=Syphon Filter - The Omega Strain [PAL-M] SCES-52033 59EB2A95 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Ported by PeterDelta from the other version PAL by nemesis2000 - -//gameplay +description=Renders the game in 16:9 aspect ratio. Ported from SCES-52033_27E54B37 by nemesis2000 patch=1,EE,003973B0,word,3c043f40 //3C043F80 patch=1,EE,003973B4,word,44841800 //3C034000 patch=1,EE,003973B8,word,46030003 //44841800 diff --git a/patches/SCES-52124_91A65EAE.pnach b/patches/SCES-52124_91A65EAE.pnach index 64ca8c48..92e98a70 100644 --- a/patches/SCES-52124_91A65EAE.pnach +++ b/patches/SCES-52124_91A65EAE.pnach @@ -2,7 +2,7 @@ gametitle=KILL.SWITCH (E)(SCES-52124) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCES-52410_C3F83BD1.pnach b/patches/SCES-52410_C3F83BD1.pnach index 29ef307e..f2261f26 100644 --- a/patches/SCES-52410_C3F83BD1.pnach +++ b/patches/SCES-52410_C3F83BD1.pnach @@ -2,7 +2,7 @@ gametitle=Athens 2004 (E)(SCES-52410) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCES-52424_1D54FEA9.pnach b/patches/SCES-52424_1D54FEA9.pnach index 5bc9cd02..6e863b72 100644 --- a/patches/SCES-52424_1D54FEA9.pnach +++ b/patches/SCES-52424_1D54FEA9.pnach @@ -2,7 +2,7 @@ gametitle=Ace Combat - Squadron Leader (SCES-52424) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 and Arapapa (PAL-E by mirh) +author=nemesis2000 and Arapapa (PAL-E by mirh) //widescreen fix patch=1,EE,0044e7a8,word,43D638F3 diff --git a/patches/SCES-52456_17125698.pnach b/patches/SCES-52456_17125698.pnach index d9598c65..bc56c95c 100644 --- a/patches/SCES-52456_17125698.pnach +++ b/patches/SCES-52456_17125698.pnach @@ -2,7 +2,7 @@ gametitle=Ratchet & Clank 3 (PAL-M5) (SCES-52456) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // enable widescreen mode in options (single player) patch=1,EE,e0010032,extended,001439f0 // check 001439f0 matches value xxxx0032 diff --git a/patches/SCES-52582_C24621B8.pnach b/patches/SCES-52582_C24621B8.pnach index 39ea6045..054094ff 100644 --- a/patches/SCES-52582_C24621B8.pnach +++ b/patches/SCES-52582_C24621B8.pnach @@ -2,7 +2,7 @@ gametitle=Everybody's Golf (PAL-M5) (SCES-52582) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,e005010C,extended,005522A4 // check 205522A4 matches value xxxx010c diff --git a/patches/SCES-52586_59683BB0.pnach b/patches/SCES-52586_59683BB0.pnach index ffd2e2d7..413ed08d 100644 --- a/patches/SCES-52586_59683BB0.pnach +++ b/patches/SCES-52586_59683BB0.pnach @@ -1,10 +1,9 @@ -gametitle=Death by Degrees (PAL-M2) (SCES-52586) +gametitle=Death by Degrees (PAL-M2) (SCES-52586) 59683BB0 [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen Hack -// +description=Renders the game in 16:9 aspect ratio // Gameplay patch=1,EE,00188170,word,3C023FE3 patch=1,EE,00188178,word,34438E38 @@ -13,8 +12,6 @@ patch=1,EE,00185f8c,word,3C023FE3 patch=1,EE,00185f90,word,34438E38 [50 FPS] -author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,005A8258,word,00000001 -patch=1,EE,E0010202,extended,0058440C -patch=1,EE,205A8258,extended,00000002 +author=felixthecat1970 +description=Might need EE Overclock at 130%. +patch=0,EE,003BFE5C,extended,24040001 \ No newline at end of file diff --git a/patches/SCES-53133_FB0E6D72.pnach b/patches/SCES-53133_FB0E6D72.pnach index d95149da..aab38a39 100644 --- a/patches/SCES-53133_FB0E6D72.pnach +++ b/patches/SCES-53133_FB0E6D72.pnach @@ -135,4 +135,17 @@ patch=1,EE,00169460,word,03e00008 patch=1,EE,00169464,word,27bd0090 patch=1,EE,E0020001,extended,0029DA58 //Fix title flames by PeterDelta patch=1,EE,E0010001,extended,0029DAC8 -patch=1,EE,001692d0,extended,3c013f10 \ No newline at end of file +patch=1,EE,001692d0,extended,3c013f10 +patch=1,EE,0029DAC8,extended,00000001 //enable widescreen +patch=1,EE,202FF9B0,extended,3FE38E39 +patch=1,EE,202FF9E8,extended,3FE38E39 +patch=1,EE,20331330,extended,3FE38E39 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0029DACC,extended,00000001 +patch=1,EE,E0019680,extended,0029D114 +patch=1,EE,0029DACC,extended,00000000 +patch=1,EE,2029D284,extended,3F555550 \ No newline at end of file diff --git a/patches/SCES-53202_1F88BECD.pnach b/patches/SCES-53202_1F88BECD.pnach index c6853420..4fef5052 100644 --- a/patches/SCES-53202_1F88BECD.pnach +++ b/patches/SCES-53202_1F88BECD.pnach @@ -1,23 +1,32 @@ -gametitle=Tekken 5 (PAL-M5) (SCES-53202) +gametitle=Tekken 5 (PAL-M5) (SCES-53202) 1F88BECD [Widescreen 16:9] gsaspectratio=16:9 -author=ElHecht -comment=Widescreen ported from NTSC hack by nemesis2000 +author=ElHecht & PeterDelta +description=Widescreen fix. Based on NTSC version of nemesis2000 -patch=1,EE,00340bb0,word,3c013f40 // both fov+ +patch=1,EE,003F8ADB,extended,01 //widescreen option enable -//applies both fov+ only for widescreen mode -patch=1,EE,00340be0,word,3c010015 +patch=1,EE,00340bb0,word,3c013f40 //both fov+ + +patch=1,EE,00340be0,word,3c010015 //applies both fov+ only for widescreen mode patch=1,EE,00340be4,word,c62db7f4 patch=1,EE,00340c04,word,46016b42 patch=1,EE,00340c08,word,46010843 patch=1,EE,00340c20,word,460d1083 patch=1,EE,00340c24,word,460d0843 -//render fix -patch=1,EE,0022db84,word,3c013f2b +patch=1,EE,0022db84,word,3c013f2b //render fix patch=1,EE,0022db94,word,44810000 patch=1,EE,0022db98,word,46006302 +patch=1,EE,0023D008,word,3C013F40 //fix yoshimitsu and xiaoyu +patch=1,EE,0026437C,word,46160942 +patch=1,EE,002643D0,word,46160C63 +patch=1,EE,00264428,word,46160C63 +patch=1,EE,00264480,word,46160C63 +[480p Mode] +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,004039F0,extended,00000002 \ No newline at end of file diff --git a/patches/SCES-53202_C2D29D42.pnach b/patches/SCES-53202_C2D29D42.pnach new file mode 100644 index 00000000..e90bce88 --- /dev/null +++ b/patches/SCES-53202_C2D29D42.pnach @@ -0,0 +1,15 @@ +gametitle=Tekken 5 (PAL-M5) SCES-53202 C2D29D42 "Devil Within/Arcade" TK5DATA4.BIN + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,E002000F,extended,0012C888 //Devil Within +patch=1,EE,2041F714,extended,3F400000 +patch=1,EE,202AEED8,extended,3FDDA51A + +[480p Mode] +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,E001000F,extended,0012C888 +patch=1,EE,002AEB41,extended,02 \ No newline at end of file diff --git a/patches/SCES-53310_8FE61CAD.pnach b/patches/SCES-53310_8FE61CAD.pnach index 87db5328..adbd8495 100644 --- a/patches/SCES-53310_8FE61CAD.pnach +++ b/patches/SCES-53310_8FE61CAD.pnach @@ -2,7 +2,7 @@ gametitle=Roland Garros 2005 - Powered by Smash Court Tennis (E)(SCES-53310) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCES-53312_BC5480A3.pnach b/patches/SCES-53312_BC5480A3.pnach index c316c06c..c1c9ca0b 100644 --- a/patches/SCES-53312_BC5480A3.pnach +++ b/patches/SCES-53312_BC5480A3.pnach @@ -2,7 +2,7 @@ gametitle=Soul Calibur III PAL (SCES_533.12) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas +author=El_Patas //Widescreen fix patch=1,EE,0012A120,word,3C013F40 //3C013F4D diff --git a/patches/SCES-53328_FADEBC45.pnach b/patches/SCES-53328_FADEBC45.pnach index aa2e2f85..303100ce 100644 --- a/patches/SCES-53328_FADEBC45.pnach +++ b/patches/SCES-53328_FADEBC45.pnach @@ -2,7 +2,7 @@ gametitle=Genji (PAL-M5) (SCES-53328) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht, Arapapa +author=ElHecht, Arapapa patch=1,EE,002e2e50,word,3c014455 // 3c014420 hor fov //FMV fix by Arapapa diff --git a/patches/SCES-53358_D6A99F53.pnach b/patches/SCES-53358_D6A99F53.pnach index 8b5332a7..7ce09467 100644 --- a/patches/SCES-53358_D6A99F53.pnach +++ b/patches/SCES-53358_D6A99F53.pnach @@ -1,9 +1,9 @@ -gametitle=24 - The Game (E)(SCES-53358) +gametitle=24 - The Game (PAL-M) (SCES-53358) D6A99F53 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen Hack 16:9 +description=Renders the game in 16:9 aspect ratio //X-Fov //patch=1,EE,0046042c,word,3c013fe3 //3c013faa //patch=1,EE,00460430,word,34218e2a //3421aaa8 @@ -13,7 +13,7 @@ patch=1,EE,002fbf20,word,3c020000 //3c020060 [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,205F9908,extended,00000001 patch=1,EE,E0010001,extended,00631208 patch=1,EE,205F9908,extended,00000002 \ No newline at end of file diff --git a/patches/SCES-53422_D1003514.pnach b/patches/SCES-53422_D1003514.pnach new file mode 100644 index 00000000..da3f2a5f --- /dev/null +++ b/patches/SCES-53422_D1003514.pnach @@ -0,0 +1,6 @@ +gametitle=Stuart Little 3 - Big Photo Adventure PAL-M SCES-53422 D1003514 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00105F24,word,24110001 //24110002 \ No newline at end of file diff --git a/patches/SCES-53449_45B4258D.pnach b/patches/SCES-53449_45B4258D.pnach index aad2d6b5..84fb47f1 100644 --- a/patches/SCES-53449_45B4258D.pnach +++ b/patches/SCES-53449_45B4258D.pnach @@ -2,7 +2,7 @@ gametitle=AFL Premiership 2005 (E)(SCES-53449) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SCES-53960_F6950E96.pnach b/patches/SCES-53960_F6950E96.pnach index e211d74e..0eff1d70 100644 --- a/patches/SCES-53960_F6950E96.pnach +++ b/patches/SCES-53960_F6950E96.pnach @@ -2,7 +2,7 @@ gametitle=B-Boy (E)(SCES-53960) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Wide Screen 16:9 diff --git a/patches/SCES-54041_194C9F38.pnach b/patches/SCES-54041_194C9F38.pnach index 31b6041f..228fb7bb 100644 --- a/patches/SCES-54041_194C9F38.pnach +++ b/patches/SCES-54041_194C9F38.pnach @@ -2,7 +2,7 @@ gametitle=Ace Combat - The Belkan War (SCES-54041) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (PAL-E by mirh) +author=nemesis2000 (PAL-E by mirh) //widescreen fix patch=1,EE,003FC370,word,43D638F3 diff --git a/patches/SCES-54068_14AF63BD.pnach b/patches/SCES-54068_14AF63BD.pnach index 0144bed6..1609bb11 100644 --- a/patches/SCES-54068_14AF63BD.pnach +++ b/patches/SCES-54068_14AF63BD.pnach @@ -2,7 +2,7 @@ gametitle=AFL Premiership 2006 (E)(SCES-54068) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SCES-54535_7B09C4CB.pnach b/patches/SCES-54535_7B09C4CB.pnach index c785af6d..0b4b25bc 100644 --- a/patches/SCES-54535_7B09C4CB.pnach +++ b/patches/SCES-54535_7B09C4CB.pnach @@ -2,7 +2,7 @@ gametitle=Everybody's Tennis (PAL-M11) (SCES-54535) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001398f0,word,08079ed3 // e4840544 jump to code-inject 001e7b4c @@ -20,7 +20,7 @@ patch=1,EE,00138154,word,3c034456 // 3c034420 2D menu/hud fix [No-Interlacing] gsinterlacemode=1 -comment=no interlacing by someother1ne +author=someother1ne patch=1,EE,00125464,word,64420000 patch=1,EE,001256cc,word,64420000 diff --git a/patches/SCES-54794_EF9459D0.pnach b/patches/SCES-54794_EF9459D0.pnach new file mode 100644 index 00000000..808928e0 --- /dev/null +++ b/patches/SCES-54794_EF9459D0.pnach @@ -0,0 +1,28 @@ +gametitle=Syphon Filter - Dark Mirror (PAL-M) SCES-54794 EF9459D0 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,0018CE4C,word,14400002 //10400002 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,005FDB74,word,00000004 //00000002 +patch=1,EE,0018CE4C,word,10400002 //Widescreen fix +patch=1,EE,E0020004,extended,0064F2B0 +patch=1,EE,0064F2B0,extended,00000012 +patch=1,EE,0064F2C4,extended,00000012 +patch=1,EE,E0020002,extended,0064F2B0 +patch=1,EE,0064F2B0,extended,00000012 +patch=1,EE,0064F2C4,extended,00000012 +patch=1,EE,0064F574,word,3F000000 +patch=1,EE,0064F580,word,3F000000 +patch=1,EE,0064F584,word,40638E39 +patch=1,EE,0064F588,word,40400000 +patch=1,EE,0064F638,word,44A00000 +patch=1,EE,0064F650,word,3B360B61 +patch=1,EE,0064F6E4,word,46FFF000 +patch=1,EE,006505E8,word,44A00000 \ No newline at end of file diff --git a/patches/SCES-55019_FCB981D5.pnach b/patches/SCES-55019_FCB981D5.pnach index fdca26f4..e7f37766 100644 --- a/patches/SCES-55019_FCB981D5.pnach +++ b/patches/SCES-55019_FCB981D5.pnach @@ -1,9 +1,15 @@ -gametitle=Ratchet & Clank - Size Matters PAL-M SCES-55019 FCB981D5 +gametitle=Ratchet & Clank - Size Matters (PAL-M) SCES-55019 FCB981D5 -[Mode 480p] +[Widescreen 16:9] +gsaspectratio=16:9 author=PeterDelta -comment=Unlocked progressive Mode 480p -patch=1,EE,01EF5718,word,00000001 //00000000 16:9 -patch=1,EE,01F4AB20,word,00000001 //00000000 16:9 +description=Enable native widescreen +patch=1,EE,01EF5718,word,00000001 //00000000 +patch=1,EE,01F4AB20,word,00000001 //00000000 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. patch=1,EE,01EF571C,word,00000000 //00000001 NTSC -patch=1,EE,01EF5720,word,00000001 //00000000 480 +patch=1,EE,01EF5720,word,00000001 //00000000 480 \ No newline at end of file diff --git a/patches/SCES-55510_71583CA9.pnach b/patches/SCES-55510_71583CA9.pnach index a7a05b99..77b66cc8 100644 --- a/patches/SCES-55510_71583CA9.pnach +++ b/patches/SCES-55510_71583CA9.pnach @@ -1,9 +1,15 @@ -gametitle=Jak and Daxter - The Lost Frontier SCES-55510 71583CA9 +gametitle=Jak and Daxter - The Lost Frontier (PAL-M) SCES-55510 71583CA9 -[Mode 480p] +[Widescreen 16:9] +gsaspectratio=16:9 author=PeterDelta -comment=Unlocked progressive Mode 480p +description=Enable native widescreen +patch=1,EE,01E3FC5C,word,00000001 //00000000 +patch=1,EE,01E84AF4,word,00000001 //00000000 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. patch=1,EE,01E3FC60,word,00000000 //00000001 -patch=1,EE,01E3FC64,word,00000001 //00000000 -patch=1,EE,01E84AF4,word,00000001 //00000000 16:9 -patch=1,EE,01E3FC5C,word,00000001 //00000000 16:9 cutscenes +patch=1,EE,01E3FC64,word,00000001 //00000000 \ No newline at end of file diff --git a/patches/SCES-55571_7030A01C.pnach b/patches/SCES-55571_7030A01C.pnach index 2e157ddf..09a4e3dc 100644 --- a/patches/SCES-55571_7030A01C.pnach +++ b/patches/SCES-55571_7030A01C.pnach @@ -3,22 +3,28 @@ gametitle=Ghostbusters (PAL-M) SCES-55571 7030A01C [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,0037e54c,word,3c013fdb //3c013fa4 hor fov gameplay / ver fov cut-scenes patch=1,EE,0037e550,word,3421a5ef //3421bc76 hor fov gameplay / ver fov cut-scenes patch=1,EE,002d1594,word,3c014158 //3c014190 zoom cut-scenes patch=1,EE,0037d694,word,3c013fa4 //3c013faa zoom fix patch=1,EE,0037d698,word,3421bc76 //3421aaab zoom fix -patch=1,EE,0031d1f4,word,3c013f80 //3c014000 remove black bars in cut-scenes -[50 FPS] +[Remove Blackbars] +author=ElHecht +description=Removes black bars in cutscenes +patch=1,EE,0031d1f4,word,3c013f80 //3c014000 + +[50/60 FPS] author=PeterDelta -comment=Requires having a save game before enabling it. Might need enable 300% EE Overclock. -patch=1,EE,003194C0,word,00000000 +description=Might need EE Overclock at 300%. +patch=1,EE,E0010001,extended,00700EA0 //to avoid a bug if there is no profile +patch=1,EE,203194C0,extended,00000000 //1440FFF5 -[Mode 480p] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode 480p at startup +description=SDTV 480p mode at start. patch=1,EE,00412E2C,word,3C050000 patch=1,EE,00412E34,word,3C060050 patch=1,EE,00412E3C,word,3C070001 \ No newline at end of file diff --git a/patches/SCES-55573_3C967DB9.pnach b/patches/SCES-55573_3C967DB9.pnach index 43bb73a7..da6a3a20 100644 --- a/patches/SCES-55573_3C967DB9.pnach +++ b/patches/SCES-55573_3C967DB9.pnach @@ -1,4 +1,4 @@ -gametitle=MotorStorm - Arctic Edge (PAL-M) SCES-55573 3C967DB9 +gametitle=MotorStorm - Arctic Edge (PAL-M) SCES-55573 3C967DB9 [50 FPS] author=El_Patas, original code by asasega diff --git a/patches/SCES-55662_DB2EE959.pnach b/patches/SCES-55662_DB2EE959.pnach new file mode 100644 index 00000000..d2d21caa --- /dev/null +++ b/patches/SCES-55662_DB2EE959.pnach @@ -0,0 +1,6 @@ +gametitle=Chandragupta - Warrior Prince PAL-IN SCES-55662 DB2EE959 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0045593C,word,28630001 //28630002 \ No newline at end of file diff --git a/patches/SCKA-20005_2FABCAE0.pnach b/patches/SCKA-20005_2FABCAE0.pnach index c2be34b9..11f6a361 100644 --- a/patches/SCKA-20005_2FABCAE0.pnach +++ b/patches/SCKA-20005_2FABCAE0.pnach @@ -2,7 +2,7 @@ gametitle=Let's Bravo Music (K)(SCKA-20005) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCKA-20006_3A2EF433.pnach b/patches/SCKA-20006_3A2EF433.pnach index b019afa1..005b3e28 100644 --- a/patches/SCKA-20006_3A2EF433.pnach +++ b/patches/SCKA-20006_3A2EF433.pnach @@ -2,7 +2,7 @@ gametitle=Rygar - The Legendary Adventure (NTSC-K) (SCKA_20006) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 patch=1,EE,00207b6c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SCKA-20007_5189BE5B.pnach b/patches/SCKA-20007_5189BE5B.pnach index ede501d2..021e8a0a 100644 --- a/patches/SCKA-20007_5189BE5B.pnach +++ b/patches/SCKA-20007_5189BE5B.pnach @@ -2,7 +2,7 @@ gametitle=SOCOM - U.S. Navy SEALs (K)(SCKA-20007) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 patch=1,EE,0014f64c,word,3c013f40 // 00000000 ver fov diff --git a/patches/SCKA-20010_25FE4D23.pnach b/patches/SCKA-20010_25FE4D23.pnach index d3516324..4cd01a19 100644 --- a/patches/SCKA-20010_25FE4D23.pnach +++ b/patches/SCKA-20010_25FE4D23.pnach @@ -2,7 +2,7 @@ gametitle=Jak II - Renegade (NTSC-K) (SCKA-20010) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 diff --git a/patches/SCKA-20014_60AA5049.pnach b/patches/SCKA-20014_60AA5049.pnach index d289eb03..ce280e31 100644 --- a/patches/SCKA-20014_60AA5049.pnach +++ b/patches/SCKA-20014_60AA5049.pnach @@ -2,7 +2,7 @@ gametitle=Dark Cloud 2 (NTSC-K) (SCKA_20014) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) //803f023c d000a426 d000a2ae patch=1,EE,00139004,word,3c023f40 // 3c023f80 diff --git a/patches/SCKA-20019_47C2C34A.pnach b/patches/SCKA-20019_47C2C34A.pnach index fc212c5f..b2df7389 100644 --- a/patches/SCKA-20019_47C2C34A.pnach +++ b/patches/SCKA-20019_47C2C34A.pnach @@ -2,7 +2,7 @@ gametitle=Forbidden Siren (K) (SCKA_200.19) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack by sergx12 (pnach by Arapapa) +author=sergx12 (pnach by Arapapa) //gameplay by sergx12 (0000a2af 0045033c 803f023c e0000426) patch=1,EE,001ffd98,word,3c023f40 diff --git a/patches/SCKA-20020_8C121240.pnach b/patches/SCKA-20020_8C121240.pnach index 3fd82be4..14b2d5dc 100644 --- a/patches/SCKA-20020_8C121240.pnach +++ b/patches/SCKA-20020_8C121240.pnach @@ -2,7 +2,7 @@ gametitle=SOCOM II - U.S. Navy SEALs (K)(SCKA-20020) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SCKA-20023_56ABF4C6.pnach b/patches/SCKA-20023_56ABF4C6.pnach index fc3e0392..254cf5c3 100644 --- a/patches/SCKA-20023_56ABF4C6.pnach +++ b/patches/SCKA-20023_56ABF4C6.pnach @@ -1,13 +1,14 @@ -gametitle=Fatal Frame 2 (Project Zero 2) (K)(SCKA-20023) +gametitle=Fatal Frame II: Crimson Butterfly * NTSC-K * SCKA-20023 * 56ABF4C6 +// Project Zero II: Crimson Butterfly [Widescreen 16:9] gsaspectratio=16:9 -comment=16:9 widescreen hack by nemesis2000 and devina40 (NTSC-K by Arapapa) +author=nemesis2000 & Devina - ported by arapapa -//16:9 widescreen by nemesis2000 +// 16:9 widescreen by nemesis2000 patch=1,EE,00336ECC,word,3F400000 -//FMV's fix by nemesis2000 +// FMV fix by nemesis2000 patch=1,EE,001E4844,word,3C013F40 patch=1,EE,001E4848,word,0C07918E patch=1,EE,001E484C,word,44811800 @@ -23,24 +24,24 @@ patch=1,EE,001E46EC,word,01C02820 patch=1,EE,001E46F0,word,E4830030 patch=1,EE,0033AA58,word,0000006A -//Lens Flare's fix -//B000BD27 00000000 0c9a8b93 -patch=1,EE,0014f69c,word,3c013f40 //00000000 -patch=1,EE,0014f70c,word,44810800 //00000000 -patch=1,EE,0014f710,word,46016302 //00000000 +// Lens Flare's fix +// B000BD27 00000000 0c9a8b93 +patch=1,EE,0014f69c,word,3c013f40 // 00000000 +patch=1,EE,0014f70c,word,44810800 // 00000000 +patch=1,EE,0014f710,word,46016302 // 00000000 -//(0c053da7) -patch=1,EE,0013a10c,word,0c053da7 //0c053da8 -patch=1,EE,0013a194,word,0c053da7 //0c053da8 -patch=1,EE,0013a1fc,word,0c053da7 //0c053da8 -patch=1,EE,0013a274,word,0c053da7 //0c053da8 +// (0c053da7) +patch=1,EE,0013a10c,word,0c053da7 // 0c053da8 +patch=1,EE,0013a194,word,0c053da7 // 0c053da8 +patch=1,EE,0013a1fc,word,0c053da7 // 0c053da8 +patch=1,EE,0013a274,word,0c053da7 // 0c053da8 -//Dither Effect Off -//12004054 1800838e -//patch=1,EE,0019ec5c,word,10000012 - -//Focus Effect Off -//a82e080c 2d282002 -//patch=1,EE,0020b1d4,word,00000000 //0c080ea8 +// ========== +[Disable Dither effect] +// 12004054 1800838e +patch=1,EE,0019ec5c,word,10000012 +[Disable Focus effect] +// a82e080c 2d282002 +patch=1,EE,0020b1d4,word,00000000 // 0c080ea8 diff --git a/patches/SCKA-20025_5B563DA7.pnach b/patches/SCKA-20025_5B563DA7.pnach index 8a0b301f..467f697c 100644 --- a/patches/SCKA-20025_5B563DA7.pnach +++ b/patches/SCKA-20025_5B563DA7.pnach @@ -2,7 +2,7 @@ gametitle=Katamari Damacy (K) (SCKA_200.25) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) patch=1,EE,00168550,word,3c0143d6 diff --git a/patches/SCKA-20026_4AF3B36E.pnach b/patches/SCKA-20026_4AF3B36E.pnach index 9f872531..f2325cde 100644 --- a/patches/SCKA-20026_4AF3B36E.pnach +++ b/patches/SCKA-20026_4AF3B36E.pnach @@ -2,7 +2,7 @@ gametitle=Gungrave OD (K) (SCKA_20026) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (search 00000000 00000000 43ad1346 00000000) patch=1,EE,00286c84,word,3c013f40 // 00000000 hor fov diff --git a/patches/SCKA-20031_BC08CDDE.pnach b/patches/SCKA-20031_BC08CDDE.pnach index 24a15852..c876a9e9 100644 --- a/patches/SCKA-20031_BC08CDDE.pnach +++ b/patches/SCKA-20031_BC08CDDE.pnach @@ -2,7 +2,7 @@ gametitle=Athens 2004 (K)(SCKA-20031) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,0026fd48,word,3c013f10 //3c013f40 diff --git a/patches/SCKA-20032_3676E74C.pnach b/patches/SCKA-20032_3676E74C.pnach index dcd53c6c..724c1c09 100644 --- a/patches/SCKA-20032_3676E74C.pnach +++ b/patches/SCKA-20032_3676E74C.pnach @@ -2,7 +2,7 @@ gametitle=Syphon Filter - The Omega Virus (K) (SCKA-20032) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //gameplay patch=1,EE,0039a7d0,word,3c043f40 diff --git a/patches/SCKA-20040_D1368EAE.pnach b/patches/SCKA-20040_D1368EAE.pnach index 5623644c..986fbc11 100644 --- a/patches/SCKA-20040_D1368EAE.pnach +++ b/patches/SCKA-20040_D1368EAE.pnach @@ -2,7 +2,7 @@ gametitle=Jak 3 (NTSC-K) (SCKA-20040) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 //003f033c 00008344 00088744 diff --git a/patches/SCKA-20043_AE86E04C.pnach b/patches/SCKA-20043_AE86E04C.pnach index 2aff226a..ae25653b 100644 --- a/patches/SCKA-20043_AE86E04C.pnach +++ b/patches/SCKA-20043_AE86E04C.pnach @@ -2,7 +2,7 @@ gametitle=Magna Carta - Tears of Blood (K) (SCKA_20043) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) //16:9 (b002a427 00608044 803f023c 00688244 00000000 86630046 30c2050c) patch=1,EE,002bdae8,word,3c023f40 //3c023f80 diff --git a/patches/SCKA-20044_518DD841.pnach b/patches/SCKA-20044_518DD841.pnach index b72d43ab..750c6b06 100644 --- a/patches/SCKA-20044_518DD841.pnach +++ b/patches/SCKA-20044_518DD841.pnach @@ -2,7 +2,7 @@ gametitle=Sly Cooper 2 - Band of Thieves (SCKA-20044) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Fix by PsxFan107 (NTSC-K by Arapapa) +author=PsxFan107 (NTSC-K by Arapapa) // Widescreen by nemesis2000 patch=1,EE,0014dfc0,word,3c013fdd //3c013fa6 diff --git a/patches/SCKA-20047_1E2BDB53.pnach b/patches/SCKA-20047_1E2BDB53.pnach index ba21b1e6..6cfae79d 100644 --- a/patches/SCKA-20047_1E2BDB53.pnach +++ b/patches/SCKA-20047_1E2BDB53.pnach @@ -2,7 +2,7 @@ gametitle=Armored Core - Nine Breaker (K) (SCKA-20047) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 (00000000(*) 00000000 43ad1346 00000000(*) 00000000(*)) patch=1,EE,00139fac,word,3c013f40 // 00000000 hor fov menu diff --git a/patches/SCKA-20049_EA64EF39.pnach b/patches/SCKA-20049_EA64EF39.pnach index b45afe06..c0f3ad01 100644 --- a/patches/SCKA-20049_EA64EF39.pnach +++ b/patches/SCKA-20049_EA64EF39.pnach @@ -2,7 +2,7 @@ gametitle=Tekken 5 (NTSC-K) (SCKA_200.49) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000, porting by 99skull +author=nemesis2000, porting by 99skull patch=1,EE,00333F00,word,3C013F40 // both fov+ diff --git a/patches/SCKA-20050_E4F5DA2B.pnach b/patches/SCKA-20050_E4F5DA2B.pnach index 08f5313d..a4a330a9 100644 --- a/patches/SCKA-20050_E4F5DA2B.pnach +++ b/patches/SCKA-20050_E4F5DA2B.pnach @@ -2,7 +2,7 @@ gametitle=Tales of Legendia (NTSC-K)(SCKA-20050) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCKA-20051_E0BF7C19.pnach b/patches/SCKA-20051_E0BF7C19.pnach index a45a03da..1b48108a 100644 --- a/patches/SCKA-20051_E0BF7C19.pnach +++ b/patches/SCKA-20051_E0BF7C19.pnach @@ -2,7 +2,7 @@ gametitle=Katamari Damacy 2 (K) (SCKA_200.51) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) patch=1,EE,001082f0,word,3c0143d6 diff --git a/patches/SCKA-20052_56242EC9.pnach b/patches/SCKA-20052_56242EC9.pnach index bae07cd4..6ae62238 100644 --- a/patches/SCKA-20052_56242EC9.pnach +++ b/patches/SCKA-20052_56242EC9.pnach @@ -2,7 +2,7 @@ gametitle=Genji - Dawn of the Samurai(K) (SCKA_20052) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht, Arapapa +author=ElHecht, Arapapa //16:9 (2044013c 00088144 07010046) patch=1,EE,002e0a28,word,3c014455 // 3c014420 hor fov diff --git a/patches/SCKA-20055_2383B74A.pnach b/patches/SCKA-20055_2383B74A.pnach index 1046d5a0..7c97b2a2 100644 --- a/patches/SCKA-20055_2383B74A.pnach +++ b/patches/SCKA-20055_2383B74A.pnach @@ -2,7 +2,7 @@ gametitle=Mystic Nights (K)(SCKA-20055) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCKA-20055_CDD36744.pnach b/patches/SCKA-20055_CDD36744.pnach index edb236ec..26b74ec9 100644 --- a/patches/SCKA-20055_CDD36744.pnach +++ b/patches/SCKA-20055_CDD36744.pnach @@ -2,7 +2,7 @@ gametitle=Mystic Nights (English Patched) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCKA-20057_E12A4CFA.pnach b/patches/SCKA-20057_E12A4CFA.pnach index abf3edfa..fff1be97 100644 --- a/patches/SCKA-20057_E12A4CFA.pnach +++ b/patches/SCKA-20057_E12A4CFA.pnach @@ -2,7 +2,7 @@ gametitle=Everybody's Golf (K)(SCKA-20057) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 patch=1,EE,e005010C,extended,0048ca94 // check 2048ca94 matches value xxxx010c diff --git a/patches/SCKA-20058_31E12073.pnach b/patches/SCKA-20058_31E12073.pnach index bc5c5fe5..12b2857b 100644 --- a/patches/SCKA-20058_31E12073.pnach +++ b/patches/SCKA-20058_31E12073.pnach @@ -2,7 +2,7 @@ gametitle=Poncotsu Roman Daikatsugeki Bumpy Trot (K)(SCKA-20058) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCKA-20068_AA9ABE8B.pnach b/patches/SCKA-20068_AA9ABE8B.pnach index acf94ba3..295a5dfe 100644 --- a/patches/SCKA-20068_AA9ABE8B.pnach +++ b/patches/SCKA-20068_AA9ABE8B.pnach @@ -2,7 +2,7 @@ gametitle=Cars (K)(SCKA-20068) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas (NTSC-K by Arapapa) +author=El_Patas (NTSC-K by Arapapa) //Gameplay 16:9 diff --git a/patches/SCKA-20069_33EFA0B0.pnach b/patches/SCKA-20069_33EFA0B0.pnach index 38d026d0..ff728e8a 100644 --- a/patches/SCKA-20069_33EFA0B0.pnach +++ b/patches/SCKA-20069_33EFA0B0.pnach @@ -2,7 +2,7 @@ gametitle=Forbidden Siren 2 (K) (SCKA_20069) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack by sergx12 (NTSC-K by Arapapa) +author=sergx12 (NTSC-K by Arapapa) //gameplay by sergx12 (c80216e6 803f033c cc0217e6) patch=1,EE,00177940,word,3c033f40 diff --git a/patches/SCKA-20084_1AFD7469.pnach b/patches/SCKA-20084_1AFD7469.pnach index 943e5f1a..c6ed31f0 100644 --- a/patches/SCKA-20084_1AFD7469.pnach +++ b/patches/SCKA-20084_1AFD7469.pnach @@ -1,24 +1,24 @@ gametitle=Monster House (NTSC-K)(SCKA-20084) -[Widescreen 16:9] -gsaspectratio=16:9 -author=Arapapa -comment=Widescreen Hack -//Widescreen hack 16:9 +//[Widescreen 16:9] +//gsaspectratio=16:9 +//author=Arapapa +//comment=Widescreen Hack +//After the first mission the game breaks on the other levels //Y-Fov + Zoom in //00000000 00000000 03150146 00000000 //763f013c 00f88144 42081f46 46011503 -patch=1,EE,001c610c,word,3c013f76 //00000000 -patch=1,EE,001c6110,word,4481f800 //00000000 -patch=1,EE,001c6114,word,461f0842 //46011503 -patch=1,EE,001c6118,word,46011503 //00000000 +//patch=1,EE,001c610c,word,3c013f76 //00000000 +//patch=1,EE,001c6110,word,4481f800 //00000000 +//patch=1,EE,001c6114,word,461f0842 //46011503 +//patch=1,EE,001c6118,word,46011503 //00000000 //Zoom out //0040023c 00008244 3c00a2c7 //dd3f023c 00008244 3c00a2c7 //Zoom value adjust : NTSC-K(3c023fdd), NTSC-U and PAL(3c023fe0) -patch=1,EE,001c60f8,word,3c023fe0 //3c024000 +//patch=1,EE,001c60f8,word,3c023fe0 //3c024000 ////////////////////////////////////// //zoom diff --git a/patches/SCKA-20090_924C4AA6.pnach b/patches/SCKA-20090_924C4AA6.pnach index 36d1af7e..b6a4a940 100644 --- a/patches/SCKA-20090_924C4AA6.pnach +++ b/patches/SCKA-20090_924C4AA6.pnach @@ -2,7 +2,7 @@ gametitle=God Hand (K) (SCKA_20090) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 and Arapapa +author=nemesis2000 and Arapapa //16:9 (6e3f013c efee2134 00288144 5900023c cc5ae6ac) patch=1,EE,0030fda0,word,3c013f9f // 3c013f6e diff --git a/patches/SCKA-20096_0B2F3DEE.pnach b/patches/SCKA-20096_0B2F3DEE.pnach index 81460e5d..01f650ce 100644 --- a/patches/SCKA-20096_0B2F3DEE.pnach +++ b/patches/SCKA-20096_0B2F3DEE.pnach @@ -2,7 +2,7 @@ gametitle=Barnyard (K)(SCKA-20096) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCKA-20099_BCD68B1E.pnach b/patches/SCKA-20099_BCD68B1E.pnach index 12a74474..6cc28504 100644 --- a/patches/SCKA-20099_BCD68B1E.pnach +++ b/patches/SCKA-20099_BCD68B1E.pnach @@ -2,7 +2,7 @@ gametitle=Shin Megami Tensei: Persona 3 (K) (SCKA_20099) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 and devina (pnach by Arapapa) +author=nemesis2000 and devina (pnach by Arapapa) //16:9 patch=1,EE,007afa1c,word,3fe38e38 // 3faaaaab diff --git a/patches/SCKA-20109_8897C208.pnach b/patches/SCKA-20109_8897C208.pnach index 226f2c60..74b62b3d 100644 --- a/patches/SCKA-20109_8897C208.pnach +++ b/patches/SCKA-20109_8897C208.pnach @@ -2,7 +2,7 @@ gametitle=Shin Megami Tensei - Persona 3 FES (K) (SCKA-20109) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000, devina, sergx12, Arapapa +author=nemesis2000, devina, sergx12, Arapapa comment=Controllable party members by TGE (NTSC-K by Arapapa) //Widescreen 16:9 diff --git a/patches/SCKA-20114_9891B945.pnach b/patches/SCKA-20114_9891B945.pnach index ec208126..51ec7b62 100644 --- a/patches/SCKA-20114_9891B945.pnach +++ b/patches/SCKA-20114_9891B945.pnach @@ -2,7 +2,7 @@ gametitle=Obscure II (SCKA-20114) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 and ElHecht (NTSC-K by Arapapa) +author=nemesis2000 and ElHecht (NTSC-K by Arapapa) // 16:9 //02020746 50004324 diff --git a/patches/SCKA-20132_5132BBDF.pnach b/patches/SCKA-20132_5132BBDF.pnach index d3af7ae7..9fd091f3 100644 --- a/patches/SCKA-20132_5132BBDF.pnach +++ b/patches/SCKA-20132_5132BBDF.pnach @@ -2,7 +2,7 @@ gametitle=Shin Megami Tensei: Persona 4 (K) (SCKA_201.32) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 and pavachan (pnach by Arapapa) +author=nemesis2000 and pavachan (pnach by Arapapa) //16:9 by pavachan patch=1,EE,0076201c,word,3fe38e38 diff --git a/patches/SCPS-11001_DE7A4924.pnach b/patches/SCPS-11001_DE7A4924.pnach index 4e87664d..78a84def 100644 --- a/patches/SCPS-11001_DE7A4924.pnach +++ b/patches/SCPS-11001_DE7A4924.pnach @@ -2,7 +2,7 @@ gametitle=I.Q Remix+ - Intelligent Qube (J)(SCPS-11001) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-11002_78950D31.pnach b/patches/SCPS-11002_78950D31.pnach index fa72e6e3..501704c6 100644 --- a/patches/SCPS-11002_78950D31.pnach +++ b/patches/SCPS-11002_78950D31.pnach @@ -2,7 +2,7 @@ gametitle=Fantavision (J)(SCPS-11002) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-11003_B01A4C95.pnach b/patches/SCPS-11003_B01A4C95.pnach index 958755ba..8badc8fe 100644 --- a/patches/SCPS-11003_B01A4C95.pnach +++ b/patches/SCPS-11003_B01A4C95.pnach @@ -1,25 +1,82 @@ -gametitle=ICO [NTSC-J] (SCPS-11003) +gametitle=ICO * NTSC-J * SCPS-11003 * B01A4C95 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Little Giant) +author=nemesis2000, ported by Little Giant -//widescreen -patch=1,EE,00114c6c,word,3c013f40 //00000000 -patch=1,EE,00114c70,word,4481c000 //00000000 -patch=1,EE,00114c80,word,c78780e0 //00000000 -patch=1,EE,00114c84,word,46181082 //00000000 +// 16:9 widescreen +patch=1,EE,00114c6c,word,3c013f40 // 00000000 +patch=1,EE,00114c70,word,4481c000 // 00000000 +patch=1,EE,00114c80,word,c78780e0 // 00000000 +patch=1,EE,00114c84,word,46181082 // 00000000 -//render fix -patch=1,EE,00114624,word,240302aB //8f8394cc -patch=1,EE,00549778,word,44FA0000 //44bb8000 +// 16:9 Render fix +patch=1,EE,00114624,word,240302aB // 8f8394cc +patch=1,EE,00549778,word,44FA0000 // 44bb8000 -//No interlacing by asasega -//patch=1,EE,0028D3F8,extended,00000001 -//patch=1,EE,0028D420,extended,00000001 -//patch=1,EE,0028D400,extended,00000040 -//patch=1,EE,0028D428,extended,00000040 +[Widescreen 16:10] +gsaspectratio=Stretch +author=nemesis2000, Little Giant & pgert +patch=1,EE,00114c6c,word,3c013f55 +patch=1,EE,00114c70,word,4481c000 +patch=1,EE,00114c80,word,c78780e0 +patch=1,EE,00114c84,word,46181082 +patch=1,EE,00114624,word,240302aB +patch=1,EE,00549778,word,44e10000 + +[Widescreen 15:10] +gsaspectratio=Stretch +author=nemesis2000, Little Giant & pgert +patch=1,EE,00114c6c,word,3c013f64 +patch=1,EE,00114c70,word,4481c000 +patch=1,EE,00114c80,word,c78780e0 +patch=1,EE,00114c84,word,46181082 +patch=1,EE,00114624,word,240302aB +patch=1,EE,00549778,word,44d2f000 + +[Widescreen 20:9] +gsaspectratio=Stretch +author=nemesis2000, Little Giant, kripkrop, Devina & pgert +comment=Imperfections might show up. +patch=1,EE,00114c6c,word,3c013f1a +patch=1,EE,00114c70,word,4481c000 +patch=1,EE,00114c80,word,c78780e0 +patch=1,EE,00114c84,word,46181082 +patch=1,EE,00114624,word,24030aaa +patch=1,EE,00549778,word,451c4000 + +[Widescreen 21:9] +gsaspectratio=Stretch +author=nemesis2000, Little Giant, kripkrop, Devina & pgert +comment=Imperfections might show up. +patch=1,EE,00114c6c,word,3c013f12 +patch=1,EE,00114c70,word,4481c000 +patch=1,EE,00114c80,word,c78780e0 +patch=1,EE,00114c84,word,46181082 +patch=1,EE,00114624,word,24030aaa +patch=1,EE,00549778,word,45241000 [Remove Blackbars] +author=nemesis2000 & Little Giant description=Removes black bars in cutscenes -patch=1,EE,00113380,word,3c010000 //3c014300 \ No newline at end of file +patch=1,EE,00113380,word,3c010000 // 3c014300 + +/////////////////// + +[60 fps] +author=asasega +comment=Might need EE overclocking to be stable. +// 00000002 00000001 00000000 00000000 00000000 00000000 00000103 00000103 00000000\ +// 00000000 00000007 00000066 +patch=1,EE,2028D3C4,extended,00000001 + +[No-Interlacing] +gsinterlacemode=1 +author=asasega +description=Attempts to disable interlaced offset rendering. +patch=1,EE,0028D3F8,extended,00000001 +patch=1,EE,0028D420,extended,00000001 +patch=1,EE,0028D400,extended,00000040 +patch=1,EE,0028D428,extended,00000040 + +/////////////////// diff --git a/patches/SCPS-11005_17006BD9.pnach b/patches/SCPS-11005_17006BD9.pnach index 90a20992..2806df4f 100644 --- a/patches/SCPS-11005_17006BD9.pnach +++ b/patches/SCPS-11005_17006BD9.pnach @@ -2,7 +2,7 @@ gametitle=Sagashi ni Ikouyo - Go to Find It! (NTSC-J)(SCPS-11005) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,201B2494,word,3FAAAAAB //3F800000 Y-ratio diff --git a/patches/SCPS-11007_592FE581.pnach b/patches/SCPS-11007_592FE581.pnach index 0d3239f3..8f7c1c7f 100644 --- a/patches/SCPS-11007_592FE581.pnach +++ b/patches/SCPS-11007_592FE581.pnach @@ -2,7 +2,7 @@ gametitle=Tsugunai (J)(SCPS-11007) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-11008_EE838B5C.pnach b/patches/SCPS-11008_EE838B5C.pnach index b737865a..a0b7af8d 100644 --- a/patches/SCPS-11008_EE838B5C.pnach +++ b/patches/SCPS-11008_EE838B5C.pnach @@ -2,7 +2,7 @@ gametitle=Boku to Mao (J) (PBPX-95201) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (0000803f d7a3f03e 00004844) patch=1,EE,201F99E4,word,3f400000 // 3f800000 diff --git a/patches/SCPS-11010_118373E0.pnach b/patches/SCPS-11010_118373E0.pnach index fcf2bea9..1cec9d9a 100644 --- a/patches/SCPS-11010_118373E0.pnach +++ b/patches/SCPS-11010_118373E0.pnach @@ -2,7 +2,7 @@ gametitle=Yoake no Mariko (Performance Pack) (J)(SCPS-11010) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-11022_0CF7E6FF.pnach b/patches/SCPS-11022_0CF7E6FF.pnach index 9b2fe5a7..139b88be 100644 --- a/patches/SCPS-11022_0CF7E6FF.pnach +++ b/patches/SCPS-11022_0CF7E6FF.pnach @@ -2,7 +2,7 @@ gametitle=Yoake no Mariko 2nd Act (J)(SCPS-11022) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-11024_9F7246A3.pnach b/patches/SCPS-11024_9F7246A3.pnach index f28bb704..57ecc0bc 100644 --- a/patches/SCPS-11024_9F7246A3.pnach +++ b/patches/SCPS-11024_9F7246A3.pnach @@ -2,7 +2,7 @@ gametitle=Otostaz [NTSC-J] [SCPS-11024] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-11026_CE2A5384.pnach b/patches/SCPS-11026_CE2A5384.pnach index 61b55c01..59db19bc 100644 --- a/patches/SCPS-11026_CE2A5384.pnach +++ b/patches/SCPS-11026_CE2A5384.pnach @@ -2,7 +2,7 @@ gametitle=Gacharoku (J)(SCPS-11026) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-11027_794D3E00.pnach b/patches/SCPS-11027_794D3E00.pnach index 7afaedc9..e66574d4 100644 --- a/patches/SCPS-11027_794D3E00.pnach +++ b/patches/SCPS-11027_794D3E00.pnach @@ -2,7 +2,7 @@ gametitle=Mawaza (J)(SCPS-11027) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-11028_19ED9AE4.pnach b/patches/SCPS-11028_19ED9AE4.pnach index c1f90e3a..3871d74f 100644 --- a/patches/SCPS-11028_19ED9AE4.pnach +++ b/patches/SCPS-11028_19ED9AE4.pnach @@ -2,7 +2,7 @@ gametitle=Let's Bravo Music (J)(SCPS-11028) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-11032_D641407A.pnach b/patches/SCPS-11032_D641407A.pnach index b150e6fa..98f9c4b9 100644 --- a/patches/SCPS-11032_D641407A.pnach +++ b/patches/SCPS-11032_D641407A.pnach @@ -2,7 +2,7 @@ gametitle=Vib Ripple (J)(SCPS-11032) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-11033_2D215D04.pnach b/patches/SCPS-11033_2D215D04.pnach index 0378d166..526d548d 100644 --- a/patches/SCPS-11033_2D215D04.pnach +++ b/patches/SCPS-11033_2D215D04.pnach @@ -2,7 +2,7 @@ gametitle=Mojib-Ribbon(NTSC-J) (SCPS-11033) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Parotaku +author=Parotaku // 16:9 patch=1,EE,0039f28c,word,3c013f40 diff --git a/patches/SCPS-11034_09312716.pnach b/patches/SCPS-11034_09312716.pnach index 325dcbee..dc55828a 100644 --- a/patches/SCPS-11034_09312716.pnach +++ b/patches/SCPS-11034_09312716.pnach @@ -2,7 +2,7 @@ gametitle=Gacharoku 2 - Kondo wa Sekai Isshuu yo!! (J)(SCPS-11034) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-15003_EC064AC7.pnach b/patches/SCPS-15003_EC064AC7.pnach index eeddb82b..71684eb7 100644 --- a/patches/SCPS-15003_EC064AC7.pnach +++ b/patches/SCPS-15003_EC064AC7.pnach @@ -2,7 +2,7 @@ gametitle=Sky Odyssey (J)(SCPS-15003) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) patch=1,EE,00285b90,word,3f400000 //3f800000 patch=1,EE,0026ea80,word,43e00000 //43a00000 diff --git a/patches/SCPS-15016_052A5B0B.pnach b/patches/SCPS-15016_052A5B0B.pnach index e5459c56..3af2b8e3 100644 --- a/patches/SCPS-15016_052A5B0B.pnach +++ b/patches/SCPS-15016_052A5B0B.pnach @@ -2,7 +2,7 @@ gametitle=Minna no Golf 3 (J)(SCPS-15016) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-15017_649CD4B5.pnach b/patches/SCPS-15017_649CD4B5.pnach index f1776fdc..2091b82a 100644 --- a/patches/SCPS-15017_649CD4B5.pnach +++ b/patches/SCPS-15017_649CD4B5.pnach @@ -2,7 +2,7 @@ gametitle=PaRappa the Rapper 2 (NTSC-J) (SCPS-15017) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Parotaku +author=Parotaku // 16:9 patch=1,EE,0016066c,word,3c013f40 diff --git a/patches/SCPS-15019_BFF0261E.pnach b/patches/SCPS-15019_BFF0261E.pnach index 257707f6..a4da079c 100644 --- a/patches/SCPS-15019_BFF0261E.pnach +++ b/patches/SCPS-15019_BFF0261E.pnach @@ -2,7 +2,7 @@ gametitle=Formula One 2001 (J)(SCPS-15019) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-15020_EC38E681.pnach b/patches/SCPS-15020_EC38E681.pnach index 62fdddf2..250b6669 100644 --- a/patches/SCPS-15020_EC38E681.pnach +++ b/patches/SCPS-15020_EC38E681.pnach @@ -2,7 +2,7 @@ gametitle=Legaia: Duel Saga [NTSC-J] (SCPS-15020) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Gaint +author=Little Giant patch=1,EE,00220050,word,3c013f40 //3c013f80 gameplay hor fov patch=1,EE,002200dc,word,3c013f40 //3c013f80 battle hor fov diff --git a/patches/SCPS-15021_EDE4FE64.pnach b/patches/SCPS-15021_EDE4FE64.pnach index dd021ca6..121ade9d 100644 --- a/patches/SCPS-15021_EDE4FE64.pnach +++ b/patches/SCPS-15021_EDE4FE64.pnach @@ -2,7 +2,7 @@ gametitle=Jak x Daxter - Kyuusekai no Isan (NTSC-J) [SCPS-15021] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,202AF7B0,extended,3f1f3b64 // 3f000000 zoom diff --git a/patches/SCPS-15024_EB484B86.pnach b/patches/SCPS-15024_EB484B86.pnach index 466e31fc..f40c32ed 100644 --- a/patches/SCPS-15024_EB484B86.pnach +++ b/patches/SCPS-15024_EB484B86.pnach @@ -2,7 +2,7 @@ gametitle=Wild Arms 3 (J) (SCPS_150.24) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //towns and maps patch=1,EE,00115c90,word,3c023f40 diff --git a/patches/SCPS-15024_EB4A4786.pnach b/patches/SCPS-15024_EB4A4786.pnach index 408ec1a0..ca3ca01a 100644 --- a/patches/SCPS-15024_EB4A4786.pnach +++ b/patches/SCPS-15024_EB4A4786.pnach @@ -2,7 +2,7 @@ gametitle=Wild Arms Advanced 3rd [NTSC-J] (SCPS-15024) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Little Ginat) +author=nemesis2000 (pnach by Little Ginat) //widescreen patch=1,EE,00115c90,word,3c023f40 //3c023f80 diff --git a/patches/SCPS-15027_396BD696.pnach b/patches/SCPS-15027_396BD696.pnach index c81ac140..2a619bc6 100644 --- a/patches/SCPS-15027_396BD696.pnach +++ b/patches/SCPS-15027_396BD696.pnach @@ -2,7 +2,7 @@ gametitle=Popolocrois - Hajimari no Bouken (J) (SCPS-15027) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //16:9 //patch=1,EE,2086CAF8,word,3f400000 // 3f800000 diff --git a/patches/SCPS-15029_1453B9E9.pnach b/patches/SCPS-15029_1453B9E9.pnach index 697186f0..a3255a48 100644 --- a/patches/SCPS-15029_1453B9E9.pnach +++ b/patches/SCPS-15029_1453B9E9.pnach @@ -2,7 +2,7 @@ gametitle=XI Go (J)(SCPS-15029) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SCPS-15032_79BCFA3A.pnach b/patches/SCPS-15032_79BCFA3A.pnach index 9201a7e4..25590670 100644 --- a/patches/SCPS-15032_79BCFA3A.pnach +++ b/patches/SCPS-15032_79BCFA3A.pnach @@ -2,7 +2,7 @@ gametitle=Formula One 2002 (J)(SCPS-15032) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-15033_712A8AD1.pnach b/patches/SCPS-15033_712A8AD1.pnach index 6adc4995..5ba893ab 100644 --- a/patches/SCPS-15033_712A8AD1.pnach +++ b/patches/SCPS-15033_712A8AD1.pnach @@ -2,7 +2,7 @@ gametitle=Dark Chronicle (J)(SCPS-15033) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) // Widescreen Hack (16:9) diff --git a/patches/SCPS-15033_9F7C1223.pnach b/patches/SCPS-15033_9F7C1223.pnach index 7ff5e691..46051beb 100644 --- a/patches/SCPS-15033_9F7C1223.pnach +++ b/patches/SCPS-15033_9F7C1223.pnach @@ -2,7 +2,7 @@ gametitle=Dark Chronicle (J) (SCPS_15033) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (pnach NTSC-J by Arapapa) +author=ElHecht (pnach NTSC-J by Arapapa) // 16:9 (803f023c d00002ae d0000426) patch=1,EE,00138e28,word,3c023f40 // 3c023f80 diff --git a/patches/SCPS-15034_A3EA7249.pnach b/patches/SCPS-15034_A3EA7249.pnach index 6594a24b..cb54f56d 100644 --- a/patches/SCPS-15034_A3EA7249.pnach +++ b/patches/SCPS-15034_A3EA7249.pnach @@ -2,7 +2,7 @@ gametitle=This is Football: Soccer Sekai Senki 2003 (J)(SCPS-15034) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-15037_56A35F77.pnach b/patches/SCPS-15037_56A35F77.pnach index b2e750ce..c71c5ef2 100644 --- a/patches/SCPS-15037_56A35F77.pnach +++ b/patches/SCPS-15037_56A35F77.pnach @@ -2,7 +2,7 @@ gametitle=Ratchet & Clank (J)(SCPS-15037) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by PsxFan107 (NTSC-J by Arapapa) +author=PsxFan107 (NTSC-J by Arapapa) // DWORD Code patching routine patch=1,EE,200C0000,extended,3C1B000C diff --git a/patches/SCPS-15044_DEAE8CF5.pnach b/patches/SCPS-15044_DEAE8CF5.pnach index 85c96f59..4f23703f 100644 --- a/patches/SCPS-15044_DEAE8CF5.pnach +++ b/patches/SCPS-15044_DEAE8CF5.pnach @@ -2,7 +2,7 @@ gametitle=SOCOM - U.S. NAVY SEALs(J)(SCPS-15044 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) // 16:9 //00000000 00000000 43ad1346 00000000 diff --git a/patches/SCPS-15046_91AA4B28.pnach b/patches/SCPS-15046_91AA4B28.pnach index 3797747d..68af4a93 100644 --- a/patches/SCPS-15046_91AA4B28.pnach +++ b/patches/SCPS-15046_91AA4B28.pnach @@ -2,7 +2,7 @@ gametitle=Hungry Ghosts (J)(SCPS-15046) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-15050_25433CBD.pnach b/patches/SCPS-15050_25433CBD.pnach index 92898d22..605b7b75 100644 --- a/patches/SCPS-15050_25433CBD.pnach +++ b/patches/SCPS-15050_25433CBD.pnach @@ -2,7 +2,7 @@ gametitle=Flipnic (J)(SCPS-15050) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SCPS-15057_B4976DAF.pnach b/patches/SCPS-15057_B4976DAF.pnach index e30a80e4..a840bb37 100644 --- a/patches/SCPS-15057_B4976DAF.pnach +++ b/patches/SCPS-15057_B4976DAF.pnach @@ -2,7 +2,7 @@ gametitle=Jak II - Jak x Daxter 2 (J)(SCPS-15057) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SCPS-15058_98448F6A.pnach b/patches/SCPS-15058_98448F6A.pnach index 0a497683..a608c584 100644 --- a/patches/SCPS-15058_98448F6A.pnach +++ b/patches/SCPS-15058_98448F6A.pnach @@ -2,7 +2,7 @@ gametitle=Arc the Lad - Generation (NTSC-J) (SCPS-15058) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-15059_BC53B2E5.pnach b/patches/SCPS-15059_BC53B2E5.pnach index e878baf7..6ce08cfe 100644 --- a/patches/SCPS-15059_BC53B2E5.pnach +++ b/patches/SCPS-15059_BC53B2E5.pnach @@ -2,7 +2,7 @@ gametitle=Minna no Golf 4 [NTSC-J] [SCPS-15059] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,e005010C,extended,0048DD94 // check 2048e0d4 matches value xxxx010c diff --git a/patches/SCPS-15063_458763C7.pnach b/patches/SCPS-15063_458763C7.pnach index f0427852..5a4c9ad7 100644 --- a/patches/SCPS-15063_458763C7.pnach +++ b/patches/SCPS-15063_458763C7.pnach @@ -2,7 +2,7 @@ gametitle=Popolocrois - The Law of the Moon (J) (SCPS-15063) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (0000803f efeeee3e) //patch=1,EE,20340C28,word,3f400000 // 3f800000 diff --git a/patches/SCPS-15065_73E5382E.pnach b/patches/SCPS-15065_73E5382E.pnach index 6ff3d8ca..13848774 100644 --- a/patches/SCPS-15065_73E5382E.pnach +++ b/patches/SCPS-15065_73E5382E.pnach @@ -2,7 +2,7 @@ gametitle=SOCOM II - U.S. Navy SEALs (J)(SCPS-15065) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SCPS-15069_E77C2D4F.pnach b/patches/SCPS-15069_E77C2D4F.pnach index 5c1ddd9d..b570fa77 100644 --- a/patches/SCPS-15069_E77C2D4F.pnach +++ b/patches/SCPS-15069_E77C2D4F.pnach @@ -2,7 +2,7 @@ gametitle=Uo-7-tsu no Mizu to Densetsu no Nushi (J)(SCPS-15069) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-15074_5DCE75ED.pnach b/patches/SCPS-15074_5DCE75ED.pnach index dd15cb34..9e686743 100644 --- a/patches/SCPS-15074_5DCE75ED.pnach +++ b/patches/SCPS-15074_5DCE75ED.pnach @@ -2,7 +2,7 @@ gametitle=Athens 2004 (J)(SCPS-15074) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-15080_E9012505.pnach b/patches/SCPS-15080_E9012505.pnach index 7490a65e..3ee8c545 100644 --- a/patches/SCPS-15080_E9012505.pnach +++ b/patches/SCPS-15080_E9012505.pnach @@ -2,7 +2,7 @@ gametitle=Wara Ryuomiyo - Pride of the Dragon Peace (J) (SCPS-15080) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (0000803f 0000803f 0000803f 00008047) patch=1,EE,2052EAB8,word,3f400000 // 3f800000 diff --git a/patches/SCPS-15081_9F0248CB.pnach b/patches/SCPS-15081_9F0248CB.pnach index ea5a4b4c..d3a0d406 100644 --- a/patches/SCPS-15081_9F0248CB.pnach +++ b/patches/SCPS-15081_9F0248CB.pnach @@ -2,7 +2,7 @@ gametitle=Doko Demo Issyo - Toro to Ippai (J)(SCPS-15081) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-15085_4BE2DE91.pnach b/patches/SCPS-15085_4BE2DE91.pnach index 65364b54..e450f37a 100644 --- a/patches/SCPS-15085_4BE2DE91.pnach +++ b/patches/SCPS-15085_4BE2DE91.pnach @@ -2,7 +2,7 @@ gametitle=Kenran Butou Sai - The Mars Daybreak (J)(SCPS-15085) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-15087_1E25F8A1.pnach b/patches/SCPS-15087_1E25F8A1.pnach index d9294ee6..742c588f 100644 --- a/patches/SCPS-15087_1E25F8A1.pnach +++ b/patches/SCPS-15087_1E25F8A1.pnach @@ -2,7 +2,7 @@ gametitle=Bleach - Erabareshi Tamashi (J)(SCPS-15087) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-15090_615EA2DB.pnach b/patches/SCPS-15090_615EA2DB.pnach index e6e70c38..558dc8fd 100644 --- a/patches/SCPS-15090_615EA2DB.pnach +++ b/patches/SCPS-15090_615EA2DB.pnach @@ -2,7 +2,7 @@ gametitle=Kaitou Sly Cooper 2 (SCPS-15090) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Fix by PsxFan107 (NTSC-J by Arapapa) +author=PsxFan107 (NTSC-J by Arapapa) // Widescreen by nemesis2000 patch=1,EE,0014dba8,word,3c013fdd //3c013fa6 diff --git a/patches/SCPS-15092_565B6170.pnach b/patches/SCPS-15092_565B6170.pnach index 4d1927f4..837f60e0 100644 --- a/patches/SCPS-15092_565B6170.pnach +++ b/patches/SCPS-15092_565B6170.pnach @@ -2,7 +2,7 @@ gametitle=Wild Arms 4 (J) (SCPS_15092) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //hor fov+ patch=1,EE,00159430,extended,3c064500 diff --git a/patches/SCPS-15095_B4776FC1.pnach b/patches/SCPS-15095_B4776FC1.pnach index 6edc0ad7..81310df2 100644 --- a/patches/SCPS-15095_B4776FC1.pnach +++ b/patches/SCPS-15095_B4776FC1.pnach @@ -2,7 +2,7 @@ gametitle=Genji [NTSC-J] (SCPS-15095) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by okuha8748p, Arapapa +author=okuha8748p, Arapapa patch=1,EE,002e4ba0,word,3C013FC5 diff --git a/patches/SCPS-15106_626552EB.pnach b/patches/SCPS-15106_626552EB.pnach index 2a55da60..42f4bce1 100644 --- a/patches/SCPS-15106_626552EB.pnach +++ b/patches/SCPS-15106_626552EB.pnach @@ -2,7 +2,7 @@ gametitle=Forbidden Siren 2 (J) (SCPS_15106) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack by sergx12 (pnach by Arapapa) +author=sergx12 (pnach by Arapapa) //gameplay by sergx12 (c80216e6 803f033c cc0217e6) patch=1,EE,0018a904,word,3c033f40 diff --git a/patches/SCPS-15111_488B2543.pnach b/patches/SCPS-15111_488B2543.pnach index 8ca520d0..29d35873 100644 --- a/patches/SCPS-15111_488B2543.pnach +++ b/patches/SCPS-15111_488B2543.pnach @@ -2,7 +2,7 @@ gametitle=Brave Story - Wataru no Bouken [NTSC-J] (SCPS-15111) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //gameplay 16:9 patch=1,EE,00144DD8,word,3c013f40 //00000000 diff --git a/patches/SCPS-15113_A35F68F7.pnach b/patches/SCPS-15113_A35F68F7.pnach index 043333c5..c374147e 100644 --- a/patches/SCPS-15113_A35F68F7.pnach +++ b/patches/SCPS-15113_A35F68F7.pnach @@ -2,7 +2,7 @@ gametitle=Minna no Tennis (J)(SCPS-15113) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) // 16:9 //440584e4 07210046 @@ -23,7 +23,7 @@ patch=1,EE,00137984,word,3c034456 // 3c034420 2D menu/hud fix [No-Interlacing] gsinterlacemode=1 -comment=no interlacing by someother1ne +author=someother1ne patch=1,EE,00125464,word,64420000 patch=1,EE,001256cc,word,64420000 diff --git a/patches/SCPS-15116_6DF62AEA.pnach b/patches/SCPS-15116_6DF62AEA.pnach index 470f58a8..6e17cfef 100644 --- a/patches/SCPS-15116_6DF62AEA.pnach +++ b/patches/SCPS-15116_6DF62AEA.pnach @@ -2,7 +2,7 @@ gametitle=Bleach - Blade Battlers [NTSC-J] (SCPS-15116) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //16:9 patch=1,EE,0012BF00,word,3c013f40 // 00000000 diff --git a/patches/SCPS-15118_2294D322.pnach b/patches/SCPS-15118_2294D322.pnach index cdf1864f..7acdfcbb 100644 --- a/patches/SCPS-15118_2294D322.pnach +++ b/patches/SCPS-15118_2294D322.pnach @@ -2,7 +2,7 @@ gametitle=Wild Arms 5 (J) (SCPS_151.18) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //hor fov+ patch=1,EE,00153324,word,3C024500 diff --git a/patches/SCPS-15119_6EB71AB0.pnach b/patches/SCPS-15119_6EB71AB0.pnach index d1ab5e76..0d138927 100644 --- a/patches/SCPS-15119_6EB71AB0.pnach +++ b/patches/SCPS-15119_6EB71AB0.pnach @@ -2,7 +2,7 @@ gametitle=Bleach - Blade Battlers 2nd [NTSC-J] (SCPS-15119) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //16:9 patch=1,EE,0012C610,word,3c013f40 // 00000000 diff --git a/patches/SCPS-17002_F6430266.pnach b/patches/SCPS-17002_F6430266.pnach index 003bdabc..d468bee3 100644 --- a/patches/SCPS-17002_F6430266.pnach +++ b/patches/SCPS-17002_F6430266.pnach @@ -2,7 +2,7 @@ gametitle=Wild Arms Alter Code F (J) (SCPS_170.02) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) patch=1,EE,00118ba0,word,3c024455 patch=1,EE,00118e4c,word,3c023f40 diff --git a/patches/SCPS-17013_CDEE4B19.pnach b/patches/SCPS-17013_CDEE4B19.pnach index 1aa8f7e6..fb9f2840 100644 --- a/patches/SCPS-17013_CDEE4B19.pnach +++ b/patches/SCPS-17013_CDEE4B19.pnach @@ -2,7 +2,7 @@ gametitle=Rogue Galaxy - Director's Cut (J) (SCPS_170.13) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //gameplay patch=1,EE,001c5aa0,word,3c023f10 //403F023C(*) 00608244 FC08050C 2D200002 diff --git a/patches/SCPS-19103_B1228D1E.pnach b/patches/SCPS-19103_B1228D1E.pnach new file mode 100644 index 00000000..40784787 --- /dev/null +++ b/patches/SCPS-19103_B1228D1E.pnach @@ -0,0 +1,12 @@ +gametitle=ICO [PlayStation 2 The Best] * NTSC-J * SCPS-19103 * B1228D1E + +[No-Interlacing] +gsinterlacemode=1 +author=pcsx2user156 +description=Attempts to disable interlaced offset rendering. +patch=1,EE,0028D480,word,00001040 +patch=1,EE,0028D4A8,word,00001040 +patch=1,EE,0028D478,word,00000001 +patch=1,EE,0028D4A0,word,00000001 +patch=1,EE,0028D48C,word,001DF9FF +patch=1,EE,0028D4B4,word,001DF9FF diff --git a/patches/SCPS-56001_2DF2C1EA.pnach b/patches/SCPS-56001_2DF2C1EA.pnach index 4ca89ea4..9e98f6c3 100644 --- a/patches/SCPS-56001_2DF2C1EA.pnach +++ b/patches/SCPS-56001_2DF2C1EA.pnach @@ -1,24 +1,77 @@ -gametitle=ICO (NTSC-K) (SCPS-56001) +gametitle=ICO * NTSC-K * SCPS-56001 * 2DF2C1EA [Widescreen 16:9] gsaspectratio=16:9 -comment=16:9 widescreen hack - -//16:9 widescreen hack by nemesis2000, porting by 99skull +author=nemesis2000, ported by 99skull +// 16:9 widescreen patch=1,EE,00114C6C,word,3C013F40 patch=1,EE,00114C70,word,4481C000 patch=1,EE,00114C80,word,46181082 -//render fix + +// 16:9 Render fix patch=1,EE,00114624,word,240302AB patch=1,EE,00549578,word,44FA0000 -//No interlacing by asasega -//patch=1,EE,0028D478,extended,00000001 -//patch=1,EE,0028D4A0,extended,00000001 -//patch=1,EE,0028D480,extended,00000040 -//patch=1,EE,0028D4A8,extended,00000040 +[Widescreen 16:10] +gsaspectratio=Stretch +author=nemesis2000, 99skull & pgert +patch=1,EE,00114C6C,word,3C013F55 +patch=1,EE,00114C70,word,4481C000 +patch=1,EE,00114C80,word,46181082 +patch=1,EE,00114624,word,240302AB +patch=1,EE,00549578,word,44E10000 + +[Widescreen 15:10] +gsaspectratio=Stretch +author=nemesis2000, 99skull & pgert +patch=1,EE,00114C6C,word,3C013F64 +patch=1,EE,00114C70,word,4481C000 +patch=1,EE,00114C80,word,46181082 +patch=1,EE,00114624,word,240302AB +patch=1,EE,00549578,word,44D2F000 + +[Widescreen 20:9] +gsaspectratio=Stretch +author=nemesis2000, 99skull, kripkrop, Devina & pgert +comment=Imperfections might show up. +patch=1,EE,00114C6C,word,3C013F1A +patch=1,EE,00114C70,word,4481C000 +patch=1,EE,00114C80,word,46181082 +patch=1,EE,00114624,word,24030AAA +patch=1,EE,00549578,word,451C4000 + +[Widescreen 21:9] +gsaspectratio=Stretch +author=nemesis2000, 99skull, kripkrop, Devina & pgert +comment=Imperfections might show up. +patch=1,EE,00114C6C,word,3C013F12 +patch=1,EE,00114C70,word,4481C000 +patch=1,EE,00114C80,word,46181082 +patch=1,EE,00114624,word,24030AAA +patch=1,EE,00549578,word,45241000 [Remove Blackbars] +author=nemesis2000 & 99skull description=Removes black bars in cutscenes -patch=1,EE,00113380,word,3C010000 \ No newline at end of file +patch=1,EE,00113380,word,3C010000 + +/////////////////// + +[60 fps] +author=asasega +comment=Might need EE overclocking to be stable. +// 00000002 00000001 00000000 00000000 00000000 00000000 00000103\ +// 00000103 00000000 00000000 00000007 00000066 +patch=1,EE,2028D444,extended,00000001 + +[No-Interlacing] +gsinterlacemode=1 +author=asasega +description=Attempts to disable interlaced offset rendering. +patch=1,EE,0028D478,extended,00000001 +patch=1,EE,0028D4A0,extended,00000001 +patch=1,EE,0028D480,extended,00000040 +patch=1,EE,0028D4A8,extended,00000040 + +/////////////////// diff --git a/patches/SCPS-56004_2DF5D168.pnach b/patches/SCPS-56004_2DF5D168.pnach index f5742f72..6904393c 100644 --- a/patches/SCPS-56004_2DF5D168.pnach +++ b/patches/SCPS-56004_2DF5D168.pnach @@ -2,7 +2,7 @@ gametitle=Otostaz (K)(SCPS-56004) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-56007_98C1CE89.pnach b/patches/SCPS-56007_98C1CE89.pnach index c5989529..90cec408 100644 --- a/patches/SCPS-56007_98C1CE89.pnach +++ b/patches/SCPS-56007_98C1CE89.pnach @@ -2,7 +2,7 @@ gametitle=Hot Shots Golf 3 (K)(SCPS-56007) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-56008_BCF04BF3.pnach b/patches/SCPS-56008_BCF04BF3.pnach index 306a73cb..6bf27bf8 100644 --- a/patches/SCPS-56008_BCF04BF3.pnach +++ b/patches/SCPS-56008_BCF04BF3.pnach @@ -1,44 +1,49 @@ -gametitle=Fatal Frame (Project Zero) (K)(SCPS-56008) +gametitle=Fatal Frame * NTSC-K * SCPS-56008 * BCF04BF3 +// Project Zero [Widescreen 16:9] gsaspectratio=16:9 -comment=16:9 widescreen hack by nemesis2000, pgert and devina40 (NTSC-K by Arapapa) +author=nemesis2000, pgert and Devina - ported by arapapa -//16:9 widescreen by nemesis2000 -patch=1,EE,00189E54,word,3C013F40 //3C013F80 +// 16:9 widescreen by nemesis2000 +patch=1,EE,00189E54,word,3C013F40 // 3C013F80 -//cutscenes by pgert -patch=1,EE,001856D4,word,3C013F40 //3C013F80 +// cutscenes by pgert +patch=1,EE,001856D4,word,3C013F40 // 3C013F80 -//Cut-scene render fix -//0045013c 00208144 280040e6 -patch=1,EE,001856c8,word,3c0145C0 //3c014500 +// Cut-scene Render fix +// 0045013c 00208144 280040e6 +patch=1,EE,001856c8,word,3c0145C0 // 3c014500 -//FMV's fix by nemesis2000 +// FMV fix by nemesis2000 patch=1,EE,001822B8,word,24027100 patch=1,EE,001822C8,word,24027100 patch=1,EE,001822D0,word,24091E00 -//Lens Flare's fix -//Modified based on PAL (0,875 instead of 0,75) - better. -patch=1,EE,00137154,word,3C013F12 //3c013f00 -patch=1,EE,00135b10,word,3C01428C //3c0142a0 -patch=1,EE,00135bf4,word,3C01410C //3c014120 -patch=1,EE,00135bbc,word,3C014128 //3c014140 -patch=1,EE,00135b78,word,3C0141A8 //3c0141c0 +// Lens Flare's fix - Modified based on PAL (0,875 instead of 0,75) - better. +patch=1,EE,00137154,word,3C013F12 // 3c013f00 +patch=1,EE,00135b10,word,3C01428C // 3c0142a0 +patch=1,EE,00135bf4,word,3C01410C // 3c014120 +patch=1,EE,00135bbc,word,3C014128 // 3c014140 +patch=1,EE,00135b78,word,3C0141A8 // 3c0141c0 -//Remove effects (Memory Hack) -//6666f643 0000803f 0000803f -//patch=1,EE,2035210C,extended,00000000 //blurry bloom -//00002044 0000e043 0000803f 0000803f 00000000 00000000 (10) -//patch=1,EE,2035258C,extended,00000000 //dark filter -//00002044 0000e043 0000803f 0000803f 00000000 00000000 (8) -//patch=1,EE,2035241C,extended,00000000 //post process and noise +// HUD Y-FoV +//patch=1,EE,0015dd74,word,3c013ec0 // 3c013f00 -//No interlacing by asasega -//patch=1,EE,20234e64,extended,00000000 +// ========== -//HUD Y-Fov -//patch=1,EE,0015dd74,word,3c013ec0 //3c013f00 +[Disable Blurry Bloom effect] +// 6666f643 0000803f 0000803f +patch=1,EE,2035210C,extended,00000000 +[Disable Dark Filter effect] +// 00002044 0000e043 0000803f 0000803f 00000000 00000000 (10) +patch=1,EE,2035258C,extended,00000000 +[Disable Post-Process and Noise effect] +// 00002044 0000e043 0000803f 0000803f 00000000 00000000 (8) +patch=1,EE,2035241C,extended,00000000 + +[No-Interlacing] +author=asasega +patch=1,EE,20234e64,extended,00000000 diff --git a/patches/SCPS-56009_2B0D3251.pnach b/patches/SCPS-56009_2B0D3251.pnach index 5267d441..bdaa30bb 100644 --- a/patches/SCPS-56009_2B0D3251.pnach +++ b/patches/SCPS-56009_2B0D3251.pnach @@ -2,7 +2,7 @@ gametitle=Smash Court Tennis - Pro Tournament (K)(SCPS-56009) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-56011_C6AAF4D4.pnach b/patches/SCPS-56011_C6AAF4D4.pnach index 76267f3d..24e19dda 100644 --- a/patches/SCPS-56011_C6AAF4D4.pnach +++ b/patches/SCPS-56011_C6AAF4D4.pnach @@ -2,7 +2,7 @@ gametitle=U - Underwater Unit (K)(SCPS-56011) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-56013_C0E0549E.pnach b/patches/SCPS-56013_C0E0549E.pnach index 921103d5..9069fcc5 100644 --- a/patches/SCPS-56013_C0E0549E.pnach +++ b/patches/SCPS-56013_C0E0549E.pnach @@ -2,7 +2,7 @@ gametitle=This is Football 2003 (K)(SCPS-56013) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCPS-56014_13035B9E.pnach b/patches/SCPS-56014_13035B9E.pnach index 1bd97768..5eaba349 100644 --- a/patches/SCPS-56014_13035B9E.pnach +++ b/patches/SCPS-56014_13035B9E.pnach @@ -2,7 +2,7 @@ gametitle=Gungrave (K)(SCPS-56014) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa and ElHecht +author=Arapapa and ElHecht // 16:9 (search 00000000 00000000 43ad1346 00000000) patch=1,EE,001be9dc,word,3c013f40 // 00000000 hor fov diff --git a/patches/SCUS-97102_85AE91B3.pnach b/patches/SCUS-97102_85AE91B3.pnach index 7fe04acb..57c8eb41 100644 --- a/patches/SCUS-97102_85AE91B3.pnach +++ b/patches/SCUS-97102_85AE91B3.pnach @@ -30,7 +30,7 @@ patch=1,EE,102112F0,extended,0000005A patch=1,EE,20211014,extended,00000000 [Metric units] -description=Changes MPH to KMH, ft.lb to NM +description=Changes MPH to KMH, ft.lb to kgf.m author=Silent // Speed and distance units @@ -42,4 +42,4 @@ patch=1,EE,202F59D8,extended,0 // 0 - kgf.m // 1 - ft.lb // 2 - NM -patch=1,EE,202F59E0,extended,2 +patch=1,EE,202F59E0,extended,0 diff --git a/patches/SCUS-97105_40372109.pnach b/patches/SCUS-97105_40372109.pnach index 48edf30f..08eb872a 100644 --- a/patches/SCUS-97105_40372109.pnach +++ b/patches/SCUS-97105_40372109.pnach @@ -2,7 +2,7 @@ gametitle=Fantavision (U)(SCUS-97105) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCUS-97109_88889BAA.pnach b/patches/SCUS-97109_88889BAA.pnach index 00f2715c..a1679d4d 100644 --- a/patches/SCUS-97109_88889BAA.pnach +++ b/patches/SCUS-97109_88889BAA.pnach @@ -2,7 +2,7 @@ gametitle=NCAA Final Four 2001 (U)(SCUS-97109) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCUS-97111_A5C05C78.pnach b/patches/SCUS-97111_A5C05C78.pnach index df2551e0..f62e4e37 100644 --- a/patches/SCUS-97111_A5C05C78.pnach +++ b/patches/SCUS-97111_A5C05C78.pnach @@ -2,7 +2,7 @@ gametitle=Dark Cloud (SCUS-97111) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0012df78,word,3c023f40 diff --git a/patches/SCUS-97112_087A3C85.pnach b/patches/SCUS-97112_087A3C85.pnach new file mode 100644 index 00000000..018ce5f1 --- /dev/null +++ b/patches/SCUS-97112_087A3C85.pnach @@ -0,0 +1,7 @@ +gametitle=Extermination (NTSC-U) SCUS-97112 087A3C85 (Undub) + +[Widescreen 16:9] +gsaspectratio=16:9 +comment=Widescreen Hack +patch=1,EE,001d2978,extended,3c023f19 +patch=1,EE,001d297c,extended,3442999a \ No newline at end of file diff --git a/patches/SCUS-97112_0AE679AF.pnach b/patches/SCUS-97112_0AE679AF.pnach index d0dae4db..739873c6 100644 --- a/patches/SCUS-97112_0AE679AF.pnach +++ b/patches/SCUS-97112_0AE679AF.pnach @@ -4,4 +4,13 @@ gametitle=Extermination SCUS 971.12 gsaspectratio=16:9 comment=Widescreen Hack patch=1,EE,001d2978,extended,3c023f19 -patch=1,EE,001d297c,extended,3442999a \ No newline at end of file +patch=1,EE,001d297c,extended,3442999a + +[No-Interlacing] +author=NineKain +description=Attempts to disable interlaced offset rendering. +gsinterlacemode=1 +//Remove Interlacing +patch=1,EE,0010187C,word,00000000 +patch=1,EE,00101614,word,00000000 + diff --git a/patches/SCUS-97113_6F8545DB.pnach b/patches/SCUS-97113_6F8545DB.pnach index 501fa441..bc612ad1 100644 --- a/patches/SCUS-97113_6F8545DB.pnach +++ b/patches/SCUS-97113_6F8545DB.pnach @@ -1,28 +1,97 @@ -gametitle=ICO (SCUS-97113) 6F8545DB +gametitle=ICO * NTSC-U * SCUS-97113 * 6F8545DB [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -description=Widescreen hack -//widescreen + +// 16:9 widescreen patch=1,EE,001146c8,word,3c013f40 patch=1,EE,001146cc,word,44813800 patch=1,EE,001146d8,word,46071082 patch=1,EE,001146dc,word,c78780dc -//render fix -patch=1,EE,001141a4,word,240302ab -patch=1,EE,00554790,word,44800000 //optional +// 16:9 Render fix +patch=1,EE,001141a4,word,240302ab +patch=1,EE,00554790,word,44fa0000 + +[Widescreen 16:10] +gsaspectratio=Stretch +author=nemesis2000 & pgert +patch=1,EE,001146c8,word,3c013f55 +patch=1,EE,001146cc,word,44813800 +patch=1,EE,001146d8,word,46071082 +patch=1,EE,001146dc,word,c78780dc +patch=1,EE,001141a4,word,240302ab +patch=1,EE,00554790,word,44e10000 + +[Widescreen 15:10] +gsaspectratio=Stretch +author=nemesis2000 & pgert +patch=1,EE,001146c8,word,3c013f64 +patch=1,EE,001146cc,word,44813800 +patch=1,EE,001146d8,word,46071082 +patch=1,EE,001146dc,word,c78780dc +patch=1,EE,001141a4,word,240302ab +patch=1,EE,00554790,word,44d2f000 + +[Widescreen 20:9] +gsaspectratio=Stretch +author=nemesis2000, kripkrop, Devina & pgert +comment=Imperfections might show up. +patch=1,EE,001146c8,word,3c013f1a +patch=1,EE,001146cc,word,44813800 +patch=1,EE,001146d8,word,46071082 +patch=1,EE,001146dc,word,c78780dc +patch=1,EE,001141a4,word,24030aaa +patch=1,EE,00554790,word,451c4000 + +[Widescreen 21:9] +gsaspectratio=Stretch +author=nemesis2000, kripkrop, Devina & pgert +comment=Imperfections might show up. +patch=1,EE,001146c8,word,3c013f12 +patch=1,EE,001146cc,word,44813800 +patch=1,EE,001146d8,word,46071082 +patch=1,EE,001146dc,word,c78780dc +patch=1,EE,001141a4,word,24030aaa +patch=1,EE,00554790,word,45241000 [Remove Blackbars] author=nemesis2000 description=Removes black bars in cutscenes patch=1,EE,00113030,word,3c010000 +/////////////////// + +[Slow Motion (60 fps)] +author=synce +patch=1,EE,20274EC4,extended,00000001 + +[Wireframe] +author=synce +patch=1,EE,20632CC8,extended,00000001 + +/////////////////// + +[60 fps] +author=synce & Agrippa +// 60 fps hack Agrippa based on the NTSC-U hack by synce +// - restores the original value in the cutscenes +comment=Might need EE overclocking to be stable. +patch=1,EE,E0010000,extended,006325B4 +patch=1,EE,00274EC4,extended,00000001 +patch=1,EE,E0010001,extended,006325B4 +patch=1,EE,00274EC4,extended,00000002 + +/////////////////// + [No-Interlacing] -description=Attempts to disable interlaced offset rendering. gsinterlacemode=1 +author=asasega +description=Attempts to disable interlaced offset rendering. patch=1,EE,00274EF8,extended,00000001 patch=1,EE,00274F20,extended,00000001 patch=1,EE,00274F00,extended,00000040 -patch=1,EE,00274F28,extended,00000040 \ No newline at end of file +patch=1,EE,00274F28,extended,00000040 + +/////////////////// diff --git a/patches/SCUS-97123_E157ACB8.pnach b/patches/SCUS-97123_E157ACB8.pnach index 327d14a2..2140d09b 100644 --- a/patches/SCUS-97123_E157ACB8.pnach +++ b/patches/SCUS-97123_E157ACB8.pnach @@ -2,7 +2,7 @@ gametitle=Monsters, Inc. (U)(SCUS-97123) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-U by Arapapa) +author=ElHecht (NTSC-U by Arapapa) // 16:9 patch=1,EE,001c7528,word,080abe2b // c6010068 jump to code-inject 002af8ac diff --git a/patches/SCUS-97124_1B3976AB.pnach b/patches/SCUS-97124_1B3976AB.pnach index 3b33ec5b..c5b7226f 100644 --- a/patches/SCUS-97124_1B3976AB.pnach +++ b/patches/SCUS-97124_1B3976AB.pnach @@ -2,7 +2,7 @@ gametitle=Jak and Daxter - The Precursor Legacy (NTSC-U) [SCUS-97124] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,202AF750,extended,3f1f3b64 // 3f000000 zoom diff --git a/patches/SCUS-97124_472E7699.pnach b/patches/SCUS-97124_472E7699.pnach index 7fde946a..82def0fa 100644 --- a/patches/SCUS-97124_472E7699.pnach +++ b/patches/SCUS-97124_472E7699.pnach @@ -2,7 +2,7 @@ gametitle=Jak and Daxter - The Precursor Legacy (NTSC-U) (Greatest Hits) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,202AF7B0,extended,3f1f3b64 // 3f000000 zoom diff --git a/patches/SCUS-97128_4167D813.pnach b/patches/SCUS-97128_4167D813.pnach index 9b363b24..f88ff014 100644 --- a/patches/SCUS-97128_4167D813.pnach +++ b/patches/SCUS-97128_4167D813.pnach @@ -170,8 +170,8 @@ patch=1,EE,00132e68,word,3C013F12 patch=1,EE,00132fd0,word,3C013F64 [60 FPS] -author=asasega and PeterDelta +author=asasega & PeterDelta comment=Might need EE overclocking to be stable (130%). -patch=1,EE,001D78F0,word,28420001 -patch=1,EE,E0010000,extended,004DC874 -patch=1,EE,201D78F0,extended,28420004 +patch=1,EE,001D78F0,extended,28420002 +patch=1,EE,E0010001,extended,004DC8A0 +patch=1,EE,001D78F0,extended,28420004 \ No newline at end of file diff --git a/patches/SCUS-97130_9794BFEF.pnach b/patches/SCUS-97130_9794BFEF.pnach index 3773e5af..17bbb3c8 100644 --- a/patches/SCUS-97130_9794BFEF.pnach +++ b/patches/SCUS-97130_9794BFEF.pnach @@ -2,7 +2,7 @@ gametitle=Hot Shots Golf 3 (U)(SCUS-97130) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCUS-97133_E21404E2.pnach b/patches/SCUS-97133_E21404E2.pnach new file mode 100644 index 00000000..402b1b00 --- /dev/null +++ b/patches/SCUS-97133_E21404E2.pnach @@ -0,0 +1,6 @@ +gametitle=Getaway, The [NTSC-U] SCUS-97133 E21404E2 + +[60 FPS] +author=asasega +comment=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,201F10E8,word,1000000B diff --git a/patches/SCUS-97134_6F4056DB.pnach b/patches/SCUS-97134_6F4056DB.pnach index 8f2d983a..0bd0fb70 100644 --- a/patches/SCUS-97134_6F4056DB.pnach +++ b/patches/SCUS-97134_6F4056DB.pnach @@ -2,7 +2,7 @@ gametitle=SOCOM - U.S. Navy SEALs (U)(SCUS-97134) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-U by Arapapa) +author=ElHecht (NTSC-U by Arapapa) //patch=1,EE,001E9734,word,3C02BFAA //patch=1,EE,001E9748,word,3C02BFAA diff --git a/patches/SCUS-97136_3397DEFF.pnach b/patches/SCUS-97136_3397DEFF.pnach index 047d7b86..37b83db1 100644 --- a/patches/SCUS-97136_3397DEFF.pnach +++ b/patches/SCUS-97136_3397DEFF.pnach @@ -2,7 +2,7 @@ gametitle=NCAA Final Four 2002 (U)(SCUS-97136) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCUS-97145_F78AE86C.pnach b/patches/SCUS-97145_F78AE86C.pnach index 56bdcc74..b481bb7a 100644 --- a/patches/SCUS-97145_F78AE86C.pnach +++ b/patches/SCUS-97145_F78AE86C.pnach @@ -2,7 +2,7 @@ gametitle=Disney's Stitch - Experiment 626 (U)(SCUS-97145) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCUS-97146_B489E1CD.pnach b/patches/SCUS-97146_B489E1CD.pnach index 878d5a36..3c05b38e 100644 --- a/patches/SCUS-97146_B489E1CD.pnach +++ b/patches/SCUS-97146_B489E1CD.pnach @@ -2,7 +2,7 @@ gametitle=Disney's Treasure Planet (U)(SCUS-97146) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCUS-97150_272F1C14.pnach b/patches/SCUS-97150_272F1C14.pnach index 394abeb1..ad1b6955 100644 --- a/patches/SCUS-97150_272F1C14.pnach +++ b/patches/SCUS-97150_272F1C14.pnach @@ -2,7 +2,7 @@ gametitle=Formula One 2001 (U)(SCUS-97150) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCUS-97167_2D368982.pnach b/patches/SCUS-97167_2D368982.pnach index 000449ac..3f05e57a 100644 --- a/patches/SCUS-97167_2D368982.pnach +++ b/patches/SCUS-97167_2D368982.pnach @@ -2,7 +2,7 @@ gametitle=PaRappa the Rapper 2 (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00166114,word,3c013f40 diff --git a/patches/SCUS-97172_9E95A8C0.pnach b/patches/SCUS-97172_9E95A8C0.pnach index b8c58e9a..a34c2490 100644 --- a/patches/SCUS-97172_9E95A8C0.pnach +++ b/patches/SCUS-97172_9E95A8C0.pnach @@ -2,7 +2,7 @@ gametitle=World Tour Soccer 2002 (U)(SCUS-97172) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCUS-97173_237251F3.pnach b/patches/SCUS-97173_237251F3.pnach index af4fa74f..69f4df68 100644 --- a/patches/SCUS-97173_237251F3.pnach +++ b/patches/SCUS-97173_237251F3.pnach @@ -2,7 +2,7 @@ gametitle=Jet X2O (U)(SCUS 97173) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCUS-97177_5AE01D98.pnach b/patches/SCUS-97177_5AE01D98.pnach index dd5a0f06..8147c107 100644 --- a/patches/SCUS-97177_5AE01D98.pnach +++ b/patches/SCUS-97177_5AE01D98.pnach @@ -56,7 +56,7 @@ patch=1,EE,2027ECC0,extended,434FC000 //438A8000 - 2-4P P1-4 Paused Master X FOV [No-Interlacing] gsinterlacemode=1 -comment=no interlacing by someother1ne +author=someother1ne patch=1,EE,00243D34,word,30420000 diff --git a/patches/SCUS-97198_C77AF2CA.pnach b/patches/SCUS-97198_C77AF2CA.pnach index 5f7dd6d0..1266e745 100644 --- a/patches/SCUS-97198_C77AF2CA.pnach +++ b/patches/SCUS-97198_C77AF2CA.pnach @@ -3,7 +3,7 @@ gametitle=Sly Cooper (NTSC) (SCUS-97198) [Widescreen 16:9] description=Renders the game in 16:9 aspect ratio, instead of 4:3. gsaspectratio=16:9 -comment = Widescreen hack by nemesis2000; Fixed by PsxFan107 +author=nemesis2000; Fixed by PsxFan107 //Widescreen by nemesis2000 patch=1,EE,201436B0,word,3C013FDD diff --git a/patches/SCUS-97199_CE4933D0.pnach b/patches/SCUS-97199_CE4933D0.pnach index c15b746f..a79207cb 100644 --- a/patches/SCUS-97199_CE4933D0.pnach +++ b/patches/SCUS-97199_CE4933D0.pnach @@ -2,7 +2,7 @@ //[Widescreen 16:9] //gsaspectratio=16:9 -//comment=Widescreen hack by PsxFan107. Currently it appears to break rendering of textures in some areas. +//author=PsxFan107. Currently it appears to break rendering of textures in some areas. // DWORD Code patching routine //patch=1,EE,200C0000,extended,3C1B000C diff --git a/patches/SCUS-97203_06441001.pnach b/patches/SCUS-97203_06441001.pnach index 73a91744..4b542b8e 100644 --- a/patches/SCUS-97203_06441001.pnach +++ b/patches/SCUS-97203_06441001.pnach @@ -2,7 +2,7 @@ gametitle=Wild Arms 3 (SCUS-97203) [Widescreen 16:9] gsaspectratio=16:9 -comment=widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //widescreen patch=1,EE,00115bd0,word,3c023f40 diff --git a/patches/SCUS-97204_B505A479.pnach b/patches/SCUS-97204_B505A479.pnach index d7f786a1..44b3820c 100644 --- a/patches/SCUS-97204_B505A479.pnach +++ b/patches/SCUS-97204_B505A479.pnach @@ -2,7 +2,7 @@ gametitle=NCAA Final Four 2003 (U)(SCUS-97204) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCUS-97211_2D632F06.pnach b/patches/SCUS-97211_2D632F06.pnach index 1bcab4dd..035f17fa 100644 --- a/patches/SCUS-97211_2D632F06.pnach +++ b/patches/SCUS-97211_2D632F06.pnach @@ -2,7 +2,7 @@ gametitle=ATV Offroad Fury 2 [NTSC-U] (SCUS_972.11) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0011B0C0,word,3C023CAA //3C023C8E Zoom diff --git a/patches/SCUS-97233_D41EE761.pnach b/patches/SCUS-97233_D41EE761.pnach index aad0f24a..634ea6a8 100644 --- a/patches/SCUS-97233_D41EE761.pnach +++ b/patches/SCUS-97233_D41EE761.pnach @@ -2,7 +2,7 @@ gametitle=World Tour Soccer 2003 (U)(SCUS-97233) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCUS-97264_D5605611.pnach b/patches/SCUS-97264_D5605611.pnach index f23eb136..610254eb 100644 --- a/patches/SCUS-97264_D5605611.pnach +++ b/patches/SCUS-97264_D5605611.pnach @@ -2,7 +2,7 @@ gametitle=Syphon Filter: The Omega Strain (SCUS-97264) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,003754e0,word,3c043f40 diff --git a/patches/SCUS-97265_9184AAF1.pnach b/patches/SCUS-97265_9184AAF1.pnach index bd5ffcb3..9e2e5f4c 100644 --- a/patches/SCUS-97265_9184AAF1.pnach +++ b/patches/SCUS-97265_9184AAF1.pnach @@ -2,7 +2,7 @@ gametitle=Jak II - Renegade (U)(SCUS-97265) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-U by Arapapa) +author=ElHecht (NTSC-U by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SCUS-97268_38996035.pnach b/patches/SCUS-97268_38996035.pnach index ede6e7ee..6bdb9bd0 100644 --- a/patches/SCUS-97268_38996035.pnach +++ b/patches/SCUS-97268_38996035.pnach @@ -2,7 +2,7 @@ gametitle=Ratchet & Clank - Going Commando [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by PsxFan107 +author=PsxFan107 // DWORD Code patching routine patch=1,EE,200C0000,extended,3C1B000C diff --git a/patches/SCUS-97268_B3A71D10.pnach b/patches/SCUS-97268_B3A71D10.pnach index 6ac33c5c..fbe719e4 100644 --- a/patches/SCUS-97268_B3A71D10.pnach +++ b/patches/SCUS-97268_B3A71D10.pnach @@ -2,7 +2,7 @@ gametitle=Ratchet & Clank - Going Commando (Greatest Hits) (2.00) [SCUS-97268] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by PsxFan107 +author=PsxFan107 // DWORD Code patching routine patch=1,EE,200C0000,extended,3C1B000C diff --git a/patches/SCUS-97275_0F6FC6CF.pnach b/patches/SCUS-97275_0F6FC6CF.pnach index 37ae365b..a6f778ad 100644 --- a/patches/SCUS-97275_0F6FC6CF.pnach +++ b/patches/SCUS-97275_0F6FC6CF.pnach @@ -2,7 +2,7 @@ gametitle=SOCOM II - U.S. Navy SEALs (U)(SCUS-97275) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-U by Arapapa) +author=ElHecht (NTSC-U by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SCUS-97316_07652DD9.pnach b/patches/SCUS-97316_07652DD9.pnach index c3454b43..227601a3 100644 --- a/patches/SCUS-97316_07652DD9.pnach +++ b/patches/SCUS-97316_07652DD9.pnach @@ -2,7 +2,7 @@ gametitle=Sly 2 - Band of Thieves (SCUS-97316) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Fix by PsxFan107 +author=PsxFan107 // Widescreen by nemesis2000 patch=1,EE,2014D750,word,3C013FDD diff --git a/patches/SCUS-97326_DD0513A4.pnach b/patches/SCUS-97326_DD0513A4.pnach index c333e58e..b9dc312a 100644 --- a/patches/SCUS-97326_DD0513A4.pnach +++ b/patches/SCUS-97326_DD0513A4.pnach @@ -2,7 +2,7 @@ gametitle=MLB 2005 (U)(SCUS-97326) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SCUS-97330_644CFD03.pnach b/patches/SCUS-97330_644CFD03.pnach index 99be1876..88e95f3b 100644 --- a/patches/SCUS-97330_644CFD03.pnach +++ b/patches/SCUS-97330_644CFD03.pnach @@ -1,43 +1,41 @@ -gametitle=Jak 3 (U)(SCUS-97330) +//gametitle=Jak 3 (U)(SCUS-97330) -[Widescreen 16:9] -gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-U by Arapapa) +//[Widescreen 16:9] +//gsaspectratio=16:9 +//author=ElHecht (NTSC-U by Arapapa). Disabled due to causing black texture flickering in desert areas. // 16:9 //003f033c 00008344 00088744 -patch=1,EE,2030aec8,extended,3c033f1f // 3c033f00 zoom +//patch=1,EE,2030aec8,extended,3c033f1f // 3c033f00 zoom //71601400 014c1400 054c1400 -patch=1,EE,207D5F68,extended,0014867D // 00146071 force native 16:9 mode +//patch=1,EE,207D5F68,extended,0014867D // 00146071 force native 16:9 mode //menu fix -patch=1,EE,20C15680,extended,43A90000 // 436E33F5 -patch=1,EE,20C178C0,extended,43420000 // 43082F0F - - -patch=1,EE,20AC3B60,extended,42860000 // 429E0000 -patch=1,EE,20AC3BA0,extended,42860000 // 429E0000 -patch=1,EE,20AC3BE0,extended,42860000 // 429E0000 -patch=1,EE,20AC3C20,extended,42860000 // 429E0000 -patch=1,EE,20AC3C60,extended,42860000 // 429E0000 -patch=1,EE,20AC3CA0,extended,42860000 // 429E0000 -patch=1,EE,20AC3CE0,extended,42860000 // 429E0000 -patch=1,EE,20AC3D20,extended,42860000 // 429E0000 -patch=1,EE,20AC3D60,extended,42860000 // 429E0000 -patch=1,EE,20AC3DA0,extended,42860000 // 429E0000 -patch=1,EE,20AC3DE0,extended,42860000 // 429E0000 - -patch=1,EE,20AC3B68,extended,43DF8000 // 43D90000 -patch=1,EE,20AC3BA8,extended,43DF8000 // 43D90000 -patch=1,EE,20AC3BE8,extended,43DF8000 // 43D90000 -patch=1,EE,20AC3C28,extended,43DF8000 // 43D90000 -patch=1,EE,20AC3C68,extended,43DF8000 // 43D90000 -patch=1,EE,20AC3CA8,extended,43DF8000 // 43D90000 -patch=1,EE,20AC3CE8,extended,43DF8000 // 43D90000 -patch=1,EE,20AC3D28,extended,43DF8000 // 43D90000 -patch=1,EE,20AC3D68,extended,43DF8000 // 43D90000 -patch=1,EE,20AC3DA8,extended,43DF8000 // 43D90000 -patch=1,EE,20AC3DE8,extended,43DF8000 // 43D90000 - - +//patch=1,EE,20C15680,extended,43A90000 // 436E33F5 +//patch=1,EE,20C178C0,extended,43420000 // 43082F0F + + +//patch=1,EE,20AC3B60,extended,42860000 // 429E0000 +//patch=1,EE,20AC3BA0,extended,42860000 // 429E0000 +//patch=1,EE,20AC3BE0,extended,42860000 // 429E0000 +//patch=1,EE,20AC3C20,extended,42860000 // 429E0000 +//patch=1,EE,20AC3C60,extended,42860000 // 429E0000 +//patch=1,EE,20AC3CA0,extended,42860000 // 429E0000 +//patch=1,EE,20AC3CE0,extended,42860000 // 429E0000 +//patch=1,EE,20AC3D20,extended,42860000 // 429E0000 +//patch=1,EE,20AC3D60,extended,42860000 // 429E0000 +//patch=1,EE,20AC3DA0,extended,42860000 // 429E0000 +//patch=1,EE,20AC3DE0,extended,42860000 // 429E0000 + +//patch=1,EE,20AC3B68,extended,43DF8000 // 43D90000 +//patch=1,EE,20AC3BA8,extended,43DF8000 // 43D90000 +//patch=1,EE,20AC3BE8,extended,43DF8000 // 43D90000 +//patch=1,EE,20AC3C28,extended,43DF8000 // 43D90000 +//patch=1,EE,20AC3C68,extended,43DF8000 // 43D90000 +//patch=1,EE,20AC3CA8,extended,43DF8000 // 43D90000 +//patch=1,EE,20AC3CE8,extended,43DF8000 // 43D90000 +//patch=1,EE,20AC3D28,extended,43DF8000 // 43D90000 +//patch=1,EE,20AC3D68,extended,43DF8000 // 43D90000 +//patch=1,EE,20AC3DA8,extended,43DF8000 // 43D90000 +//patch=1,EE,20AC3DE8,extended,43DF8000 // 43D90000 \ No newline at end of file diff --git a/patches/SCUS-97353_45FE0CC4.pnach b/patches/SCUS-97353_45FE0CC4.pnach index 033b2b8e..093d68f5 100644 --- a/patches/SCUS-97353_45FE0CC4.pnach +++ b/patches/SCUS-97353_45FE0CC4.pnach @@ -2,7 +2,7 @@ gametitle=Ratchet & Clank - Up Your Arsenal [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by PsxFan107 +author=PsxFan107 // Code patching routine DWORD patch=1,EE,200C0000,extended,3C1B000C diff --git a/patches/SCUS-97353_49536F3F.pnach b/patches/SCUS-97353_49536F3F.pnach index 033b2b8e..6cdb8555 100644 --- a/patches/SCUS-97353_49536F3F.pnach +++ b/patches/SCUS-97353_49536F3F.pnach @@ -1,8 +1,13 @@ gametitle=Ratchet & Clank - Up Your Arsenal +[60 FPS split-screen] +author=SuperSamus +comment=Makes all split-screen modes render at 60 FPS. Needs enable 180% EE Overclock to be stable. +dpatch=0,4,5,48,24022D00,4C,0044180B,50,00A3182A,60,0000202D,0,00000000,78,00000000,F0,00000000,5C,00000000,B4,24032470 + [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by PsxFan107 +author=PsxFan107 // Code patching routine DWORD patch=1,EE,200C0000,extended,3C1B000C diff --git a/patches/SCUS-97362_3D92EAFF.pnach b/patches/SCUS-97362_3D92EAFF.pnach index c4e31c88..44e0e6c3 100644 --- a/patches/SCUS-97362_3D92EAFF.pnach +++ b/patches/SCUS-97362_3D92EAFF.pnach @@ -2,7 +2,7 @@ gametitle=Syphon Filter: Dark Mirror (SCUS-97362) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 //480p+widescreen patch=1,EE,0018d5dc,word,00000000 diff --git a/patches/SCUS-97367_934F9081.pnach b/patches/SCUS-97367_934F9081.pnach index 6a9855d4..04dd3a18 100644 --- a/patches/SCUS-97367_934F9081.pnach +++ b/patches/SCUS-97367_934F9081.pnach @@ -2,7 +2,7 @@ gametitle=Neopets - The Darkest Faerie (NTSC-U)(SCUS-97367) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCUS-97379_76FB86D4.pnach b/patches/SCUS-97379_76FB86D4.pnach index c69f081b..95cd913f 100644 --- a/patches/SCUS-97379_76FB86D4.pnach +++ b/patches/SCUS-97379_76FB86D4.pnach @@ -2,7 +2,7 @@ gametitle=Athens 2004 (U)(SCUS-97379) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SCUS-97399_D6385328.pnach b/patches/SCUS-97399_D6385328.pnach index 1c7b18ed..0087dd8e 100644 --- a/patches/SCUS-97399_D6385328.pnach +++ b/patches/SCUS-97399_D6385328.pnach @@ -2,7 +2,7 @@ gametitle=God of War (SCUS-97399) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00169250,word,3c013f11 patch=1,EE,00169254,word,342135fc diff --git a/patches/SCUS-97408_E78971DF.pnach b/patches/SCUS-97408_E78971DF.pnach new file mode 100644 index 00000000..ca404502 --- /dev/null +++ b/patches/SCUS-97408_E78971DF.pnach @@ -0,0 +1,6 @@ +gametitle=Getaway Black Monday [NTSC-U] SCUS-97408 E78971DF + +[60 FPS] +author=asasega +comment=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,20253FF0,extended,24020001 diff --git a/patches/SCUS-97416_EDE17E1B.pnach b/patches/SCUS-97416_EDE17E1B.pnach index a5c235ca..f516a681 100644 --- a/patches/SCUS-97416_EDE17E1B.pnach +++ b/patches/SCUS-97416_EDE17E1B.pnach @@ -1,4 +1,4 @@ -gametitle=Rise of the Kasai SCUS_974.16 +gametitle=Rise of the Kasai NTSC-U SCUS-97416 EDE17E1B [Widescreen 16:9] gsaspectratio=16:9 @@ -19,4 +19,7 @@ patch=1,EE,00345AC0,word,30420000 patch=1,EE,0035237c,word,00000000 //64420008 patch=1,EE,00352404,word,00000000 //64420008 - +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00345A00,word,10A00003 //14A00003 \ No newline at end of file diff --git a/patches/SCUS-97465_9BFBCD42.pnach b/patches/SCUS-97465_9BFBCD42.pnach index 7d4ae323..b9ba9a56 100644 --- a/patches/SCUS-97465_9BFBCD42.pnach +++ b/patches/SCUS-97465_9BFBCD42.pnach @@ -1,8 +1,13 @@ gametitle=Ratchet - Deadlocked +[60 FPS split-screen] +author=SuperSamus +comment=Makes all split-screen modes render at 60 FPS. Needs enable 180% EE Overclock to be stable. +dpatch=0,4,4,54,A2B01680,68,A2A01680,6C,3C030022,70,8C63DDA4,0,00000000,4C,00000000,30,00000000,90,24032470 + [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by PsxFan107 +author=PsxFan107 // Code patching routine DWORD patch=1,EE,200C0000,extended,3C1B000C diff --git a/patches/SCUS-97466_CC08ACD4.pnach b/patches/SCUS-97466_CC08ACD4.pnach index 3f168229..05ef9972 100644 --- a/patches/SCUS-97466_CC08ACD4.pnach +++ b/patches/SCUS-97466_CC08ACD4.pnach @@ -2,7 +2,7 @@ gametitle=Gretzky NHL 06 [NTSC-U] (SCUS_974.66) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas // Works fine for the default "Team" camera, but causes a different zoom in each one // of the other camera's view. diff --git a/patches/SCUS-97481_2F123FD8.pnach b/patches/SCUS-97481_2F123FD8.pnach index e351954f..3c118961 100644 --- a/patches/SCUS-97481_2F123FD8.pnach +++ b/patches/SCUS-97481_2F123FD8.pnach @@ -2,7 +2,7 @@ gametitle=God of War 2 (SCUS-97481) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,00234A48,word,46000406 diff --git a/patches/SCUS-97584_848A6CEA.pnach b/patches/SCUS-97584_848A6CEA.pnach index 22370ff4..e4c926f0 100644 --- a/patches/SCUS-97584_848A6CEA.pnach +++ b/patches/SCUS-97584_848A6CEA.pnach @@ -2,7 +2,7 @@ gametitle=Syphon Filter: Logan's Shadow (SCUS-97584) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 //480p+widescreen patch=1,EE,00270964,word,00000000 diff --git a/patches/SCUS-97610_72326E67.pnach b/patches/SCUS-97610_72326E67.pnach index 6a0f06f5..5436713b 100644 --- a/patches/SCUS-97610_72326E67.pnach +++ b/patches/SCUS-97610_72326E67.pnach @@ -2,7 +2,7 @@ gametitle=Hot Shots Tennis (NTSC-U) (SCUS-97610) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (ported by Tagg) +author=ElHecht (ported by Tagg) // 16:9 patch=1,EE,001398d0,word,08074b83 // e4840544 jump to code-inject 001d2e0c @@ -19,7 +19,7 @@ patch=1,EE,00138134,word,3c034456 // 3c034420 2D menu/hud fix [No-Interlacing] gsinterlacemode=1 -comment=no interlacing by someother1ne +author=someother1ne patch=1,EE,00125464,word,64420000 patch=1,EE,001256cc,word,64420000 diff --git a/patches/SLAJ-25060_664D4EAE.pnach b/patches/SLAJ-25060_664D4EAE.pnach index d00d6f1d..49be6307 100644 --- a/patches/SLAJ-25060_664D4EAE.pnach +++ b/patches/SLAJ-25060_664D4EAE.pnach @@ -2,7 +2,7 @@ gametitle=Juuouki - Project Altered Beast [SLAJ_250.60] [NTSC-J] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant patch=1,EE,001700F4,word,3C023fe3 //3C023FAA patch=1,EE,001700F8,word,34428e38 //3442AAAB diff --git a/patches/SLES-50017_96E46AA0.pnach b/patches/SLES-50017_96E46AA0.pnach index 7b501329..c8ee3445 100644 --- a/patches/SLES-50017_96E46AA0.pnach +++ b/patches/SLES-50017_96E46AA0.pnach @@ -2,7 +2,7 @@ gametitle=F1 Championship Season 2000 (E)(SLES-50017) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50022_0D434FEC.pnach b/patches/SLES-50022_0D434FEC.pnach index 821cc8cd..11037a73 100644 --- a/patches/SLES-50022_0D434FEC.pnach +++ b/patches/SLES-50022_0D434FEC.pnach @@ -1,6 +1,17 @@ gametitle=NBA Live 2001 (PAL-E) SLES-50022 0D434FEC +[Widescreen 16:9] +gsaspectratio=16:9 +author=Arapapa, ported by PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00112920,word,08030000 +patch=1,EE,000C0000,word,46093182 +patch=1,EE,000C0004,word,3C013F40 +patch=1,EE,000C0008,word,4481F000 +patch=1,EE,000C000C,word,461E3182 +patch=1,EE,000C0010,word,08044A49 + [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,003AC008,word,0000003C //0000001E \ No newline at end of file diff --git a/patches/SLES-50026_0D434FEC.pnach b/patches/SLES-50026_0D434FEC.pnach index e8c7ebde..c9bdcb1a 100644 --- a/patches/SLES-50026_0D434FEC.pnach +++ b/patches/SLES-50026_0D434FEC.pnach @@ -1,6 +1,17 @@ -gametitle=NBA Live 2001 [PAL-S] SLES-50026 0D434FEC +gametitle=NBA Live 2001 (PAL-S) SLES-50026 0D434FEC + +[Widescreen 16:9] +gsaspectratio=16:9 +author=Arapapa, ported by PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00112920,word,08030000 +patch=1,EE,000C0000,word,46093182 +patch=1,EE,000C0004,word,3C013F40 +patch=1,EE,000C0008,word,4481F000 +patch=1,EE,000C000C,word,461E3182 +patch=1,EE,000C0010,word,08044A49 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,003AC008,word,0000003C //0000001E +description=Might need EE Overclock at 130%. +patch=1,EE,003AC008,word,0000003C //0000001E \ No newline at end of file diff --git a/patches/SLES-50027_E3DCB6B9.pnach b/patches/SLES-50027_E3DCB6B9.pnach index 05fc04d0..4c2c5104 100644 --- a/patches/SLES-50027_E3DCB6B9.pnach +++ b/patches/SLES-50027_E3DCB6B9.pnach @@ -2,7 +2,7 @@ gametitle=NHL 2001 (E)(SLES-50027) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50036_E59E10BF.pnach b/patches/SLES-50036_E59E10BF.pnach index 8201cb97..d8cda736 100644 --- a/patches/SLES-50036_E59E10BF.pnach +++ b/patches/SLES-50036_E59E10BF.pnach @@ -2,7 +2,7 @@ gametitle=ESPN International Track & Field (E)(SLES-50036) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50042_238B189C.pnach b/patches/SLES-50042_238B189C.pnach index ed82e740..ba0aa34e 100644 --- a/patches/SLES-50042_238B189C.pnach +++ b/patches/SLES-50042_238B189C.pnach @@ -1,12 +1,15 @@ -gametitle=Disney's Dinosaur (E)(SLES-50042 & SLES-50043) +gametitle=Disney's Dinosaur PAL-M SLES-50042 238B189C [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,0026b274,word,3fe38e32 //3faaaaab patch=1,EE,0026b27c,word,3fe38e32 //3faaaaab - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0015EF14,word,3C023F0C //3C023F8C \ No newline at end of file diff --git a/patches/SLES-50043_238B189C.pnach b/patches/SLES-50043_238B189C.pnach index ed82e740..3f80ec04 100644 --- a/patches/SLES-50043_238B189C.pnach +++ b/patches/SLES-50043_238B189C.pnach @@ -1,12 +1,15 @@ -gametitle=Disney's Dinosaur (E)(SLES-50042 & SLES-50043) +gametitle=Disney's Dinosaur PAL-M SLES-50043 238B189C [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,0026b274,word,3fe38e32 //3faaaaab patch=1,EE,0026b27c,word,3fe38e32 //3faaaaab - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0015EF14,word,3C023F0C //3C023F8C \ No newline at end of file diff --git a/patches/SLES-50044_55EDA5A0.pnach b/patches/SLES-50044_55EDA5A0.pnach index 13623b86..e324f228 100644 --- a/patches/SLES-50044_55EDA5A0.pnach +++ b/patches/SLES-50044_55EDA5A0.pnach @@ -3,7 +3,7 @@ gametitle=Rayman Revolution (PAL-M5) (SLES-50044) 55EDA5A0 [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht & ICUP321 -comment=Widescreen Hacks +description=Renders the game in 16:9 aspect ratio // General Widescreen Fixes patch=1,EE,0018c6a0,word,4481f000 // 00000000 patch=1,EE,0018c6a4,word,461e0842 // 00000000 @@ -27,5 +27,5 @@ patch=1,EE,0018c690,word,3c013f40 // 00000000 hor fov [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,001011FC,word,24030000 //24030001 \ No newline at end of file diff --git a/patches/SLES-50045_572D9D76.pnach b/patches/SLES-50045_572D9D76.pnach index 0ab9c258..f0e43b0b 100644 --- a/patches/SLES-50045_572D9D76.pnach +++ b/patches/SLES-50045_572D9D76.pnach @@ -2,7 +2,7 @@ gametitle=Walt Disney's The Jungle Book - Groove Party (E)(SLES-50045) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50047_3063BD41.pnach b/patches/SLES-50047_3063BD41.pnach index ae6f9acd..b302ae62 100644 --- a/patches/SLES-50047_3063BD41.pnach +++ b/patches/SLES-50047_3063BD41.pnach @@ -2,7 +2,7 @@ gametitle=F1 Racing Championship (E)(SLES-50047) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50048_F34ECBDC.pnach b/patches/SLES-50048_F34ECBDC.pnach index 1be4a5bf..55c4bf5d 100644 --- a/patches/SLES-50048_F34ECBDC.pnach +++ b/patches/SLES-50048_F34ECBDC.pnach @@ -2,7 +2,7 @@ gametitle=Disney's Donald Duck - Quack Attack (E)(SLES-50048) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50051_C5B61685.pnach b/patches/SLES-50051_C5B61685.pnach index f3a5e938..142a29fa 100644 --- a/patches/SLES-50051_C5B61685.pnach +++ b/patches/SLES-50051_C5B61685.pnach @@ -2,7 +2,7 @@ gametitle=Eternal Ring (E)(SLES-50051) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen Hack 16:9 diff --git a/patches/SLES-50053_C7591F3F.pnach b/patches/SLES-50053_C7591F3F.pnach index b32f91e7..32143a2e 100644 --- a/patches/SLES-50053_C7591F3F.pnach +++ b/patches/SLES-50053_C7591F3F.pnach @@ -2,7 +2,7 @@ gametitle=Aqua Aqua - Wetrix 2 (E)(SLES-50053) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-50056_6A031FEB.pnach b/patches/SLES-50056_6A031FEB.pnach index 1f957c86..5e939a17 100644 --- a/patches/SLES-50056_6A031FEB.pnach +++ b/patches/SLES-50056_6A031FEB.pnach @@ -2,7 +2,7 @@ gametitle=Surfing H3O (E)(SLES-50056) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50057_E90A5E60.pnach b/patches/SLES-50057_E90A5E60.pnach index 8941cafc..1b28b340 100644 --- a/patches/SLES-50057_E90A5E60.pnach +++ b/patches/SLES-50057_E90A5E60.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 2 (PAL-EUR) (SLES-50057) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by Machiavel Dhy'v converted from ElHecht PAL-G +author=Machiavel Dhy'v converted from ElHecht PAL-G // 16:9 patch=1,EE,00202714,word,3c013f40 // 00000000 zoom - identique diff --git a/patches/SLES-50059_0CE91053.pnach b/patches/SLES-50059_0CE91053.pnach index 3991c508..db8db8a1 100644 --- a/patches/SLES-50059_0CE91053.pnach +++ b/patches/SLES-50059_0CE91053.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 2 (PAL-G) (SLES-50059) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,00202714,word,3c013f40 // 00000000 zoom diff --git a/patches/SLES-50061_95416482.pnach b/patches/SLES-50061_95416482.pnach index d765c198..af684cd0 100644 --- a/patches/SLES-50061_95416482.pnach +++ b/patches/SLES-50061_95416482.pnach @@ -1,14 +1,14 @@ -gametitle=Smuggler's Run [PAL-M5] (SLES_500.61) +gametitle=Smuggler's Run [PAL-M5] (SLES_500.61) 95416482 [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Gameplay 16:9 patch=1,EE,0023548C,word,3C013FCC //3C013F99 patch=1,EE,00235490,word,342199CD //3421999A [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,002C6DA4,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-50064_0B74A404.pnach b/patches/SLES-50064_0B74A404.pnach index a43c6ce2..9a5da895 100644 --- a/patches/SLES-50064_0B74A404.pnach +++ b/patches/SLES-50064_0B74A404.pnach @@ -2,7 +2,7 @@ gametitle=Stunt GP [PAL] (SLES_500.64) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00591E00,word,3FE37119 //3FAA9FBE Single Player diff --git a/patches/SLES-50068_B5E40DA3.pnach b/patches/SLES-50068_B5E40DA3.pnach index 6908778c..1b8352cf 100644 --- a/patches/SLES-50068_B5E40DA3.pnach +++ b/patches/SLES-50068_B5E40DA3.pnach @@ -2,7 +2,7 @@ gametitle=TG DareDevil (E)(SLES-50068) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50069_FD8F4257.pnach b/patches/SLES-50069_FD8F4257.pnach index dcd7f201..6676cf3a 100644 --- a/patches/SLES-50069_FD8F4257.pnach +++ b/patches/SLES-50069_FD8F4257.pnach @@ -3,10 +3,10 @@ gametitle=Top Gear Daredevil (PAL-E) SLES-50069 FD8F4257 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,00143DB4,word,3C013EC0 //3C013F00 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0010099C,word,3C012000 //3C014000 \ No newline at end of file diff --git a/patches/SLES-50071_831078BD.pnach b/patches/SLES-50071_831078BD.pnach index 7608acba..664cd9cf 100644 --- a/patches/SLES-50071_831078BD.pnach +++ b/patches/SLES-50071_831078BD.pnach @@ -3,12 +3,12 @@ gametitle=Midnight Club - Street Racing (PAL-M) SLES-50071 831078BD [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Widescreen hack 16:9 +description=Renders the game in 16:9 aspect ratio patch=1,EE,0047B580,word,3F471C97 //3F800000 patch=1,EE,0047B594,word,3F471C97 //3F800000 patch=1,EE,0047B5BC,word,3F471C97 //3F800000 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,003054C4,word,00000001 \ No newline at end of file diff --git a/patches/SLES-50072_5E13E6D6.pnach b/patches/SLES-50072_5E13E6D6.pnach index 5a04e869..b262848f 100644 --- a/patches/SLES-50072_5E13E6D6.pnach +++ b/patches/SLES-50072_5E13E6D6.pnach @@ -2,7 +2,7 @@ gametitle=Street Fighter EX 3 [PAL] (SLES_500.72) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,002E3574,word,3C013F40 //00000000 (Increases hor. axis) diff --git a/patches/SLES-50073_8398DAF3.pnach b/patches/SLES-50073_8398DAF3.pnach index de5303c6..93942b7a 100644 --- a/patches/SLES-50073_8398DAF3.pnach +++ b/patches/SLES-50073_8398DAF3.pnach @@ -2,7 +2,7 @@ gametitle=Driving Emotion Type-S (PAL) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by FlatOut +author=FlatOut //16:9 patch=1,EE,00466528,word,3F400000 diff --git a/patches/SLES-50074_4A805DF1.pnach b/patches/SLES-50074_4A805DF1.pnach index 2d06ac19..969ee0f0 100644 --- a/patches/SLES-50074_4A805DF1.pnach +++ b/patches/SLES-50074_4A805DF1.pnach @@ -2,5 +2,5 @@ gametitle=Unreal Tournament (PAL-E) SLES-50074 4A805DF1 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,0012D394,word,28420001 //28420002 \ No newline at end of file diff --git a/patches/SLES-50075_68DAC75E.pnach b/patches/SLES-50075_68DAC75E.pnach index c1893cb5..c6dc8297 100644 --- a/patches/SLES-50075_68DAC75E.pnach +++ b/patches/SLES-50075_68DAC75E.pnach @@ -2,7 +2,7 @@ gametitle=ESPN NBA 2Night (E)(SLES-50075) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50077_91202475.pnach b/patches/SLES-50077_91202475.pnach index 0034cc82..0784768f 100644 --- a/patches/SLES-50077_91202475.pnach +++ b/patches/SLES-50077_91202475.pnach @@ -2,7 +2,7 @@ gametitle=RC Revenge Pro (E)(SLES-50077) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50079_D9B48C4A.pnach b/patches/SLES-50079_D9B48C4A.pnach index ed2377e5..9e9ef19a 100644 --- a/patches/SLES-50079_D9B48C4A.pnach +++ b/patches/SLES-50079_D9B48C4A.pnach @@ -2,7 +2,7 @@ gametitle=Armored Core 2 (PAL-E) (SLES-50079) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0028b02c,word,3c013f40 // 00000000 hor fov gameplay diff --git a/patches/SLES-50080_AFBA3846.pnach b/patches/SLES-50080_AFBA3846.pnach index 4228dd35..a2334ce4 100644 --- a/patches/SLES-50080_AFBA3846.pnach +++ b/patches/SLES-50080_AFBA3846.pnach @@ -2,7 +2,7 @@ gametitle=NBA Hoopz (E)(SLES-50080) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50107_13516983.pnach b/patches/SLES-50107_13516983.pnach index 997acb09..dbfaa11c 100644 --- a/patches/SLES-50107_13516983.pnach +++ b/patches/SLES-50107_13516983.pnach @@ -2,7 +2,7 @@ gametitle=Legends of Wrestling (E)(SLES-50107) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50110_8EF3DDFC.pnach b/patches/SLES-50110_8EF3DDFC.pnach index 8ad7ae17..a0685dee 100644 --- a/patches/SLES-50110_8EF3DDFC.pnach +++ b/patches/SLES-50110_8EF3DDFC.pnach @@ -2,7 +2,7 @@ gametitle=Ephemeral Fantasia [PAL] (SLES-50110) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //Vert patch=1,EE,00239dbc,word,3c023fa2 diff --git a/patches/SLES-50118_1D3435B2.pnach b/patches/SLES-50118_1D3435B2.pnach index 77862152..a779da7e 100644 --- a/patches/SLES-50118_1D3435B2.pnach +++ b/patches/SLES-50118_1D3435B2.pnach @@ -2,7 +2,7 @@ gametitle=Tiger Woods PGA Tour 2001 (PAL)(SLES-50118) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50120_A9908033.pnach b/patches/SLES-50120_A9908033.pnach index d7871f27..fe7638a2 100644 --- a/patches/SLES-50120_A9908033.pnach +++ b/patches/SLES-50120_A9908033.pnach @@ -2,7 +2,7 @@ gametitle=Rumble Racing [PAL-M3] (SLES_501.20) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001549F0,word,3C023F40 //3C023F80 (Increases hor. axis) diff --git a/patches/SLES-50131_FEA030CB.pnach b/patches/SLES-50131_FEA030CB.pnach index a75240cc..d1655211 100644 --- a/patches/SLES-50131_FEA030CB.pnach +++ b/patches/SLES-50131_FEA030CB.pnach @@ -1,9 +1,9 @@ -gametitle=Le Mans 24 Hours (PAL-M5) (SLES-50131) +gametitle=Le Mans 24 Hours (PAL-M5) (SLES-50131) FEA030CB [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht - +author=ElHecht +description=Renders the game in 16:9 aspect ratio // 16:9 patch=1,EE,00322d84,word,080e7b49 // 3c033f80 patch=1,EE,00322d88,word,00000000 // 27b001e0 @@ -20,4 +20,12 @@ patch=1,EE,0039ed30,word,080c8b62 // 00000000 //patch=1,EE,0039ed2c,word,27b001e0 // 00000000 //patch=1,EE,0039ed30,word,080c8b62 // 00000000 - +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,00159E88,extended,24620001 +patch=1,EE,E0020019,extended,0041100C //50hz +patch=1,EE,E0010003,extended,004115D4 +patch=1,EE,205AFB6C,extended,42480000 +patch=1,EE,E0010002,extended,004115D4 //60hz +patch=1,EE,205AFB6C,extended,42700000 \ No newline at end of file diff --git a/patches/SLES-50132_EB94A7B4.pnach b/patches/SLES-50132_EB94A7B4.pnach index 2b99031f..d0a9e56f 100644 --- a/patches/SLES-50132_EB94A7B4.pnach +++ b/patches/SLES-50132_EB94A7B4.pnach @@ -1,8 +1,8 @@ -gametitle=MXRider (E)(SLES-50132) +gametitle=MX Rider PAL-M SLES-50132 EB94A7B4 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -10,4 +10,7 @@ comment=Widescreen hack by Arapapa //003f013c 00008144 8e3c013c (2nd) patch=1,EE,002ce274,word,3c013f20 //3c013f00 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,003229F0,word,C6400030 //C6400034 \ No newline at end of file diff --git a/patches/SLES-50134_22E85E68.pnach b/patches/SLES-50134_22E85E68.pnach index 4dd5d0e2..15dff31a 100644 --- a/patches/SLES-50134_22E85E68.pnach +++ b/patches/SLES-50134_22E85E68.pnach @@ -2,7 +2,7 @@ gametitle=Oni (SLES-50134) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Catarax +author=Catarax patch=1,EE,001346f8,word,3c013f40 //3c013f80 diff --git a/patches/SLES-50155_BD2818EA.pnach b/patches/SLES-50155_BD2818EA.pnach index b2422596..d600d5eb 100644 --- a/patches/SLES-50155_BD2818EA.pnach +++ b/patches/SLES-50155_BD2818EA.pnach @@ -2,7 +2,7 @@ gametitle=Operation WinBack (PAL-M3) (SLES-50155) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00248198,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-50158_30039C36.pnach b/patches/SLES-50158_30039C36.pnach index 2f02ea1f..9e96e51b 100644 --- a/patches/SLES-50158_30039C36.pnach +++ b/patches/SLES-50158_30039C36.pnach @@ -2,7 +2,7 @@ gametitle=Gungriffon Blaze (E)(SLES-50158) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50176_F77639F1.pnach b/patches/SLES-50176_F77639F1.pnach index 1666c662..14506546 100644 --- a/patches/SLES-50176_F77639F1.pnach +++ b/patches/SLES-50176_F77639F1.pnach @@ -2,7 +2,7 @@ gametitle=Oni (SLES-50176) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Catarax +author=Catarax patch=1,EE,001346f8,word,3c013f40 //3c013f80 diff --git a/patches/SLES-50187_002E402E.pnach b/patches/SLES-50187_002E402E.pnach index 7e708b9d..994eb0a3 100644 --- a/patches/SLES-50187_002E402E.pnach +++ b/patches/SLES-50187_002E402E.pnach @@ -2,7 +2,7 @@ gametitle=Warriors of Might and Magic (PAL-M5) (SLES-50187) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002fc8c0,word,3c013f81 // 00000000 hor fov diff --git a/patches/SLES-50192_F491BA82.pnach b/patches/SLES-50192_F491BA82.pnach index 2f031672..dd53e007 100644 --- a/patches/SLES-50192_F491BA82.pnach +++ b/patches/SLES-50192_F491BA82.pnach @@ -2,7 +2,7 @@ gametitle=Army Men - Sarge's Heroes 2 (PAL-Unk)(SLES-50192) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas and Arapapa +author=El_Patas and Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50193_AC7E88D9.pnach b/patches/SLES-50193_AC7E88D9.pnach index 852af490..09ff311f 100644 --- a/patches/SLES-50193_AC7E88D9.pnach +++ b/patches/SLES-50193_AC7E88D9.pnach @@ -2,7 +2,7 @@ gametitle=Silpheed - The Lost Planet (PAL) (SLES_50193) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (0000803f d7a3703f 0000f943) patch=1,EE,20432848,word,3F400000 // 3F800000 diff --git a/patches/SLES-50201_5D795715.pnach b/patches/SLES-50201_5D795715.pnach index 51355722..de187442 100644 --- a/patches/SLES-50201_5D795715.pnach +++ b/patches/SLES-50201_5D795715.pnach @@ -2,7 +2,7 @@ gametitle=Evil Twin - Cyprien's Chronicles (PAL-M5) (SLES-50201) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht comment=game still needs black bar fix/removal in cut-scenes // 16:9 diff --git a/patches/SLES-50202_9B1EE9EB.pnach b/patches/SLES-50202_9B1EE9EB.pnach index 4bbcb9e5..3669ee8e 100644 --- a/patches/SLES-50202_9B1EE9EB.pnach +++ b/patches/SLES-50202_9B1EE9EB.pnach @@ -2,7 +2,7 @@ gametitle=DNA - Dark Native Apostle (E)(SLES-50202) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50203_880AA922.pnach b/patches/SLES-50203_880AA922.pnach index b4f86e02..868cbfd6 100644 --- a/patches/SLES-50203_880AA922.pnach +++ b/patches/SLES-50203_880AA922.pnach @@ -2,7 +2,7 @@ gametitle=Bloody Roar 3 [PAL] (SLES_502.03) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001D7B2C,word,3C013F40 //00000000 (Increases hor. axis) diff --git a/patches/SLES-50210_A991D167.pnach b/patches/SLES-50210_A991D167.pnach index d02fa772..e854e564 100644 --- a/patches/SLES-50210_A991D167.pnach +++ b/patches/SLES-50210_A991D167.pnach @@ -2,7 +2,7 @@ gametitle=XGIII: Extreme G Racing [PAL-M4] (SLES_502.10) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //16:9 patch=1,EE,0022C288,word,3FE38E38 //3FAAAAAB diff --git a/patches/SLES-50210_DF20EC1B.pnach b/patches/SLES-50210_DF20EC1B.pnach index 7b88395c..a535da23 100644 --- a/patches/SLES-50210_DF20EC1B.pnach +++ b/patches/SLES-50210_DF20EC1B.pnach @@ -2,7 +2,7 @@ gametitle=XG3: Extreme G Racing (PAL-M4) [SLES-50210] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47, converted by FlatOut +author=No.47, converted by FlatOut patch=1,EE,0022C008,word,3FE38E38 patch=1,EE,0022C114,word,42AC0000 diff --git a/patches/SLES-50211_3E0A256D.pnach b/patches/SLES-50211_3E0A256D.pnach index b8813ac9..b566dad0 100644 --- a/patches/SLES-50211_3E0A256D.pnach +++ b/patches/SLES-50211_3E0A256D.pnach @@ -2,7 +2,7 @@ gametitle=Gauntlet: Dark Legacy [PAL] (SLES_502.11) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001ab354,word,3c013ec0 //00000000 (Increases hor. axis) diff --git a/patches/SLES-50212_A5BF36A8.pnach b/patches/SLES-50212_A5BF36A8.pnach index ec177483..9d1ac99b 100644 --- a/patches/SLES-50212_A5BF36A8.pnach +++ b/patches/SLES-50212_A5BF36A8.pnach @@ -1,16 +1,22 @@ -gametitle=Paris-Dakar Rally (E)(SLES-50212) +gametitle=Paris-Dakar Rally (PAL-M) SLES-50212 A5BF36A8 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen Hack -//Widescreen hack 16:9 - -//X-Fov -//403f033c 00688344 7a44033c +description=Renders the game in 16:9 aspect ratio patch=1,EE,001abb4c,word,3c033f10 //3c033f40 Menu - -//403f023c 4d00013c patch=1,EE,0017c480,word,3c023f10 //3c023f40 Gameplay +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,0012A15C,byte,01 +[NTSC Mode] +author=PeterDelta +description=NTSC mode at start. +patch=1,EE,004C92D8,word,0000003C +patch=1,EE,002DF6D8,word,018242C0 +patch=1,EE,002DF6F0,word,018242C2 +patch=1,EE,002DF718,word,018242C0 +patch=1,EE,002DF730,word,018242C2 \ No newline at end of file diff --git a/patches/SLES-50214_31166896.pnach b/patches/SLES-50214_31166896.pnach index 820ccf7e..d6a723cb 100644 --- a/patches/SLES-50214_31166896.pnach +++ b/patches/SLES-50214_31166896.pnach @@ -2,7 +2,7 @@ gametitle=18 Wheeler: American Pro Trucker [PAL-M4] (SLES_502.14) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001D6DDC,word,3C013F40 //3C013F80 (Increases hor. axis) diff --git a/patches/SLES-50217_2277CAEB.pnach b/patches/SLES-50217_2277CAEB.pnach index 60bd3f74..3bee756c 100644 --- a/patches/SLES-50217_2277CAEB.pnach +++ b/patches/SLES-50217_2277CAEB.pnach @@ -2,7 +2,7 @@ gametitle=Dave Mirra Freestyle BMX 2 (SLES-50217) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by BloodRaynare +author=BloodRaynare // 16:9 patch=1,EE,00100c34,word,3c013f40 // 3c013f80 hor fov diff --git a/patches/SLES-50218_D7ACE82B.pnach b/patches/SLES-50218_D7ACE82B.pnach index d8293b4a..c42f6405 100644 --- a/patches/SLES-50218_D7ACE82B.pnach +++ b/patches/SLES-50218_D7ACE82B.pnach @@ -2,7 +2,7 @@ gametitle=All-Star Baseball 2002 (E)(SLES-50218) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Y-fov diff --git a/patches/SLES-50219_0F9479F8.pnach b/patches/SLES-50219_0F9479F8.pnach index 2fcae03e..ae3fd3fd 100644 --- a/patches/SLES-50219_0F9479F8.pnach +++ b/patches/SLES-50219_0F9479F8.pnach @@ -1,8 +1,8 @@ -gametitle= NBA Street (PAL) (SLES-50219) +gametitle=NBA Street (PAL) (SLES-50219) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack by VIRGIN KLM +author=VIRGIN KLM //Widescreen - 3D Elements patch=1,EE,00644D48,word,3FB60B61 // 3F888889 diff --git a/patches/SLES-50220_B7BA39A1.pnach b/patches/SLES-50220_B7BA39A1.pnach index 1576fb5a..efc5b1ba 100644 --- a/patches/SLES-50220_B7BA39A1.pnach +++ b/patches/SLES-50220_B7BA39A1.pnach @@ -2,7 +2,7 @@ gametitle=Rugby (E)(SLES-50220) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50224_19D145D7.pnach b/patches/SLES-50224_19D145D7.pnach index 6c751405..24b333ed 100644 --- a/patches/SLES-50224_19D145D7.pnach +++ b/patches/SLES-50224_19D145D7.pnach @@ -2,7 +2,7 @@ gametitle=Kuri Kuri Mix [PAL-M3] (SLES_502.24) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00100280,word,3C013F40 //3C013F80 (Increases hor. axis) diff --git a/patches/SLES-50230_D48A92E1.pnach b/patches/SLES-50230_D48A92E1.pnach index 5aa32e7c..9fce3c96 100644 --- a/patches/SLES-50230_D48A92E1.pnach +++ b/patches/SLES-50230_D48A92E1.pnach @@ -2,7 +2,7 @@ gametitle=Lotus Challenge (E)(SLES-50230) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50231_AD5A2FBC.pnach b/patches/SLES-50231_AD5A2FBC.pnach index 9be0e715..409bc2be 100644 --- a/patches/SLES-50231_AD5A2FBC.pnach +++ b/patches/SLES-50231_AD5A2FBC.pnach @@ -2,7 +2,7 @@ gametitle=International League Soccer (E)(SLES-50231) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50233_E658A1D9.pnach b/patches/SLES-50233_E658A1D9.pnach index 56efb39f..848e71c9 100644 --- a/patches/SLES-50233_E658A1D9.pnach +++ b/patches/SLES-50233_E658A1D9.pnach @@ -2,7 +2,7 @@ gametitle=Army Men - Air Attack - Blade's Revenge (E)(SLES-50233) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50243_FDDB7579.pnach b/patches/SLES-50243_FDDB7579.pnach index 4af8c4e6..4ee409ae 100644 --- a/patches/SLES-50243_FDDB7579.pnach +++ b/patches/SLES-50243_FDDB7579.pnach @@ -2,7 +2,7 @@ gametitle=David Beckham Soccer (E)(SLES-50243) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50248_4515F52F.pnach b/patches/SLES-50248_4515F52F.pnach index 0f68145a..e4c04912 100644 --- a/patches/SLES-50248_4515F52F.pnach +++ b/patches/SLES-50248_4515F52F.pnach @@ -2,7 +2,7 @@ gametitle=MDK 2: Armageddon [PAL-M5] (SLES_502.48) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0017BC6C,word,3C0140AB //3C014080 (Increases hor. axis) diff --git a/patches/SLES-50259_E7C59CE9.pnach b/patches/SLES-50259_E7C59CE9.pnach index 7d741af5..94dfa535 100644 --- a/patches/SLES-50259_E7C59CE9.pnach +++ b/patches/SLES-50259_E7C59CE9.pnach @@ -2,7 +2,7 @@ gametitle=The Flintstones in Viva Rock Vegas [PAL] (SLES_502.59) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00139738,word,3C013F40 //3C013F80 Single Player diff --git a/patches/SLES-50260_7E89D327.pnach b/patches/SLES-50260_7E89D327.pnach index 5b58ee04..65b66cf1 100644 --- a/patches/SLES-50260_7E89D327.pnach +++ b/patches/SLES-50260_7E89D327.pnach @@ -2,7 +2,7 @@ gametitle=Hidden Invasion [PAL] (SLES_502.60) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00121CCC,word,3C013F40 //3C013F80 (Increases hor. axis) diff --git a/patches/SLES-50261_7EAAD346.pnach b/patches/SLES-50261_7EAAD346.pnach index 711d6527..636a644c 100644 --- a/patches/SLES-50261_7EAAD346.pnach +++ b/patches/SLES-50261_7EAAD346.pnach @@ -2,7 +2,7 @@ gametitle=Sky Surfer (E)(SLES-50261) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50262_60BCC078.pnach b/patches/SLES-50262_60BCC078.pnach new file mode 100644 index 00000000..f4bf776e --- /dev/null +++ b/patches/SLES-50262_60BCC078.pnach @@ -0,0 +1,6 @@ +gametitle=World Destruction League - War Jets PAL-M SLES-50262 60BCC078 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00260874,word,00000000 //0C09E490 \ No newline at end of file diff --git a/patches/SLES-50263_8308BAF1.pnach b/patches/SLES-50263_8308BAF1.pnach index 4cc452fb..456cfec3 100644 --- a/patches/SLES-50263_8308BAF1.pnach +++ b/patches/SLES-50263_8308BAF1.pnach @@ -2,7 +2,7 @@ gametitle=Portal Runner [PAL] (SLES_502.63) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 P1 Screen patch=1,EE,0030AD90,word,3FA1C40E //3FD7B013 diff --git a/patches/SLES-50274_30818780.pnach b/patches/SLES-50274_30818780.pnach index ccb3b670..f4a9b05f 100644 --- a/patches/SLES-50274_30818780.pnach +++ b/patches/SLES-50274_30818780.pnach @@ -2,7 +2,7 @@ gametitle=Arctic Thunder (E)(SLES-50274) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50276_CC76CD02.pnach b/patches/SLES-50276_CC76CD02.pnach index 9b758a95..1dcc9e06 100644 --- a/patches/SLES-50276_CC76CD02.pnach +++ b/patches/SLES-50276_CC76CD02.pnach @@ -2,5 +2,5 @@ gametitle=Gift (PAL-E) SLES-50276 CC76CD02 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,001FE2FC,word,00000000 \ No newline at end of file diff --git a/patches/SLES-50277_12526265.pnach b/patches/SLES-50277_12526265.pnach index c691af2f..016e89f4 100644 --- a/patches/SLES-50277_12526265.pnach +++ b/patches/SLES-50277_12526265.pnach @@ -2,5 +2,5 @@ gametitle=Red Faction (PAL-M) SLES-50277 12526265 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0016505C,word,24040001 //24040002 \ No newline at end of file diff --git a/patches/SLES-50278_A7E712FD.pnach b/patches/SLES-50278_A7E712FD.pnach index c60f2171..60efc825 100644 --- a/patches/SLES-50278_A7E712FD.pnach +++ b/patches/SLES-50278_A7E712FD.pnach @@ -2,7 +2,7 @@ gametitle=Red Faction (PAL-F) (SLES-50278) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Bigdemon +author=Bigdemon // 16:9 patch=1,EE,002075d4,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-50279_8DC64680.pnach b/patches/SLES-50279_8DC64680.pnach index c93eb7a6..d3399610 100644 --- a/patches/SLES-50279_8DC64680.pnach +++ b/patches/SLES-50279_8DC64680.pnach @@ -2,7 +2,7 @@ gametitle=Red Faction (PAL-G) (SLES-50279) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00206e74,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-50280_E3F31090.pnach b/patches/SLES-50280_E3F31090.pnach index 62e4a6ca..88625f52 100644 --- a/patches/SLES-50280_E3F31090.pnach +++ b/patches/SLES-50280_E3F31090.pnach @@ -2,7 +2,7 @@ gametitle=Victorious Boxers - Ippo's Road to Glory (PAL)(SLES-50280) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50285_08A1C938.pnach b/patches/SLES-50285_08A1C938.pnach index 5d13dd57..9eac64c0 100644 --- a/patches/SLES-50285_08A1C938.pnach +++ b/patches/SLES-50285_08A1C938.pnach @@ -2,7 +2,7 @@ gametitle=Police 24/7 (E)(SLES-50285) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50288_790A4ACB.pnach b/patches/SLES-50288_790A4ACB.pnach index 4385ce6a..eb9bd45e 100644 --- a/patches/SLES-50288_790A4ACB.pnach +++ b/patches/SLES-50288_790A4ACB.pnach @@ -1,4 +1,4 @@ -gametitle=Stuntman (E)(SLES-50288) 790A4ACB +gametitle=Stuntman (PAL-M) (SLES-50288) 790A4ACB [Widescreen 16:9] gsaspectratio=16:9 @@ -12,5 +12,5 @@ patch=1,EE,001d4cdc,word,34218e3f //3421aaab [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,005C21B4,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-50299_212D709B.pnach b/patches/SLES-50299_212D709B.pnach index 1b442730..b6cfe82c 100644 --- a/patches/SLES-50299_212D709B.pnach +++ b/patches/SLES-50299_212D709B.pnach @@ -2,5 +2,5 @@ gametitle=Gift (PAL-S) SLES-50299 212D709B [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,001FE34C,word,00000000 \ No newline at end of file diff --git a/patches/SLES-50300_30FABE51.pnach b/patches/SLES-50300_30FABE51.pnach index e1e806ba..8ce07c6a 100644 --- a/patches/SLES-50300_30FABE51.pnach +++ b/patches/SLES-50300_30FABE51.pnach @@ -2,7 +2,7 @@ gametitle=Time Crisis 2 SLES_503.00 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by dieSkaarj. +author=dieSkaarj. comment=Aiming still in 4:3 patch=1,EE,00298818,word,3c013f40 //3c013f80 diff --git a/patches/SLES-50325_E7FB0320.pnach b/patches/SLES-50325_E7FB0320.pnach index dfeb6de7..54641fed 100644 --- a/patches/SLES-50325_E7FB0320.pnach +++ b/patches/SLES-50325_E7FB0320.pnach @@ -2,7 +2,7 @@ gametitle=Max Payne (PAL-E) (SLES-50325) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 // ELF file is called "MAIN_P.RUN" diff --git a/patches/SLES-50326_52E0597D.pnach b/patches/SLES-50326_52E0597D.pnach index 0a07a988..a00a9ed0 100644 --- a/patches/SLES-50326_52E0597D.pnach +++ b/patches/SLES-50326_52E0597D.pnach @@ -1,11 +1,16 @@ -gametitle=Max Payne [PAL-M4] (SLES_503.26) +gametitle=Max Payne [PAL-M4] (SLES_503.26) 52E0597D //This pnach corresponds to the main CRC of the game, but it's just meant to activate SLES-50326_C669B63C.pnach [Widescreen 16:9] gsaspectratio=16:9 -author=El_Patas -comment=Widescreen Hack +author=El_Patas & PeterDelta +description=Renders the game in 16:9 aspect ratio -[Mode 480p] +[Remove Blackbars] author=PeterDelta -comment=Forces progressive scan mode 480p at startup. Might need enable 300% EE Overclock \ No newline at end of file +description=Removes black bars in cutscenes + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. Might need EE Overclock at 300% \ No newline at end of file diff --git a/patches/SLES-50326_C669B63C.pnach b/patches/SLES-50326_C669B63C.pnach index 4d757930..13e5c265 100644 --- a/patches/SLES-50326_C669B63C.pnach +++ b/patches/SLES-50326_C669B63C.pnach @@ -1,11 +1,9 @@ -gametitle=Max Payne [PAL-M4] (SLES_503.26) +gametitle=Max Payne [PAL-M4] (SLES_503.26) C669B63C MAIN_P.RUN [Widescreen 16:9] gsaspectratio=16:9 -author=El_Patas -comment=Widescreen Hack - -//Gameplay 16:9 +author=El_Patas & PeterDelta +description=Renders the game in 16:9 aspect ratio //ELF file is called "MAIN_P.RUN" patch=1,EE,0050eae0,word,3c013f40 //00000000 (Increases hor. axis) patch=1,EE,0050eae8,word,4481f000 //00000000 @@ -13,149 +11,19 @@ patch=1,EE,0050eaec,word,0c04821c //00000000 patch=1,EE,0050eaf0,word,00000000 //0c04821c patch=1,EE,0050eaf4,word,461e0003 //00000000 patch=1,EE,0050eb04,word,461e0082 //c68201f8 +patch=1,EE,E0010001,extended,006698A0 //menu main by PeterDelta +patch=1,EE,20CE7B7C,extended,3F400000 + +[Remove Blackbars] +author=PeterDelta +description=Removes black bars in cutscenes +patch=1,EE,001F235C,extended,3C033F40 -[Mode 480p] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode 480p at startup. Might need enable 300% EE Overclock +description=SDTV 480p mode at start. Might need EE Overclock at 300% patch=1,EE,00112060,word,34050050 patch=1,EE,00112064,word,24030002 patch=1,EE,00112068,word,0000000C -patch=1,EE,0011206C,word,03E00008 -patch=1,EE,E00101C0,extended,00A46648 -patch=1,EE,00A46648,extended,000001A3 -patch=1,EE,E00101C0,extended,00AAEE48 -patch=1,EE,00AAEE48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A88248 -patch=1,EE,00A88248,extended,000001A3 -patch=1,EE,E00101C0,extended,0090A288 -patch=1,EE,0090A288,extended,000001A3 -patch=1,EE,E00101C0,extended,00AD9A48 -patch=1,EE,00AD9A48,extended,000001A3 -patch=1,EE,E00101C0,extended,00AB0248 -patch=1,EE,00AB0248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A18E48 -patch=1,EE,00A18E48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A50248 -patch=1,EE,00A50248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A44E48 -patch=1,EE,00A44E48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A83E48 -patch=1,EE,00A83E48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A9F648 -patch=1,EE,00A9F648,extended,000001A3 -patch=1,EE,E00101C0,extended,00A5F248 -patch=1,EE,00A5F248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A4F648 -patch=1,EE,00A4F648,extended,000001A3 -patch=1,EE,E00101C0,extended,00A92648 -patch=1,EE,00A92648,extended,000001A3 -patch=1,EE,E00101C0,extended,009FAE48 -patch=1,EE,009FAE48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A2A248 -patch=1,EE,00A2A248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A3A248 -patch=1,EE,00A3A248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A25E48 -patch=1,EE,00A25E48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A21E48 -patch=1,EE,00A21E48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A53648 -patch=1,EE,00A53648,extended,000001A3 -patch=1,EE,E00101C0,extended,009C8E48 -patch=1,EE,009C8E48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A25A48 -patch=1,EE,00A25A48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A13248 -patch=1,EE,00A13248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A63248 -patch=1,EE,00A63248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A22A48 -patch=1,EE,00A22A48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A94248 -patch=1,EE,00A94248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A4DE48 -patch=1,EE,00A4DE48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A22648 -patch=1,EE,00A22648,extended,000001A3 -patch=1,EE,E00101C0,extended,009F7648 -patch=1,EE,009F7648,extended,000001A3 -patch=1,EE,E00101C0,extended,00A67248 -patch=1,EE,00A67248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A62248 -patch=1,EE,00A62248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A4B248 -patch=1,EE,00A4B248,extended,000001A3 -patch=1,EE,E00101C0,extended,00AB4248 -patch=1,EE,00AB4248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A0F248 -patch=1,EE,00A0F248,extended,000001A3 -patch=1,EE,E00101C0,extended,009DA648 -patch=1,EE,009DA648,extended,000001A3 -patch=1,EE,E00101C0,extended,009F8E48 -patch=1,EE,009F8E48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A12E48 -patch=1,EE,00A12E48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A2EA48 -patch=1,EE,00A2EA48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A1BA48 -patch=1,EE,00A1BA48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A6CA48 -patch=1,EE,00A6CA48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A53248 -patch=1,EE,00A53248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A3B248 -patch=1,EE,00A3B248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A32A48 -patch=1,EE,00A32A48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A7DE48 -patch=1,EE,00A7DE48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A52A48 -patch=1,EE,00A52A48,extended,000001A3 -patch=1,EE,E00101C0,extended,009E5248 -patch=1,EE,009E5248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A3AE48 -patch=1,EE,00A3AE48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A6F248 -patch=1,EE,00A6F248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A4CE48 -patch=1,EE,00A4CE48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A17648 -patch=1,EE,00A17648,extended,000001A3 -patch=1,EE,E00101C0,extended,00A30648 -patch=1,EE,00A30648,extended,000001A3 -patch=1,EE,E00101C0,extended,00A95A48 -patch=1,EE,00A95A48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A65E48 -patch=1,EE,00A65E48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A5FE48 -patch=1,EE,00A5FE48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A55E48 -patch=1,EE,00A55E48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A75E48 -patch=1,EE,00A75E48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A67A48 -patch=1,EE,00A67A48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A4BA48 -patch=1,EE,00A4BA48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A05648 -patch=1,EE,00A05648,extended,000001A3 -patch=1,EE,E00101C0,extended,00A01648 -patch=1,EE,00A01648,extended,000001A3 -patch=1,EE,E00101C0,extended,00AAAA48 -patch=1,EE,00AAAA48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A43248 -patch=1,EE,00A43248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A2FE48 -patch=1,EE,00A2FE48,extended,000001A3 -patch=1,EE,E00101C0,extended,009CAE48 -patch=1,EE,009CAE48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A0E248 -patch=1,EE,00A0E248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A24648 -patch=1,EE,00A24648,extended,000001A3 -patch=1,EE,E00101C0,extended,00A1CA48 -patch=1,EE,00A1CA48,extended,000001A3 -patch=1,EE,E00101C0,extended,00A77248 -patch=1,EE,00A77248,extended,000001A3 -patch=1,EE,E00101C0,extended,00A38A48 -patch=1,EE,00A38A48,extended,000001A3 \ No newline at end of file +patch=1,EE,0011206C,word,03E00008 \ No newline at end of file diff --git a/patches/SLES-50335_52638022.pnach b/patches/SLES-50335_52638022.pnach index 6b1cc020..c74feb97 100644 --- a/patches/SLES-50335_52638022.pnach +++ b/patches/SLES-50335_52638022.pnach @@ -1,7 +1,14 @@ -gametitle=Rune - Viking Warlord (PAL-E) SLES-50335 7DB392C5 secondary crc 52638022 +gametitle=Rune - Viking Warlord (PAL-E) SLES-50335 52638022 GAME.ELF -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,E001FFFD,extended,001307B0 -patch=1,EE,201307B0,extended,00000000 //1440FFFD \ No newline at end of file +description=Might need EE Overclock at 180%. +patch=1,EE,001307AC,extended,28420001 //28420002 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,00367134,word,24110000 +patch=1,EE,00367138,word,24120050 +patch=1,EE,00367140,word,24130001 \ No newline at end of file diff --git a/patches/SLES-50335_7DB392C5.pnach b/patches/SLES-50335_7DB392C5.pnach index 9609cc5d..a23950a6 100644 --- a/patches/SLES-50335_7DB392C5.pnach +++ b/patches/SLES-50335_7DB392C5.pnach @@ -1,6 +1,11 @@ -gametitle=Rune - Viking Warlord (PAL-E) SLES-50335 7DB392C5 secondary crc 52638022 +gametitle=Rune - Viking Warlord (PAL-E) SLES-50335 7DB392C5 //Corresponds to the main crc to activate the secondary crc 52638022 called GAME.ELF -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. \ No newline at end of file +description=Might need EE Overclock at 180%. + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. \ No newline at end of file diff --git a/patches/SLES-50339_7DB392C5.pnach b/patches/SLES-50339_7DB392C5.pnach index e184b5c0..d63fa3f1 100644 --- a/patches/SLES-50339_7DB392C5.pnach +++ b/patches/SLES-50339_7DB392C5.pnach @@ -1,6 +1,11 @@ -gametitle=Rune - Viking Warlord (PAL-S) SLES-50339 7DB392C5 secondary crc D51BA097 +gametitle=Rune - Viking Warlord (PAL-S) SLES-50339 7DB392C5 //Corresponds to the main crc to activate the secondary crc D51BA097 called GAME.ELF -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. \ No newline at end of file +description=Might need EE Overclock at 180%. + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. \ No newline at end of file diff --git a/patches/SLES-50339_D51BA097.pnach b/patches/SLES-50339_D51BA097.pnach index 2874de7e..7bca46d9 100644 --- a/patches/SLES-50339_D51BA097.pnach +++ b/patches/SLES-50339_D51BA097.pnach @@ -1,7 +1,14 @@ -gametitle=Rune - Viking Warlord (PAL-S) SLES-50339 7DB392C5 secondary crc D51BA097 +gametitle=Rune - Viking Warlord (PAL-S) SLES-50339 D51BA097 GAME.ELF -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,E001FFFD,extended,00130868 -patch=1,EE,20130868,extended,00000000 //1440FFFD \ No newline at end of file +description=Might need EE Overclock at 180%. +patch=1,EE,00130864,extended,28420001 //28420002 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,003671EC,word,24110000 +patch=1,EE,003671F0,word,24120050 +patch=1,EE,003671F8,word,24130001 \ No newline at end of file diff --git a/patches/SLES-50350_368E1540.pnach b/patches/SLES-50350_368E1540.pnach index 3fed09f8..14e3f120 100644 --- a/patches/SLES-50350_368E1540.pnach +++ b/patches/SLES-50350_368E1540.pnach @@ -1,10 +1,9 @@ -gametitle=Disney's Tarzan - Freeride (E)(SLES-50350) +gametitle=Disney's Tarzan - Freeride (PAL-M) (SLES-50350) 368E1540 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa - -//Widescreen hack 16:9 +author=Arapapa +description=Renders the game in 16:9 aspect ratio //Zoom //a80020c6 003f023c 00088244 @@ -21,3 +20,7 @@ patch=1,EE,004966dc,word,461e0842 patch=1,EE,004966e0,word,080da6a0 +[50 FPS] +author=PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,006B00B8,word,00000000 //00000001 \ No newline at end of file diff --git a/patches/SLES-50364_6C93AB81.pnach b/patches/SLES-50364_6C93AB81.pnach index 686065b5..39ca7eb5 100644 --- a/patches/SLES-50364_6C93AB81.pnach +++ b/patches/SLES-50364_6C93AB81.pnach @@ -2,7 +2,7 @@ gametitle=City Crisis (E)(SLES-50364) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50366_BA248FC3.pnach b/patches/SLES-50366_BA248FC3.pnach index 2860a78c..0b5cb37c 100644 --- a/patches/SLES-50366_BA248FC3.pnach +++ b/patches/SLES-50366_BA248FC3.pnach @@ -2,7 +2,7 @@ gametitle=Star Wars: Racer Revenge [PAL] (SLES_503.66) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0013BCD0,word,3C023F40 //3C023F80 Zoom diff --git a/patches/SLES-50382_6B149273.pnach b/patches/SLES-50382_6B149273.pnach index 5a653a05..79bc2ca3 100644 --- a/patches/SLES-50382_6B149273.pnach +++ b/patches/SLES-50382_6B149273.pnach @@ -1,13 +1,12 @@ -gametitle=Silent Hill 2 (PAL-M6) (SLES-50382) +gametitle=Silent Hill 2 (PAL-M6) (SLES-50382) 6B149273 [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen Hack -patch=1,EE,210E4C14,extended,43A8F5C3 // 43E147AE X-RES -//patch=1,EE,210E4C18,extended,43E00000 // 43E00000 Y-RES +description=Renders the game in 16:9 aspect ratio +patch=1,EE,001773C8,word,3C0243C0 // 3C024400 - X-FoV [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,001A3860,word,10000009 //14400009 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,001A3860,word,10400009 //14400009 \ No newline at end of file diff --git a/patches/SLES-50390_250353F1.pnach b/patches/SLES-50390_250353F1.pnach index 71c3916e..36e5b415 100644 --- a/patches/SLES-50390_250353F1.pnach +++ b/patches/SLES-50390_250353F1.pnach @@ -1,18 +1,20 @@ -gametitle=Driven (E)(SLES-50390) +gametitle=Driven (PAL-M) (SLES-50390) 250353F1 -[Widescreen 16:9] -gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa - -//Widescreen hack 16:9 +//[Widescreen 16:9] +//gsaspectratio=16:9 +//author=Arapapa +//Missing render fix //X-Fov -patch=1,EE,001c00d8,word,08030000 - -patch=1,EE,000c0000,word,46010043 -patch=1,EE,000c0004,word,3c013f40 -patch=1,EE,000c0008,word,4481f000 -patch=1,EE,000c000c,word,461e0842 -patch=1,EE,000c0010,word,08070037 +//patch=1,EE,001c00d8,word,08030000 +//patch=1,EE,000c0000,word,46010043 +//patch=1,EE,000c0004,word,3c013f40 +//patch=1,EE,000c0008,word,4481f000 +//patch=1,EE,000c000c,word,461e0842 +//patch=1,EE,000c0010,word,08070037 +[Remove blur] +author=PeterDelta +description=Remove blur effect +patch=1,EE,00816664,word,00000003 //00000002 \ No newline at end of file diff --git a/patches/SLES-50396_B6F7BA5.pnach b/patches/SLES-50396_B6F7BA5.pnach index 60b06bea..4a1c862a 100644 --- a/patches/SLES-50396_B6F7BA5.pnach +++ b/patches/SLES-50396_B6F7BA5.pnach @@ -2,7 +2,7 @@ gametitle=Mike Tyson Heavyweight Boxing (E)(SLES-50396) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50397_61F79C5A.pnach b/patches/SLES-50397_61F79C5A.pnach new file mode 100644 index 00000000..e4247538 --- /dev/null +++ b/patches/SLES-50397_61F79C5A.pnach @@ -0,0 +1,35 @@ +gametitle=Prisoner of War (PAL-M5) (SLES-50397) 61F79C5A COLDITZ.ELF + +[Widescreen 16:9] +gsaspectratio=16:9 +author=ElHecht +description=Renders the game in 16:9 aspect ratio +patch=1,EE,0039c3dc,word,0c1127e8 // 3c013f80 +patch=1,EE,0039c3e0,word,00000000 // 4481a000 +patch=1,EE,00449fa0,word,3c013f40 // 00000000 hor fov +patch=1,EE,00449fa8,word,4481a000 // 00000000 +patch=1,EE,00449fac,word,46146b42 // 00000000 +patch=1,EE,00449fb0,word,4614a503 // 00000000 +patch=1,EE,00449fb4,word,03e00008 // 00000000 +patch=1,EE,0013e6fc,word,3c0140c0 // 3c013f99 renderfix +patch=1,EE,001a6b60,word,3c013f2b // 3c013f00 renderfix + +[Widescreen/16:10] +gsaspectratio=Stretch +author=ElHecht +description=Renders the game in 16:10 aspect ratio +patch=1,EE,0039c3dc,word,0c1127e8 +patch=1,EE,0039c3e0,word,00000000 +patch=1,EE,00449fa0,word,3c013f55 +patch=1,EE,00449fa4,word,34215555 +patch=1,EE,00449fa8,word,4481a000 +patch=1,EE,00449fac,word,46146b42 +patch=1,EE,00449fb0,word,4614a503 +patch=1,EE,00449fb4,word,03e00008 +patch=1,EE,0013e6fc,word,3c0140a0 +patch=1,EE,001a6b60,word,3c013f1a + +[Remove Blackbars] +author=PeterDelta +description=Remove black bars from cutscenes +patch=1,EE,00684880,word,00000000 \ No newline at end of file diff --git a/patches/SLES-50397_BAFCDA66.pnach b/patches/SLES-50397_BAFCDA66.pnach index 433bf282..f4832f9d 100644 --- a/patches/SLES-50397_BAFCDA66.pnach +++ b/patches/SLES-50397_BAFCDA66.pnach @@ -1,33 +1,16 @@ -gametitle=Prisoner of War (PAL-M5) (SLES-50397) +gametitle=Prisoner of War (PAL-M5) (SLES-50397) BAFCDA66 +//Corresponds to the main crc to activate the crc 61F79C5A called COLDITZ.ELF [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht - -// The patches cause the game/emulator to crash to desktop -// comment all of them as commenting only one results in the game locking up instead. - -// 16:9 -//patch=1,EE,0039c3dc,word,0c1127e8 // 3c013f80 -//patch=1,EE,0039c3e0,word,00000000 // 4481a000 -//patch=1,EE,00449fa0,word,3c013f40 // 00000000 hor fov -//patch=1,EE,00449fa8,word,4481a000 // 00000000 -//patch=1,EE,00449fac,word,46146b42 // 00000000 -//patch=1,EE,00449fb0,word,4614a503 // 00000000 -//patch=1,EE,00449fb4,word,03e00008 // 00000000 -//patch=1,EE,0013e6fc,word,3c0140c0 // 3c013f99 renderfix -//patch=1,EE,001a6b60,word,3c013f2b // 3c013f00 renderfix - -//16:10 -//patch=1,EE,0039c3dc,word,0c1127e8 // 3c013f80 -//patch=1,EE,0039c3e0,word,00000000 // 4481a000 -//patch=1,EE,00449fa0,word,3c013f55 // 00000000 -//patch=1,EE,00449fa4,word,34215555 // 00000000 -//patch=1,EE,00449fa8,word,4481a000 // 00000000 -//patch=1,EE,00449fac,word,46146b42 // 00000000 -//patch=1,EE,00449fb0,word,4614a503 // 00000000 -//patch=1,EE,00449fb4,word,03e00008 // 00000000 -//patch=1,EE,0013e6fc,word,3c0140a0 // 3c013f99 renderfix -//patch=1,EE,001a6b60,word,3c013f1a // 3c013f00 renderfix +author=ElHecht +description=Renders the game in 16:9 aspect ratio +[Widescreen/16:10] +gsaspectratio=Stretch +author=ElHecht +description=Renders the game in 16:10 aspect ratio +[Remove Blackbars] +author=PeterDelta +description=Remove black bars from cutscenes \ No newline at end of file diff --git a/patches/SLES-50400_293D99B2.pnach b/patches/SLES-50400_293D99B2.pnach index 4df4c590..327b04d5 100644 --- a/patches/SLES-50400_293D99B2.pnach +++ b/patches/SLES-50400_293D99B2.pnach @@ -2,7 +2,7 @@ gametitle=Shaun Palmer's Pro Snowboarder [PAL] (SLES_504.00) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0019ECB8,word,3C024455 //3C024420 diff --git a/patches/SLES-50412_7220EA06.pnach b/patches/SLES-50412_7220EA06.pnach index db1da4a4..64911029 100644 --- a/patches/SLES-50412_7220EA06.pnach +++ b/patches/SLES-50412_7220EA06.pnach @@ -2,7 +2,7 @@ gametitle=Pro Evolution Soccer (E)(SLES-50412)(v2.00) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-50419_833B70DB.pnach b/patches/SLES-50419_833B70DB.pnach new file mode 100644 index 00000000..c1057f00 --- /dev/null +++ b/patches/SLES-50419_833B70DB.pnach @@ -0,0 +1,6 @@ +gametitle=Supercar Street Challenge PAL-E SLES-50419 DA009310 secundary CRC 833B70DB + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,203487B4,extended,24020002 //24020001 \ No newline at end of file diff --git a/patches/SLES-50419_DA009310.pnach b/patches/SLES-50419_DA009310.pnach new file mode 100644 index 00000000..a397b7fe --- /dev/null +++ b/patches/SLES-50419_DA009310.pnach @@ -0,0 +1,6 @@ +gametitle=Supercar Street Challenge PAL-E SLES-50419 DA009310 secundary CRC 833B70DB +//Corresponds to the main crc to activate the secondary crc 833B70DB called CCRG.ELF + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. \ No newline at end of file diff --git a/patches/SLES-50423_063FF7DB.pnach b/patches/SLES-50423_063FF7DB.pnach index a274e469..782ff57b 100644 --- a/patches/SLES-50423_063FF7DB.pnach +++ b/patches/SLES-50423_063FF7DB.pnach @@ -2,7 +2,7 @@ gametitle=F1 2001 (E)(SLES-50423) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50428_72BEA663.pnach b/patches/SLES-50428_72BEA663.pnach index a79f404a..4cc8d5f2 100644 --- a/patches/SLES-50428_72BEA663.pnach +++ b/patches/SLES-50428_72BEA663.pnach @@ -2,7 +2,7 @@ gametitle=MX 2002 featuring Ricky Carmichael (E)(SLES-50428) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50429_E0CD9A1D.pnach b/patches/SLES-50429_E0CD9A1D.pnach index 43698d4e..c0a65415 100644 --- a/patches/SLES-50429_E0CD9A1D.pnach +++ b/patches/SLES-50429_E0CD9A1D.pnach @@ -2,7 +2,7 @@ gametitle=Alex Ferguson's Player Manager 2001 (E)(SLES-50429) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-50434_EBB067E7.pnach b/patches/SLES-50434_EBB067E7.pnach index 8a9bbfb4..7d8506aa 100644 --- a/patches/SLES-50434_EBB067E7.pnach +++ b/patches/SLES-50434_EBB067E7.pnach @@ -2,5 +2,5 @@ gametitle=Army Men - RTS (PAL-E) SLES-50434 EBB067E7 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,003F57F3,word,00000000 //00000001 \ No newline at end of file diff --git a/patches/SLES-50436_7EF08A6F.pnach b/patches/SLES-50436_7EF08A6F.pnach index 6605d9a7..39f98852 100644 --- a/patches/SLES-50436_7EF08A6F.pnach +++ b/patches/SLES-50436_7EF08A6F.pnach @@ -2,7 +2,7 @@ gametitle=Tony Hawk's Pro Skater 3 (PAL-F) [SLES-50436] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Catarax +author=Catarax patch=1,EE,0017a210,word,3c013ff3 //3c013fb6 patch=1,EE,0017c1a8,word,3c013ff3 //3c013fb6 diff --git a/patches/SLES-50438_CF012100.pnach b/patches/SLES-50438_CF012100.pnach index bcc02e59..f92a606c 100644 --- a/patches/SLES-50438_CF012100.pnach +++ b/patches/SLES-50438_CF012100.pnach @@ -2,7 +2,7 @@ gametitle=Motor Mayhem (E)(SLES-50438) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50444_802EBFF7.pnach b/patches/SLES-50444_802EBFF7.pnach index 55e014ed..55ac9b78 100644 --- a/patches/SLES-50444_802EBFF7.pnach +++ b/patches/SLES-50444_802EBFF7.pnach @@ -3,10 +3,10 @@ gametitle=Portal Runner (PAL-M) SLES-50444 802EBFF7 [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen Hack 16:9 +description=Renders the game in 16:9 aspect ratio patch=1,EE,0030AD90,word,3FA1C40E //3FD7B013 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0016FD48,word,2C630001 //2C630002 \ No newline at end of file diff --git a/patches/SLES-50446_48553EAF.pnach b/patches/SLES-50446_48553EAF.pnach index 62c66d30..f5d53491 100644 --- a/patches/SLES-50446_48553EAF.pnach +++ b/patches/SLES-50446_48553EAF.pnach @@ -2,7 +2,7 @@ gametitle=Shadow Man - 2econd Coming (E)(SLES-50446) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50447_E9454E84.pnach b/patches/SLES-50447_E9454E84.pnach index 40a14c35..b66016f7 100644 --- a/patches/SLES-50447_E9454E84.pnach +++ b/patches/SLES-50447_E9454E84.pnach @@ -2,7 +2,7 @@ gametitle=All-Star Baseball 2003 (E)(SLES-50447) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Y-fov diff --git a/patches/SLES-50462_0C4D62D7.pnach b/patches/SLES-50462_0C4D62D7.pnach index 68fd48c6..6f6d604d 100644 --- a/patches/SLES-50462_0C4D62D7.pnach +++ b/patches/SLES-50462_0C4D62D7.pnach @@ -2,7 +2,7 @@ gametitle=Pro Evolution Soccer (I)(SLES-50462)(v2.00) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-50472_51D8A6A9.pnach b/patches/SLES-50472_51D8A6A9.pnach index dd4338ce..476f9033 100644 --- a/patches/SLES-50472_51D8A6A9.pnach +++ b/patches/SLES-50472_51D8A6A9.pnach @@ -2,7 +2,7 @@ gametitle=GTC Africa (PAL-M5) (SLES-50472) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001009dc,word,3c013f40 // 00000000 diff --git a/patches/SLES-50477_63353AA4.pnach b/patches/SLES-50477_63353AA4.pnach index 0b1f88dd..18612f5f 100644 --- a/patches/SLES-50477_63353AA4.pnach +++ b/patches/SLES-50477_63353AA4.pnach @@ -2,7 +2,7 @@ gametitle=WWF SmackDown - Just Bring It (PAL-E) (SLES-50477) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0010319c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-50479_A9E852B1.pnach b/patches/SLES-50479_A9E852B1.pnach index 4556961b..432e172f 100644 --- a/patches/SLES-50479_A9E852B1.pnach +++ b/patches/SLES-50479_A9E852B1.pnach @@ -2,7 +2,7 @@ gametitle=Turok - Evolution (E)(SLES-50479) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50480_D6A0D7A5.pnach b/patches/SLES-50480_D6A0D7A5.pnach index 6b84ba88..9a1d1198 100644 --- a/patches/SLES-50480_D6A0D7A5.pnach +++ b/patches/SLES-50480_D6A0D7A5.pnach @@ -2,7 +2,7 @@ gametitle=Aggressive Inline (PAL-M4) (SLES-50480) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0010114c,word,3c013f40 // 3c013f80 hor fov diff --git a/patches/SLES-50486_66CFAB3C.pnach b/patches/SLES-50486_66CFAB3C.pnach index d9f5f90d..abdae45d 100644 --- a/patches/SLES-50486_66CFAB3C.pnach +++ b/patches/SLES-50486_66CFAB3C.pnach @@ -2,7 +2,7 @@ gametitle=Splashdown [PAL-M5] (SLES_504.86) (Original game 66CFAB3C) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Sergx12 and El_Patas +author=sergx12 and El_Patas //Gameplay 16:9 patch=1,EE,00213EB4,word,3C023FE4 //3C023FAA Y-FOV diff --git a/patches/SLES-50486_E9C544F7.pnach b/patches/SLES-50486_E9C544F7.pnach index 164b9465..b13f5b3e 100644 --- a/patches/SLES-50486_E9C544F7.pnach +++ b/patches/SLES-50486_E9C544F7.pnach @@ -1,9 +1,9 @@ -gametitle=Splashdown [PAL-M5] (SLES_504.86) +gametitle=Splashdown [PAL-M5] (SLES_504.86) E9C544F7 [Widescreen 16:9] gsaspectratio=16:9 author=Sergx12 and El_Patas -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Gameplay 16:9 patch=1,EE,00213EB4,word,3C023FE4 //3C023FAA Y-FOV patch=1,EE,00213EB8,word,34428E39 //3442AAAB @@ -13,7 +13,15 @@ patch=1,EE,002D94FC,word,3C023CAC //3C023C8E Water fix patch=1,EE,002D9500,word,3442A21D //3442FA34 patch=1,EE,00214E00,word,3C033F2B //3C033F00 Fix graphical glitch 2 player vertical split screen -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0062A090,word,00000002 //00000001 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,00397524,word,24110000 +patch=1,EE,00397528,word,24120050 +patch=1,EE,00397530,word,24130001 \ No newline at end of file diff --git a/patches/SLES-50487_5E641834.pnach b/patches/SLES-50487_5E641834.pnach index 68843c37..ba908ebf 100644 --- a/patches/SLES-50487_5E641834.pnach +++ b/patches/SLES-50487_5E641834.pnach @@ -1,17 +1,14 @@ -gametitle=Looney Tunes - Space Race (E)(SLES-50487) +gametitle=Looney Tunes - Space Race (PAL-M) (SLES-50487) 5E641834 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen hack - -//Widescreen hack 16:9 - +description=Renders the game in 16:9 aspect ratio //X-Fov //80bf023c e001b027 patch=1,EE,002ac728,word,3c02bf40 //3c02bf80 [50/60 FPS] author=PeterDelta -comment=Patches the game to run at 50/60 FPS (Might need 130% EE Overclock to be stable). +description=Might need EE Overclock at 130%. patch=1,EE,003881F4,word,00000001 \ No newline at end of file diff --git a/patches/SLES-50498_BEBC87B1.pnach b/patches/SLES-50498_BEBC87B1.pnach index 0ca735b5..8b3d3344 100644 --- a/patches/SLES-50498_BEBC87B1.pnach +++ b/patches/SLES-50498_BEBC87B1.pnach @@ -2,7 +2,7 @@ gametitle=Grandia II (PAL-E) (SLES-50498) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // // jump to code-inject patch=1,EE,0025ca80,word,0c101c0d // 3c013f80 diff --git a/patches/SLES-50503_7193F81D.pnach b/patches/SLES-50503_7193F81D.pnach index ca879521..3050b066 100644 --- a/patches/SLES-50503_7193F81D.pnach +++ b/patches/SLES-50503_7193F81D.pnach @@ -2,7 +2,7 @@ gametitle=Weakest Link (E)(SLES-50503) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50504_F9E3CF90.pnach b/patches/SLES-50504_F9E3CF90.pnach index 5ce0838c..e921cb08 100644 --- a/patches/SLES-50504_F9E3CF90.pnach +++ b/patches/SLES-50504_F9E3CF90.pnach @@ -3,17 +3,16 @@ gametitle=Half-Life (PAL-E) SLES-50504 F9E3CF90 [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -comment=Widescreen Hack. Select aspect ratio standard 4:3 in game +description=Widescreen Hack. Select aspect ratio standard 4:3 in game patch=1,EE,002aa624,extended,3c013fe3 patch=1,EE,002aa628,extended,34218e38 patch=1,EE,002a9e60,extended,3c013f2b -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps -patch=1,EE,002EEFA0,word,34050052 +description=SDTV 480p mode at start. +patch=1,EE,002EEFA0,word,34050050 patch=1,EE,002EEFA4,word,24030002 patch=1,EE,002EEFA8,word,0000000C -patch=1,EE,002EEFAC,word,03E00008 -patch=1,EE,003A97D8,word,02058290 -patch=1,EE,003A9818,word,02058290 \ No newline at end of file +patch=1,EE,002EEFAC,word,03E00008 \ No newline at end of file diff --git a/patches/SLES-50505_F9E3CF90.pnach b/patches/SLES-50505_F9E3CF90.pnach index 35f5089c..06c26c3b 100644 --- a/patches/SLES-50505_F9E3CF90.pnach +++ b/patches/SLES-50505_F9E3CF90.pnach @@ -3,17 +3,16 @@ gametitle=Half-Life (PAL-G) SLES-50505 F9E3CF90 [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -comment=Widescreen Hack. Select aspect ratio standard 4:3 in game +description=Widescreen Hack. Select aspect ratio standard 4:3 in game patch=1,EE,002aa624,extended,3c013fe3 patch=1,EE,002aa628,extended,34218e38 patch=1,EE,002a9e60,extended,3c013f2b -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps -patch=1,EE,002EEFA0,word,34050052 +description=SDTV 480p mode at start. +patch=1,EE,002EEFA0,word,34050050 patch=1,EE,002EEFA4,word,24030002 patch=1,EE,002EEFA8,word,0000000C -patch=1,EE,002EEFAC,word,03E00008 -patch=1,EE,003A97D8,word,02058290 -patch=1,EE,003A9818,word,02058290 \ No newline at end of file +patch=1,EE,002EEFAC,word,03E00008 \ No newline at end of file diff --git a/patches/SLES-50507_F9E3CF90.pnach b/patches/SLES-50507_F9E3CF90.pnach index 169c2e7f..d2029854 100644 --- a/patches/SLES-50507_F9E3CF90.pnach +++ b/patches/SLES-50507_F9E3CF90.pnach @@ -3,17 +3,16 @@ gametitle=Half-Life (PAL-F) SLES-50507 F9E3CF90 [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -comment=Widescreen Hack. Select aspect ratio standard 4:3 in game +description=Widescreen Hack. Select aspect ratio standard 4:3 in game patch=1,EE,002aa624,extended,3c013fe3 patch=1,EE,002aa628,extended,34218e38 patch=1,EE,002a9e60,extended,3c013f2b -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps -patch=1,EE,002EEFA0,word,34050052 +description=SDTV 480p mode at start. +patch=1,EE,002EEFA0,word,34050050 patch=1,EE,002EEFA4,word,24030002 patch=1,EE,002EEFA8,word,0000000C -patch=1,EE,002EEFAC,word,03E00008 -patch=1,EE,003A97D8,word,02058290 -patch=1,EE,003A9818,word,02058290 \ No newline at end of file +patch=1,EE,002EEFAC,word,03E00008 \ No newline at end of file diff --git a/patches/SLES-50508_F9E3CF90.pnach b/patches/SLES-50508_F9E3CF90.pnach index cfdabe8c..b4927b98 100644 --- a/patches/SLES-50508_F9E3CF90.pnach +++ b/patches/SLES-50508_F9E3CF90.pnach @@ -3,17 +3,16 @@ gametitle=Half-Life (PAL-I) SLES-50508 F9E3CF90 [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -comment=Widescreen Hack. Select aspect ratio standard 4:3 in game +description=Widescreen Hack. Select aspect ratio standard 4:3 in game patch=1,EE,002aa624,word,3c013fe3 patch=1,EE,002aa628,word,34218e38 patch=1,EE,002a9e60,word,3c013f2b -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps -patch=1,EE,002EEFA0,word,34050052 +description=SDTV 480p mode at start. +patch=1,EE,002EEFA0,word,34050050 patch=1,EE,002EEFA4,word,24030002 patch=1,EE,002EEFA8,word,0000000C -patch=1,EE,002EEFAC,word,03E00008 -patch=1,EE,003A97D8,word,02058290 -patch=1,EE,003A9818,word,02058290 \ No newline at end of file +patch=1,EE,002EEFAC,word,03E00008 \ No newline at end of file diff --git a/patches/SLES-50509_F9E3CF90.pnach b/patches/SLES-50509_F9E3CF90.pnach index 0b291c29..7313948f 100644 --- a/patches/SLES-50509_F9E3CF90.pnach +++ b/patches/SLES-50509_F9E3CF90.pnach @@ -3,17 +3,16 @@ gametitle=Half-Life (PAL-S) SLES-50509 F9E3CF90 [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -comment=Widescreen Hack. Select aspect ratio standard 4:3 in game +description=Widescreen Hack. Select aspect ratio standard 4:3 in game patch=1,EE,002aa624,word,3c013fe3 patch=1,EE,002aa628,word,34218e38 patch=1,EE,002a9e60,word,3c013f2b -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps -patch=1,EE,002EEFA0,word,34050052 +description=SDTV 480p mode at start. +patch=1,EE,002EEFA0,word,34050050 patch=1,EE,002EEFA4,word,24030002 patch=1,EE,002EEFA8,word,0000000C -patch=1,EE,002EEFAC,word,03E00008 -patch=1,EE,003A97D8,word,02058290 -patch=1,EE,003A9818,word,02058290 \ No newline at end of file +patch=1,EE,002EEFAC,word,03E00008 \ No newline at end of file diff --git a/patches/SLES-50510_B9254C98.pnach b/patches/SLES-50510_B9254C98.pnach index 6ba56e15..9674015d 100644 --- a/patches/SLES-50510_B9254C98.pnach +++ b/patches/SLES-50510_B9254C98.pnach @@ -1,9 +1,9 @@ -gametitle=The Mummy Returns (E)(SLES-50510) +gametitle=The Mummy Returns (PAL-M) (SLES-50510) B9254C98 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen hack +description=Renders the game in 16:9 aspect ratio //X-Fov //640015c6 58000cc6 patch=1,EE,001f9a94,word,08030000 @@ -16,5 +16,5 @@ patch=1,EE,000c0010,word,0807e6a6 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00161A38,word,3C01020F //3C01002D \ No newline at end of file diff --git a/patches/SLES-50533_6D050005.pnach b/patches/SLES-50533_6D050005.pnach index c70b3b18..161554ec 100644 --- a/patches/SLES-50533_6D050005.pnach +++ b/patches/SLES-50533_6D050005.pnach @@ -2,7 +2,7 @@ gametitle=Sunny Garcia Surfing (E)(SLES-50533) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50541_FFC911D0.pnach b/patches/SLES-50541_FFC911D0.pnach index 5ade67e5..2e4d9de8 100644 --- a/patches/SLES-50541_FFC911D0.pnach +++ b/patches/SLES-50541_FFC911D0.pnach @@ -2,7 +2,7 @@ gametitle=Capcom vs SNK 2: Mark of the Millennium 2001 [PAL] (SLES_505.41) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00142E50,word,3C023FAA //3C023F80 (Increases hor. axis) diff --git a/patches/SLES-50544_EB20EAA6.pnach b/patches/SLES-50544_EB20EAA6.pnach index 4500f82d..0df4b0ba 100644 --- a/patches/SLES-50544_EB20EAA6.pnach +++ b/patches/SLES-50544_EB20EAA6.pnach @@ -2,7 +2,7 @@ gametitle=Jet Ion GP (E)(SLES-50544) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50546_306D3169.pnach b/patches/SLES-50546_306D3169.pnach index 45afeb62..e4c77585 100644 --- a/patches/SLES-50546_306D3169.pnach +++ b/patches/SLES-50546_306D3169.pnach @@ -2,7 +2,7 @@ gametitle=LMA Manager 2002 (E)(SLES-50546) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50548_83F2A231.pnach b/patches/SLES-50548_83F2A231.pnach index e2334e51..a9609b9d 100644 --- a/patches/SLES-50548_83F2A231.pnach +++ b/patches/SLES-50548_83F2A231.pnach @@ -2,7 +2,7 @@ gametitle=BDFL Manager 2002 (G)(SLES-50548) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50552_28C1B27B.pnach b/patches/SLES-50552_28C1B27B.pnach index 830b2340..ba8085a2 100644 --- a/patches/SLES-50552_28C1B27B.pnach +++ b/patches/SLES-50552_28C1B27B.pnach @@ -2,7 +2,7 @@ gametitle=Jet Ski Riders [PAL] (SLES_505.52) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Causes a Zoom in the 2 Player mode diff --git a/patches/SLES-50554_019420F7.pnach b/patches/SLES-50554_019420F7.pnach index b0c01b99..d3439635 100644 --- a/patches/SLES-50554_019420F7.pnach +++ b/patches/SLES-50554_019420F7.pnach @@ -2,7 +2,7 @@ gametitle=Thunderhawk - Operation Phoenix (PAL)(SLES-50554) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50558_C698846E.pnach b/patches/SLES-50558_C698846E.pnach index bbb92189..f5f71b4d 100644 --- a/patches/SLES-50558_C698846E.pnach +++ b/patches/SLES-50558_C698846E.pnach @@ -2,7 +2,7 @@ gametitle=DSF Fussball Manager 2002 (G)(SLES-50558) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-50572_DC2805BA.pnach b/patches/SLES-50572_DC2805BA.pnach index 6fff6ea5..d8e54a0c 100644 --- a/patches/SLES-50572_DC2805BA.pnach +++ b/patches/SLES-50572_DC2805BA.pnach @@ -2,7 +2,7 @@ gametitle=Robot Wars - Arenas of Destruction (E)(SLES-50572) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50575_D76C3A80.pnach b/patches/SLES-50575_D76C3A80.pnach index cbfd36d1..56f19c99 100644 --- a/patches/SLES-50575_D76C3A80.pnach +++ b/patches/SLES-50575_D76C3A80.pnach @@ -2,7 +2,7 @@ gametitle=Dark Summit (E)(SLES-50575) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50586_3EB3EAC8.pnach b/patches/SLES-50586_3EB3EAC8.pnach index 81fb9689..d02ab80a 100644 --- a/patches/SLES-50586_3EB3EAC8.pnach +++ b/patches/SLES-50586_3EB3EAC8.pnach @@ -2,7 +2,7 @@ gametitle=ESPN Winter Sports 2002 (E)(SLES-50586) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50592_18F2A070.pnach b/patches/SLES-50592_18F2A070.pnach index b57806f6..432045d3 100644 --- a/patches/SLES-50592_18F2A070.pnach +++ b/patches/SLES-50592_18F2A070.pnach @@ -2,7 +2,7 @@ gametitle=The Operative - No One Lives Forever (E)(SLES-50592) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50613_B9A91CA8.pnach b/patches/SLES-50613_B9A91CA8.pnach index 075a5cf9..ebad296e 100644 --- a/patches/SLES-50613_B9A91CA8.pnach +++ b/patches/SLES-50613_B9A91CA8.pnach @@ -2,7 +2,7 @@ gametitle=Woody Woodpecker (E)(SLES-50613) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50619_9C11C258.pnach b/patches/SLES-50619_9C11C258.pnach index 2368dc3c..9c89f2e4 100644 --- a/patches/SLES-50619_9C11C258.pnach +++ b/patches/SLES-50619_9C11C258.pnach @@ -2,7 +2,7 @@ gametitle=Jonny Moseley Mad Trix (E)(SLES-50619) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50620_9817C177.pnach b/patches/SLES-50620_9817C177.pnach index 8fe35411..34a3b4bf 100644 --- a/patches/SLES-50620_9817C177.pnach +++ b/patches/SLES-50620_9817C177.pnach @@ -2,7 +2,7 @@ gametitle=Jonny Moseley Mad Trix (E)(SLES-50620) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50628_063CED6E.pnach b/patches/SLES-50628_063CED6E.pnach index 05018ae3..8d6ed833 100644 --- a/patches/SLES-50628_063CED6E.pnach +++ b/patches/SLES-50628_063CED6E.pnach @@ -1,10 +1,9 @@ -gametitle=The Simpsons - Road Rage (PAL-M5) (SLES-50628) +gametitle=The Simpsons - Road Rage (PAL-M5) (SLES-50628) 063CED6E [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht - -// 16:9 +author=ElHecht +description=Renders the game in 16:9 aspect ratio patch=1,EE,001a1914,word,3c013fc0 // 3c013f9c 1-player zoom patch=1,EE,001a1918,word,34214000 // 342161ab 1-player zoom patch=1,EE,001a1924,word,3c013fe3 // 3c013faa 1-player ver fov @@ -13,9 +12,4 @@ patch=1,EE,001a1928,word,34218e39 // 3421aaab 1-player ver fov patch=1,EE,001a18e0,word,3c013fbb // 3c013f97 2-players zoom patch=1,EE,001a18e4,word,34218000 // 3421e9d9 2-players zoom patch=1,EE,001588ec,word,3c014063 // 3c01402a 2-players ver fov -patch=1,EE,001588f0,word,34218e39 // 3421aaab 2-players ver fov - -// removes black texture glitches in hardware emulation, but brightens screen -patch=1,EE,001c16e4,word,3c013f7f // 3c013f80 - - +patch=1,EE,001588f0,word,34218e39 // 3421aaab 2-players ver fov \ No newline at end of file diff --git a/patches/SLES-50630_F035261E.pnach b/patches/SLES-50630_F035261E.pnach index 261ebe0e..0b1a171f 100644 --- a/patches/SLES-50630_F035261E.pnach +++ b/patches/SLES-50630_F035261E.pnach @@ -2,7 +2,7 @@ gametitle=Dragon Rage (PAL-E) SLES_506.30 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by dieSkaarj +author=dieSkaarj patch=1,EE,2029ef5e,word,00003fab //00003f80 diff --git a/patches/SLES-50631_66EC6EF6.pnach b/patches/SLES-50631_66EC6EF6.pnach index 22f91459..0bb3253c 100644 --- a/patches/SLES-50631_66EC6EF6.pnach +++ b/patches/SLES-50631_66EC6EF6.pnach @@ -2,7 +2,7 @@ gametitle=Dragon Rage [PAL-M2-French-German] (SLES_506.31) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001C1B8C,word,3C013EC6 //3C013F80 Zoom diff --git a/patches/SLES-50636_2E34BD54.pnach b/patches/SLES-50636_2E34BD54.pnach index e87237b5..62a12295 100644 --- a/patches/SLES-50636_2E34BD54.pnach +++ b/patches/SLES-50636_2E34BD54.pnach @@ -2,7 +2,7 @@ gametitle=Centre Court - Hard Hitter (E)(SLES-50636) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50637_FF920E90.pnach b/patches/SLES-50637_FF920E90.pnach index 6a1dd4ac..6fd17bce 100644 --- a/patches/SLES-50637_FF920E90.pnach +++ b/patches/SLES-50637_FF920E90.pnach @@ -2,7 +2,7 @@ gametitle=Pro Rally 2002 (E)(SLES-50637) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50639_3832F5E0.pnach b/patches/SLES-50639_3832F5E0.pnach index a549a0b6..475b2e4b 100644 --- a/patches/SLES-50639_3832F5E0.pnach +++ b/patches/SLES-50639_3832F5E0.pnach @@ -1,12 +1,9 @@ -gametitle=Everblue (PAL)(SLES-50639) +gametitle=Everblue (PAL) (SLES-50639) 3832F5E0 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen Hack - -//Widescreen hack 16:9 - +description=Renders the game in 16:9 aspect ratio //X-fov //803f023c 00688244 0045023c patch=1,EE,0012ae64,word,3c023f40 //3c023f80 @@ -15,4 +12,13 @@ patch=1,EE,0012ae64,word,3c023f40 //3c023f80 //003f023c 00088244 9901013c patch=1,EE,00136b94,word,3c023f30 //3c023f00 +[No-Interlacing] +gsinterlacemode=1 +author=PeterDelta +description=Enable progressive interlacing. +patch=1,EE,001001D4,word,3C050000 +[NTSC Mode] +author=PeterDelta +description=NTSC mode at start. +patch=1,EE,001001F8,word,24120002 \ No newline at end of file diff --git a/patches/SLES-50641_A1021ADC.pnach b/patches/SLES-50641_A1021ADC.pnach index f1c2d1c3..a2c5daf8 100644 --- a/patches/SLES-50641_A1021ADC.pnach +++ b/patches/SLES-50641_A1021ADC.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 3 (PAL-M3) (SLES-50641) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // // 16:9 patch=1,EE,002f42c8,word,3fa00000 // 3f800000 camera zoom diff --git a/patches/SLES-50643_C8ED55C7.pnach b/patches/SLES-50643_C8ED55C7.pnach index 6f1606f3..125fc505 100644 --- a/patches/SLES-50643_C8ED55C7.pnach +++ b/patches/SLES-50643_C8ED55C7.pnach @@ -2,7 +2,7 @@ gametitle=Shifters (PAL-M2) (SLES-50643) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // // 16:9 patch=1,EE,003d71e4,word,080f40b3 // e4850010 jump to code inject (003d02cc) diff --git a/patches/SLES-50644_27F2EA5F.pnach b/patches/SLES-50644_27F2EA5F.pnach index d7c15e62..6bb16e58 100644 --- a/patches/SLES-50644_27F2EA5F.pnach +++ b/patches/SLES-50644_27F2EA5F.pnach @@ -3,11 +3,11 @@ gametitle=Shifters (PAL-E) SLES-50644 27F2EA5F [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,004C4B00,word,3F81DE4A //3FAD2867 patch=1,EE,004C4B80,word,3F81DE4B //3FAD2868 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,004C4AC4,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-50645_C8F64115.pnach b/patches/SLES-50645_C8F64115.pnach index b7affc2c..aa6978dc 100644 --- a/patches/SLES-50645_C8F64115.pnach +++ b/patches/SLES-50645_C8F64115.pnach @@ -3,11 +3,11 @@ gametitle=Shifters (PAL-S-I) SLES-50645 C8F64115 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,004C5390,word,3F81DE4A //3FAD2867 patch=1,EE,004C5410,word,3F81DE4B //3FAD2868 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,004C5354,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-50647_85D7BA33.pnach b/patches/SLES-50647_85D7BA33.pnach index 8337f45d..85aa55a7 100644 --- a/patches/SLES-50647_85D7BA33.pnach +++ b/patches/SLES-50647_85D7BA33.pnach @@ -2,7 +2,7 @@ gametitle=Casper - Spirit Dimensions (E)(SLES-50647) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50650_CD3ED649.pnach b/patches/SLES-50650_CD3ED649.pnach index 210ff15c..2cb17239 100644 --- a/patches/SLES-50650_CD3ED649.pnach +++ b/patches/SLES-50650_CD3ED649.pnach @@ -2,7 +2,7 @@ gametitle=Resident Evil - Survivor 2 - Code Veronica (PAL-E) (SLES-50650) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00339528,word,3c023f61 // 3c023f96 hor fov diff --git a/patches/SLES-50653_27C6A287.pnach b/patches/SLES-50653_27C6A287.pnach index 6c688421..bacc5794 100644 --- a/patches/SLES-50653_27C6A287.pnach +++ b/patches/SLES-50653_27C6A287.pnach @@ -2,7 +2,7 @@ gametitle=Gitaroo Man [PAL-M3] (SLES_506.53) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,2027FFA0,extended,3F400000 //3F800000 (Increases hor. axis, causes HUD moved to left) diff --git a/patches/SLES-50680_E677B8F1.pnach b/patches/SLES-50680_E677B8F1.pnach new file mode 100644 index 00000000..d475e114 --- /dev/null +++ b/patches/SLES-50680_E677B8F1.pnach @@ -0,0 +1,7 @@ +gametitle=Pirates - The Legend of Black Kat PAL-M SLES-50680 E677B8F1 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00330F88,word,00000001 //00000002 +patch=1,EE,00723528,word,3CA3D70A //3D23D70A \ No newline at end of file diff --git a/patches/SLES-50683_26BD4CDC.pnach b/patches/SLES-50683_26BD4CDC.pnach new file mode 100644 index 00000000..e5c098e4 --- /dev/null +++ b/patches/SLES-50683_26BD4CDC.pnach @@ -0,0 +1,10 @@ +gametitle=Sled Storm (PAL-M) SLES-50683 26BD4CDC + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,002C3324,word,24110000 +patch=1,EE,002C3328,word,24120050 +patch=1,EE,002C3334,word,24130001 +patch=1,EE,002F9818,word,3D088889 \ No newline at end of file diff --git a/patches/SLES-50684_CFD4748B.pnach b/patches/SLES-50684_CFD4748B.pnach index fd0b6a99..c30bc2e1 100644 --- a/patches/SLES-50684_CFD4748B.pnach +++ b/patches/SLES-50684_CFD4748B.pnach @@ -2,7 +2,7 @@ gametitle=Medal of Honor - Frontline (E)(SLES-50684) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (PAL by Arapapa) +author=nemesis2000 (PAL by Arapapa) patch=1,EE,00145768,word,0c052e5b //0c052e5c patch=1,EE,00145788,word,0c052e5b //0c052e5c diff --git a/patches/SLES-50686_ED355E84.pnach b/patches/SLES-50686_ED355E84.pnach index e4c5988d..9fb037c9 100644 --- a/patches/SLES-50686_ED355E84.pnach +++ b/patches/SLES-50686_ED355E84.pnach @@ -2,7 +2,7 @@ gametitle=Iron Aces 2 - Birds of Prey (E)(SLES-50686) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50706_DAB59034.pnach b/patches/SLES-50706_DAB59034.pnach index feab69ca..11a626e2 100644 --- a/patches/SLES-50706_DAB59034.pnach +++ b/patches/SLES-50706_DAB59034.pnach @@ -1,9 +1,9 @@ -gametitle=Army Men - RTS (PAL-Unk)(SLES-50706) +gametitle=Army Men - RTS (PAL-Unk)(SLES-50706) DAB59034 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //3D Scene which is proceeding automatically //803f013c 00188144 9000b17f patch=1,EE,001a37f4,word,3c013fab //3c013f80 Fov @@ -26,5 +26,5 @@ patch=1,EE,0020cf5c,word,3c013fb0 //3c013f80 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,003F5974,word,00000000 //00000001 \ No newline at end of file diff --git a/patches/SLES-50710_BA7CAA90.pnach b/patches/SLES-50710_BA7CAA90.pnach index dbca2d04..ddf2976d 100644 --- a/patches/SLES-50710_BA7CAA90.pnach +++ b/patches/SLES-50710_BA7CAA90.pnach @@ -2,7 +2,7 @@ gametitle=Dr. Muto (PAL-M5) (SLES-50710) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00100464,word,3c013fcc // 3c013f91 hor fov gameplay diff --git a/patches/SLES-50712_1BAECD6A.pnach b/patches/SLES-50712_1BAECD6A.pnach index c468ed60..1d2467e5 100644 --- a/patches/SLES-50712_1BAECD6A.pnach +++ b/patches/SLES-50712_1BAECD6A.pnach @@ -2,7 +2,7 @@ gametitle=NHL Hitz 2003 (SLES_50712) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,20720208,word,3F100000 patch=1,EE,20720318,word,3F2AE148 diff --git a/patches/SLES-50714_8A6875C4.pnach b/patches/SLES-50714_8A6875C4.pnach index 5c8d487c..df58afd5 100644 --- a/patches/SLES-50714_8A6875C4.pnach +++ b/patches/SLES-50714_8A6875C4.pnach @@ -1,4 +1,4 @@ -gametitle=Defender (E)(SLES-50714) 8A6875C4 +gametitle=Defender (PAL-M) (SLES-50714) 8A6875C4 [Widescreen 16:9] gsaspectratio=16:9 @@ -13,5 +13,7 @@ patch=1,EE,001c9fb4,word,3c013fd5 //3c013fa0 Gameplay [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,00228DC0,word,00000000 //1040FFFD \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,00236C08,extended,24020002 +patch=1,EE,E001001A,extended,0056874C //Avoid menu flickering +patch=1,EE,00236C08,extended,24020001 \ No newline at end of file diff --git a/patches/SLES-50715_C3BF2BE4.pnach b/patches/SLES-50715_C3BF2BE4.pnach index ed2ba342..39ea3e6a 100644 --- a/patches/SLES-50715_C3BF2BE4.pnach +++ b/patches/SLES-50715_C3BF2BE4.pnach @@ -2,7 +2,7 @@ gametitle=Gravity Games Bike - Street, Vert. Dirt. (E)(SLES-50715) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50717_347BFDA5.pnach b/patches/SLES-50717_347BFDA5.pnach index 9f17921f..1ff49bf8 100644 --- a/patches/SLES-50717_347BFDA5.pnach +++ b/patches/SLES-50717_347BFDA5.pnach @@ -2,7 +2,7 @@ gametitle=Mortal Kombat: Deadly Alliance (SLES-50717) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,001817e8,word,3c023fe3 patch=1,EE,001817ec,word,34428e38 patch=1,EE,001a98b4,word,3c023f40 diff --git a/patches/SLES-50720_C8AB1868.pnach b/patches/SLES-50720_C8AB1868.pnach new file mode 100644 index 00000000..43810134 --- /dev/null +++ b/patches/SLES-50720_C8AB1868.pnach @@ -0,0 +1,6 @@ +gametitle=Freestyle Metal X PAL-M SLES-50720 C8AB1868 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,003E9634,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-50721_D4FB6049.pnach b/patches/SLES-50721_D4FB6049.pnach index 92df0d53..89a5f5c6 100644 --- a/patches/SLES-50721_D4FB6049.pnach +++ b/patches/SLES-50721_D4FB6049.pnach @@ -2,7 +2,7 @@ gametitle=Pryzm: Chapter One: The Dark Unicorn [PAL-M4] (SLES_507.21) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001186E8,word,3C013F22 //3C013F00 diff --git a/patches/SLES-50725_163F0461.pnach b/patches/SLES-50725_163F0461.pnach index 8520a5ac..bc309b49 100644 --- a/patches/SLES-50725_163F0461.pnach +++ b/patches/SLES-50725_163F0461.pnach @@ -2,7 +2,7 @@ gametitle=V-Rally 3 (PAL-M5) (SLES-50725) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0018cbec,word,3c013f40 // e7ad0020 hor fov diff --git a/patches/SLES-50730_B74C378E.pnach b/patches/SLES-50730_B74C378E.pnach index 6c68d897..162a4a60 100644 --- a/patches/SLES-50730_B74C378E.pnach +++ b/patches/SLES-50730_B74C378E.pnach @@ -2,7 +2,7 @@ gametitle=V.I.P. (PAL-M5) (SLES-50730) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001e46a0,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-50731_1D2818AF.pnach b/patches/SLES-50731_1D2818AF.pnach index 37dd2356..ad844893 100644 --- a/patches/SLES-50731_1D2818AF.pnach +++ b/patches/SLES-50731_1D2818AF.pnach @@ -1,4 +1,4 @@ -gametitle=Need for Speed - Hot Pursuit 2 (PAL-M6) (SLES-50731) +gametitle=Need for Speed - Hot Pursuit 2 (PAL-M6) (SLES-50731) 1D2818AF [Widescreen 16:9] gsaspectratio=16:9 @@ -9,18 +9,18 @@ patch=1,EE,0032f6fc,word,3f400000 // 3f800000 hor fov patch=1,EE,0032f850,word,3f2aaaab // 3f000000 increase hor fov patch=1,EE,0010e840,word,3c013f2b // 3c013f00 renderfix -[50 FPS] +[50/60 FPS] author=asasega -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00113E2C,word,2C420001 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps +description=SDTV 480p mode at start. patch=1,EE,00280754,word,24110000 -patch=1,EE,00280758,word,24120052 +patch=1,EE,00280758,word,24120050 patch=1,EE,00280764,word,24130001 -patch=1,EE,002C79C4,word,0000001E [Trigger control mapppings] author=Silent @@ -313,4 +313,4 @@ patch=0,EE,202DDBCC,extended,201E patch=0,EE,202DDBEC,extended,1F160D0B patch=0,EE,202DDBF0,extended,2221 patch=0,EE,202DE240,extended,21201F1E -patch=0,EE,202DE244,extended,22 +patch=0,EE,202DE244,extended,22 \ No newline at end of file diff --git a/patches/SLES-50735_7FD7A1B9.pnach b/patches/SLES-50735_7FD7A1B9.pnach index f28d74ea..d5be4160 100644 --- a/patches/SLES-50735_7FD7A1B9.pnach +++ b/patches/SLES-50735_7FD7A1B9.pnach @@ -2,7 +2,7 @@ gametitle=Jade Cocoon 2 (PAL-E) (SLES-50735) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // // 16:9 patch=1,EE,21E2EDCC,extended,3F340000 // 3F700000 hor fov @@ -11,7 +11,7 @@ patch=1,EE,21E2EDCC,extended,3F340000 // 3F700000 hor fov [No-Interlacing] gsinterlacemode=1 -comment=Disable interlacing hack by ElHecht +author=ElHecht // disable interlacing patch=1,EE,0015a1e4,word,00000000 // 8c27698C boot and menu diff --git a/patches/SLES-50739_80372C88.pnach b/patches/SLES-50739_80372C88.pnach index 0da4d376..e8dcbabe 100644 --- a/patches/SLES-50739_80372C88.pnach +++ b/patches/SLES-50739_80372C88.pnach @@ -2,7 +2,7 @@ gametitle=Soldier of Fortune: Gold Edition (SLES-50739) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00514178,word,00000356 patch=1,EE,00128674,word,24040280 diff --git a/patches/SLES-50752_62188F25.pnach b/patches/SLES-50752_62188F25.pnach index 266d0c62..e5b2801f 100644 --- a/patches/SLES-50752_62188F25.pnach +++ b/patches/SLES-50752_62188F25.pnach @@ -2,7 +2,7 @@ gametitle=Pro Tennis WTA Tour [PAL] (SLES_507.52) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00224004,word,3C013F40 //00000000 (Increases hor. axis) diff --git a/patches/SLES-50753_3D2FC5EE.pnach b/patches/SLES-50753_3D2FC5EE.pnach index 61c4ca85..46b365ae 100644 --- a/patches/SLES-50753_3D2FC5EE.pnach +++ b/patches/SLES-50753_3D2FC5EE.pnach @@ -2,7 +2,7 @@ gametitle=Freekstyle [PAL-M5] (SLES_507.53) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00144160,word,3C023F40 //3C023F80 (Increases hor. axis) diff --git a/patches/SLES-50758_7B01238F.pnach b/patches/SLES-50758_7B01238F.pnach index 818d330b..2f68c812 100644 --- a/patches/SLES-50758_7B01238F.pnach +++ b/patches/SLES-50758_7B01238F.pnach @@ -2,7 +2,7 @@ gametitle=E.O.E: Eve of Extinction [PAL] (SLES_507.58) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00154814,word,3C023EC0 //3C023F00 (Increases hor. axis) diff --git a/patches/SLES-50767_1308CD9C.pnach b/patches/SLES-50767_1308CD9C.pnach index 11e78400..81e6e679 100644 --- a/patches/SLES-50767_1308CD9C.pnach +++ b/patches/SLES-50767_1308CD9C.pnach @@ -2,7 +2,7 @@ gametitle=V8 Supercars Australia Race Driver (E)(SLES-50767) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-50770_47FAC204.pnach b/patches/SLES-50770_47FAC204.pnach index 2c1495f0..1cdf4734 100644 --- a/patches/SLES-50770_47FAC204.pnach +++ b/patches/SLES-50770_47FAC204.pnach @@ -2,7 +2,7 @@ gametitle=Mad Maestro! [PAL] (SLES_507.70) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00111400,word,3C023F40 //3C023F80 (Increases hor. axis) diff --git a/patches/SLES-50776_43CC009B.pnach b/patches/SLES-50776_43CC009B.pnach index 76886e8c..e4e6813f 100644 --- a/patches/SLES-50776_43CC009B.pnach +++ b/patches/SLES-50776_43CC009B.pnach @@ -2,7 +2,7 @@ gametitle=Slam Tennis (E)(SLES-50776) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50777_E16618B7.pnach b/patches/SLES-50777_E16618B7.pnach index b9119708..e767e28a 100644 --- a/patches/SLES-50777_E16618B7.pnach +++ b/patches/SLES-50777_E16618B7.pnach @@ -2,7 +2,7 @@ gametitle=Battle Engine Aquila (E)(SLES-50777) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50787_01E953C2.pnach b/patches/SLES-50787_01E953C2.pnach index 7de1b6e4..53ae0198 100644 --- a/patches/SLES-50787_01E953C2.pnach +++ b/patches/SLES-50787_01E953C2.pnach @@ -2,7 +2,7 @@ gametitle=International Superstar Soccer 2 (E)(SLES-50787) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50788_7A4237FB.pnach b/patches/SLES-50788_7A4237FB.pnach index d380aaac..302c0495 100644 --- a/patches/SLES-50788_7A4237FB.pnach +++ b/patches/SLES-50788_7A4237FB.pnach @@ -2,7 +2,7 @@ gametitle=Frogger - The Great Quest (E)(SLES-50788) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50789_450D5B4F.pnach b/patches/SLES-50789_450D5B4F.pnach index 04402968..9104fc85 100644 --- a/patches/SLES-50789_450D5B4F.pnach +++ b/patches/SLES-50789_450D5B4F.pnach @@ -1,16 +1,24 @@ gametitle=Men in Black II - Alien Escape (E)(SLES-50789) -[Widescreen 16:9] -gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +//[Widescreen 16:9] +//gsaspectratio=16:9 +//author=Arapapa //Widescreen 16:9 //X-Fov -patch=1,EE,003aa0bc,word,3c02bf40 //3c02bf80 +//patch=1,EE,003aa0bc,word,3c02bf40 //3c02bf80 //Background effect fix -patch=1,EE,001a6ebc,word,3c033f2b //3c033f00 -patch=1,EE,001a6f28,word,3c033f2b //3c033f00 - +//patch=1,EE,001a6ebc,word,3c033f2b //3c033f00 +//patch=1,EE,001a6f28,word,3c033f2b //3c033f00 +//causes glitches in textures +[50 FPS] +author=PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,003CBA50,word,24420002 //24420001 +patch=1,EE,008E4B34,word,3CA4D70A //3D23D70A +patch=1,EE,00288A40,word,3C02BF40 //3C02BF80 +patch=1,EE,00288A58,word,3C023F40 //3C023F80 +patch=1,EE,002F7C44,word,3C023F40 //3C023F80 \ No newline at end of file diff --git a/patches/SLES-50796_A75BD67E.pnach b/patches/SLES-50796_A75BD67E.pnach index 96cc5a0d..733f0bfa 100644 --- a/patches/SLES-50796_A75BD67E.pnach +++ b/patches/SLES-50796_A75BD67E.pnach @@ -2,7 +2,7 @@ gametitle=2002 FIFA World Cup Korea Japan (E)(SLES-50796) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50802_2D309BA4.pnach b/patches/SLES-50802_2D309BA4.pnach index 71390b7f..31a58d9f 100644 --- a/patches/SLES-50802_2D309BA4.pnach +++ b/patches/SLES-50802_2D309BA4.pnach @@ -2,7 +2,7 @@ gametitle=Knockout Kings 2002 (E-G)(SLES-50802) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50808_3AC738AA.pnach b/patches/SLES-50808_3AC738AA.pnach index 7639138e..4901702e 100644 --- a/patches/SLES-50808_3AC738AA.pnach +++ b/patches/SLES-50808_3AC738AA.pnach @@ -1,6 +1,6 @@ -gametitle=Deus Ex [PAL-S] SLES-50808 3AC738AA. ELF secondary 7070DC2F +gametitle=Deus Ex (PAL-S) SLES-50808 3AC738AA //Corresponds to the main crc to activate the secondary crc 7070DC2F called DEUSEX.ELF [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. \ No newline at end of file +description=Might need EE Overclock at 180%. \ No newline at end of file diff --git a/patches/SLES-50808_7070DC2F.pnach b/patches/SLES-50808_7070DC2F.pnach index 73f7174c..bec02d20 100644 --- a/patches/SLES-50808_7070DC2F.pnach +++ b/patches/SLES-50808_7070DC2F.pnach @@ -1,6 +1,6 @@ -gametitle=Deus Ex SLES-50808 PAL-S 3AC738AA. ELF secondary 7070DC2F +gametitle=Deus Ex (PAL-S) SLES-50808 7070DC2F DEUSEX.ELF [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,0030F8B4,word,28420001 //28420002 +description=Might need EE Overclock at 180%. +patch=1,EE,0030F8B4,word,28420001 //28420002 \ No newline at end of file diff --git a/patches/SLES-50810_257F96FD.pnach b/patches/SLES-50810_257F96FD.pnach index 2c4dd68e..bfdd4339 100644 --- a/patches/SLES-50810_257F96FD.pnach +++ b/patches/SLES-50810_257F96FD.pnach @@ -2,7 +2,7 @@ gametitle=Smash Court Tennis - Pro Tournament (E)(SLES-50810) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50812_CB179BA2.pnach b/patches/SLES-50812_CB179BA2.pnach index 7fe2d0f4..bb976a1b 100644 --- a/patches/SLES-50812_CB179BA2.pnach +++ b/patches/SLES-50812_CB179BA2.pnach @@ -2,7 +2,7 @@ gametitle=Spider-Man - The Movie (E)(SLES-50812) //[Widescreen 16:9] //gsaspectratio=16:9 -//comment=Widescreen Hack by Arapapa +//author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50821_22E91837.pnach b/patches/SLES-50821_22E91837.pnach index e7452e9c..a7a4b4ec 100644 --- a/patches/SLES-50821_22E91837.pnach +++ b/patches/SLES-50821_22E91837.pnach @@ -1,24 +1,16 @@ -gametitle=Project Zero +gametitle=Project Zero * SLES-50821 * PAL-M5 * 22E91837 +// Fatal Frame + +// Due to missing renderingfixes, black stripes can show up on ghosts, spirits and photos. [Widescreen 16:9] gsaspectratio=16:9 -author=ElHecht, nemesis2000 and pgert -comment=Widescreen Hack -// ========== -// pgert@180129 -// http://forums.pcsx2.net/Thread-PCSX2-Widescreen-Game-Patches?pid=240786#pid240786 -// ========== -comment= Project Zero * SLES-50821 * PAL-M5 * 22E91837 -comment=- Widescreen & HD pnach by pgert. -comment=- Credits to ElHecht & nemesis2000. +author=nemesis2000 & pgert -// ========== -// 16:9 support. -// ========== patch=1,EE,00185B40,word,3C0145C0 // 3C014500 - HD-rendering fix for 00185B4C. patch=1,EE,00185B4C,word,3C013F40 // 3C013F80 - X-axis of Cutscenes (including IntroCutscenes). patch=1,EE,0018A2CC,word,3C013F40 // 3C013F80 - X-axis of GamePlay. -// ========== + // Flashlight 16:9 Widescreen hack, ported by pgert from the NTSC-U pnach by nemesis2000, // and modified so that the values are altered with half of the regular amount // (0,875 instead of 0,75) - better. @@ -27,76 +19,98 @@ patch=1,EE,00135B80,word,3C0141A8 // 3C0141C0 patch=1,EE,00135BC4,word,3C014128 // 3C014140 patch=1,EE,00135BFC,word,3C01410C // 3C014120 patch=1,EE,0013715C,word,3C013F12 // 3C013F00 -// ========== + // 16:9 Cinematics hack by nemesis2000. patch=1,EE,00182730,word,24027100 // 24026C00 - X-axis placement of Cinematics. patch=1,EE,00182740,word,24027100 // 24026C00 - X-axis placement of Cinematics. // - 6C00h = 27648d : width of Cinematics = 640d : 27648 + 1600 - 640/2 = 28160 : 28160d = 7100h patch=1,EE,00182748,word,24091E00 // 24092800 - width of Cinematics. // - 2800h = 10240d : width of Cinematics = 640d : 10240 - 1600 - 640*1.5 = 7680 : 7680d = 1E00h -//========== -// ========== -// 16:10 support -// ========== -// patch=1,EE,00185B40,word,3C0145C0 // 3C014500 - can't be set to 3C0145AD. -// patch=1,EE,00185B4C,word,3C013F55 // 3C013F80 -// patch=1,EE,0018A2CC,word,3C013F55 // 3C013F80 + // ========== + +[Widescreen/16:10] +gsaspectratio=Stretch +author=nemesis2000 & pgert + +patch=1,EE,00185B40,word,3C0145C0 // can't be set to 3C0145AD. +patch=1,EE,00185B4C,word,3C013F55 +patch=1,EE,0018A2CC,word,3C013F55 + // Flashlight 16:10 Widescreen hack, ported by pgert from the NTSC-U pnach by nemesis2000, // and modified so that the values are altered with half of the regular amount // (0,91666665 instead of 0,8333333) - better. -// patch=1,EE,00135B18,word,3C014293 // 3C0142A0 -// patch=1,EE,00135B80,word,3C0141B0 // 3C0141C0 -// patch=1,EE,00135BC4,word,3C014130 // 3C014140 -// patch=1,EE,00135BFC,word,3C014113 // 3C014120 -// patch=1,EE,0013715C,word,3C013F0C // 3C013F00 -// ========== +patch=1,EE,00135B18,word,3C014293 +patch=1,EE,00135B80,word,3C0141B0 +patch=1,EE,00135BC4,word,3C014130 +patch=1,EE,00135BFC,word,3C014113 +patch=1,EE,0013715C,word,3C013F0C + // Cinematics hack by nemesis2000, ported to 16:10 by pgert. -// patch=1,EE,00182730,word,24027080 // 24026C00 - X-axis placement of Cinematics. -// patch=1,EE,00182740,word,24027080 // 24026C00 - X-axis placement of Cinematics. +patch=1,EE,00182730,word,24027080 +patch=1,EE,00182740,word,24027080 // - 7100h = 28160d : 28160 + 640 = 28800 : 28800d = 7080h -// patch=1,EE,00182748,word,24091F00 // 24092800 - width of Cinematics. +patch=1,EE,00182748,word,24091F00 // 24092800 - width of Cinematics. // - 1E00h = 7680d : 7680 + 256 = 7936 : 7936d = 1F00h -// ========== // ========== -//15:10 (MS Surface Book) support. -// ========== -// patch=1,EE,00185B40,word,3C0145C0 // 3C014500 -// patch=1,EE,00185B4C,word,3C013F64 // 3C013F80 -// patch=1,EE,0018A2CC,word,3C013F64 // 3C013F80 -// ========== + +[Widescreen/15:10] +gsaspectratio=Stretch +author=nemesis2000 & pgert + +patch=1,EE,00185B40,word,3C0145C0 +patch=1,EE,00185B4C,word,3C013F64 +patch=1,EE,0018A2CC,word,3C013F64 + // Flashlight 15:10 Widescreen hack, ported by pgert from the NTSC-U pnach by nemesis2000, // and modified so that the values are altered with half of the regular amount // (0,94444445 instead of 0,8888889) - better. -// patch=1,EE,00135B18,word,3C014297 // 3C0142A0 -// patch=1,EE,00135B80,word,3C0141B5 // 3C0141C0 -// patch=1,EE,00135BC4,word,3C014135 // 3C014140 -// patch=1,EE,00135BFC,word,3C014117 // 3C014120 -// patch=1,EE,0013715C,word,3C013F08 // 3C013F00 -// ========== +patch=1,EE,00135B18,word,3C014297 +patch=1,EE,00135B80,word,3C0141B5 +patch=1,EE,00135BC4,word,3C014135 +patch=1,EE,00135BFC,word,3C014117 +patch=1,EE,0013715C,word,3C013F08 + // Cinematics hack by nemesis2000, ported to 15:10 by pgert. -// patch=1,EE,00182730,word,240270AB // 24026C00 - X-axis placement of Cinematics. -// patch=1,EE,00182740,word,240270AB // 24026C00 - X-axis placement of Cinematics. +patch=1,EE,00182730,word,240270AB +patch=1,EE,00182740,word,240270AB // - 7100h = 28160d : 28160 + (640*(16/15)) = 28843 : 28760d = 70ABh -// patch=1,EE,00182748,word,24091F11 // 24092800 - width of Cinematics. +patch=1,EE,00182748,word,24091F11 // 24092800 - width of Cinematics. // - 1E00h = 7680d : 7680 + (256*(16/15)) = 7953 : 7953d = 1F11h -// ========== // ========== -// Optional SpecialFixes. -// ========== -// patch=1,EE,0011C58C,word,3C013F40 // 3C013F00 - required for the display of the glimmering star of a hidden collectible. -// patch=1,EE,0011C5BC,word,3C013F40 // 3C013F80 - size (aspect ratio) of the glimmering star of a hidden collectible. -// patch=1,EE,0011DF3C,word,3C014510 // 3C014500 - detail-richness of the purple smoke dispatching a door-seal. -// patch=1,EE,0013BF98,word,3C014220 // 3C0141C8 - detail-richness of the blue spirit-torch. -// ========== -// patch=1,EE,0011D604,word,3C014510 // 3C014500 - HD-fixes for GameMenu, GamePlay & CameraView. -// patch=1,EE,001B5F84,word,3C013C82 // 3C013C80 - corrects the display of the Camera TargetTracker (due to 0011D604). -// patch=1,EE,002039B4,word,3C014410 // 3C0143A0 - X-axis placement of photos (affected by 0011D604). -// patch=1,EE,002039C0,word,3C014438 // 3C014360 - Y-axis placement of photos (affected by 0011D604). -// - An unfixed side-effect of 0011D604 is that the graining-effect in GameMenu & CameraView disappears. -// ========== + +[No-Interlacing] +gsinterlacemode=1 +author=a_NUb_iS +// Search pattern: 3829050008004264 (little endian) +// Search mask: ffffffffffffffff +patch=1,EE,00235664,word,00000000 // 64420008 + +[No-Interlacing] +author=wagrenier +patch=1,EE,0010ba94,word,00000000 +patch=1,EE,0010bac0,word,00000000 +patch=1,EE,00173620,word,00000000 +patch=1,EE,001829b0,word,00000000 + +[Disable Blurry Bloom effect] +author=ported by br4zil from NTSC-U +patch=1,EE,00350C0C,word,00000000 + +[Disable Dark Filter effect] +author=ported by br4zil from NTSC-U +patch=1,EE,0035108C,word,00000000 + +[Disable Post-Process and Noise effect - gameplay] +author=ported by br4zil from NTSC-U +patch=1,EE,00350F1C,word,00000000 + +[Disable Post-Process and Noise effect - menus] +author=ported by br4zil from NTSC-U +comment=Makes main menu bland looking +patch=1,EE,0035905C,word,00000000 // ========== // Notes (by pgert). @@ -112,23 +126,15 @@ patch=1,EE,00182748,word,24091E00 // 24092800 - width of Cinematics. // patch=1,EE,0035c760,word,3EA6AA8F // 3ED05532 - Y-axis of Cutscenes (including IntroCutscenes). // - 3ED05532h = 0,4069f : 0.8 * 0.4069 = 0,32552 : 0,32552f = 3EA6AA8Fh // ========== - - -[No-Interlacing] -description=Attempts to disable interlaced offset rendering. -gsinterlacemode=1 -//Remove Interlacing -patch=1,EE,00235664,word,00000000 -//Lens Flare's fix -patch=1,EE,0013715C,word,3C013F2B -patch=1,EE,00135B18,word,3C014270 -patch=1,EE,00135BFC,word,3C0140F0 -patch=1,EE,00135BC4,word,3C014110 -patch=1,EE,00135B80,word,3C014190 - -[Remove Post Processing] -comment=Remove Post Processing effects -patch=1,EE,00350C0C,word,00000000 //blurry bloom -patch=1,EE,0035108C,word,00000000 //dark filter -patch=1,EE,00350F1C,word,00000000 //post process and noise in-game -patch=1,EE,0035905C,word,00000000 //post process and noise on menus, optional, makes main menu bland looking. \ No newline at end of file +// patch=1,EE,0011C58C,word,3C013F40 // 3C013F00 - required for the display of the glimmering star of a hidden collectible. +// patch=1,EE,0011C5BC,word,3C013F40 // 3C013F80 - size (aspect ratio) of the glimmering star of a hidden collectible. +// patch=1,EE,0011DF3C,word,3C014510 // 3C014500 - detail-richness of the purple smoke dispatching a door-seal. +// patch=1,EE,0013BF98,word,3C014220 // 3C0141C8 - detail-richness of the blue spirit-torch. +// ========== +// patch=1,EE,0011D604,word,3C014510 // 3C014500 - HD-fixes for GameMenu, GamePlay & CameraView. +// patch=1,EE,001B5F84,word,3C013C82 // 3C013C80 - corrects the display of the Camera TargetTracker (due to 0011D604). +// patch=1,EE,002039B4,word,3C014410 // 3C0143A0 - X-axis placement of photos (affected by 0011D604). +// patch=1,EE,002039C0,word,3C014438 // 3C014360 - Y-axis placement of photos (affected by 0011D604). +// - An unfixed side-effect of 0011D604 is that the graining-effect (dark filtering) +// in GameMenu & CameraView disappears. +// ========== diff --git a/patches/SLES-50836_AE01AADB.pnach b/patches/SLES-50836_AE01AADB.pnach index dcaa3912..280f4b58 100644 --- a/patches/SLES-50836_AE01AADB.pnach +++ b/patches/SLES-50836_AE01AADB.pnach @@ -2,7 +2,7 @@ gametitle=Indiana Jones and the Emperor's Tomb (PAL-E) (SLES-50836) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,0011cf0c,word,3c013f24 // 3c013f49 diff --git a/patches/SLES-50843_0379B4F7.pnach b/patches/SLES-50843_0379B4F7.pnach new file mode 100644 index 00000000..6543a0a1 --- /dev/null +++ b/patches/SLES-50843_0379B4F7.pnach @@ -0,0 +1,6 @@ +gametitle=Crashed PAL-M SLES-50843 0379B4F7 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00227758,word,24020000 //24020001 \ No newline at end of file diff --git a/patches/SLES-50852_68A01AD7.pnach b/patches/SLES-50852_68A01AD7.pnach index be300d9c..2cdb14d7 100644 --- a/patches/SLES-50852_68A01AD7.pnach +++ b/patches/SLES-50852_68A01AD7.pnach @@ -2,7 +2,7 @@ gametitle=Sven-Goeran Eriksson's World Challenge (E)(SLES-50852) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50862_A77A916D.pnach b/patches/SLES-50862_A77A916D.pnach index a9d54592..d5ef12be 100644 --- a/patches/SLES-50862_A77A916D.pnach +++ b/patches/SLES-50862_A77A916D.pnach @@ -2,7 +2,7 @@ gametitle=Street Hoops (E)(SLES-50862) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50870_DF5C06BE.pnach b/patches/SLES-50870_DF5C06BE.pnach index 56994989..6ab2e10a 100644 --- a/patches/SLES-50870_DF5C06BE.pnach +++ b/patches/SLES-50870_DF5C06BE.pnach @@ -1,8 +1,8 @@ -gametitle=Mat Hoffman's Pro BMX 2 [PAL] (SLES_508.70) +gametitle=Mat Hoffman's Pro BMX 2 PAL-E SLES-50870 DF5C06BE [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0037B1B8,word,3C033FC0 //3C034000 Zoom @@ -15,4 +15,9 @@ patch=1,EE,001CC274,word,3C023FAB //3C023F80 Y-FOV //Render fix patch=1,EE,00254128,word,3C023C2E //3C023C0E - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,2062D5E4,extended,00000002 +patch=1,EE,E0010001,extended,0040EF70 +patch=1,EE,2062D5E4,extended,00000001 diff --git a/patches/SLES-50873_79464D5E.pnach b/patches/SLES-50873_79464D5E.pnach index dec7df24..24c73397 100644 --- a/patches/SLES-50873_79464D5E.pnach +++ b/patches/SLES-50873_79464D5E.pnach @@ -1,4 +1,4 @@ -gametitle=Reign of Fire (E)(SLES-50873) +gametitle=Reign of Fire PAL-M SLES-50873 79464D5E [Widescreen 16:9] gsaspectratio=16:9 @@ -12,4 +12,8 @@ patch=1,EE,001353b0,word,3c023fab //3c023f80 //Zoom patch=1,EE,00135348,word,3c023f24 //3c023f00 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00265C70,word,00000001 //00000002 +patch=1,EE,00140A50,word,24020032 //24020019 \ No newline at end of file diff --git a/patches/SLES-50874_A0ED2D23.pnach b/patches/SLES-50874_A0ED2D23.pnach index 2f5fd7c1..81676a0e 100644 --- a/patches/SLES-50874_A0ED2D23.pnach +++ b/patches/SLES-50874_A0ED2D23.pnach @@ -2,7 +2,7 @@ gametitle=F1 2002 (NTSC-J & PAL)(SLPS-20199 & SLES-50874) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50879_CB4EBD11.pnach b/patches/SLES-50879_CB4EBD11.pnach new file mode 100644 index 00000000..9e99ef8e --- /dev/null +++ b/patches/SLES-50879_CB4EBD11.pnach @@ -0,0 +1,6 @@ +gametitle=Paris-Dakar 2 PAL-M SLES-50879 CB4EBD11 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,001C5388,word,24020000 //24020001 \ No newline at end of file diff --git a/patches/SLES-50886_1E4D0D98.pnach b/patches/SLES-50886_1E4D0D98.pnach index 59aab011..b297ccdd 100644 --- a/patches/SLES-50886_1E4D0D98.pnach +++ b/patches/SLES-50886_1E4D0D98.pnach @@ -1,8 +1,8 @@ -gametitle=TransWorld Surf (E)(SLES-50886) +gametitle=TransWorld Surf PAL-M SLES-50886 1E4D0D98 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -10,4 +10,11 @@ comment=Widescreen hack by Arapapa patch=1,EE,001857b8,word,3c013fe2 //3c013faa patch=1,EE,001857bc,word,342193fc //34213d71 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock (180%). +patch=1,EE,1027EA54,extended,00000001 //00000002 +patch=1,EE,202818D8,extended,3c888889 //3d088889 +patch=1,EE,E0020001,extended,003A5244 +patch=1,EE,1027EA54,extended,00000002 +patch=1,EE,202818D8,extended,3d088889 \ No newline at end of file diff --git a/patches/SLES-50892_BBAB0D9A.pnach b/patches/SLES-50892_BBAB0D9A.pnach index f831a6f9..1a62ceaa 100644 --- a/patches/SLES-50892_BBAB0D9A.pnach +++ b/patches/SLES-50892_BBAB0D9A.pnach @@ -2,7 +2,7 @@ gametitle=Lethal Skies Elite Pilot: Team SW [PAL] (SLES_508.92) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0014E450,word,3C0143C0 //3C014400 Zoom diff --git a/patches/SLES-50897_280DAC56.pnach b/patches/SLES-50897_280DAC56.pnach index 31442acd..609a1443 100644 --- a/patches/SLES-50897_280DAC56.pnach +++ b/patches/SLES-50897_280DAC56.pnach @@ -2,7 +2,7 @@ gametitle=Super Trucks [PAL] (SLES_508.97) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,20816364,extended,3F400000 //3F800000 (Increases hor. axis) diff --git a/patches/SLES-50899_00DCB57B.pnach b/patches/SLES-50899_00DCB57B.pnach index 64734ad0..a228bd0c 100644 --- a/patches/SLES-50899_00DCB57B.pnach +++ b/patches/SLES-50899_00DCB57B.pnach @@ -2,7 +2,7 @@ gametitle=X-Men - Next Dimension (PAL-G) (SLES-50899) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001a5c10,word,3c1b3f40 // 00000000 hor fov diff --git a/patches/SLES-50902_30DED227.pnach b/patches/SLES-50902_30DED227.pnach index 4bed3762..c0bd864c 100644 --- a/patches/SLES-50902_30DED227.pnach +++ b/patches/SLES-50902_30DED227.pnach @@ -2,7 +2,7 @@ gametitle=Conflict: Desert Storm [PAL-M4] (SLES_509.02) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0013F114,word,3C0142AC //3C01428C Zoom diff --git a/patches/SLES-50903_54645811.pnach b/patches/SLES-50903_54645811.pnach index 15cfb8db..0e6b9f1d 100644 --- a/patches/SLES-50903_54645811.pnach +++ b/patches/SLES-50903_54645811.pnach @@ -2,7 +2,7 @@ gametitle=MegaRace 3 - Nanotech Disaster (E)(SLES-50903) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50905_63F88A8F.pnach b/patches/SLES-50905_63F88A8F.pnach index 73c2dde0..0c7474a9 100644 --- a/patches/SLES-50905_63F88A8F.pnach +++ b/patches/SLES-50905_63F88A8F.pnach @@ -2,7 +2,7 @@ gametitle=Armored Core 2 - Another Age (PAL-E) (SLES-50905) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002d7494,word,3c013f40 // 00000000 hor fov gameplay diff --git a/patches/SLES-50906_455B13ED.pnach b/patches/SLES-50906_455B13ED.pnach index 3f71ff4f..2a13efa8 100644 --- a/patches/SLES-50906_455B13ED.pnach +++ b/patches/SLES-50906_455B13ED.pnach @@ -2,7 +2,7 @@ gametitle=Master Rallye (E)(SLES-50906) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50914_4369DC37.pnach b/patches/SLES-50914_4369DC37.pnach index ed1da769..492b7e9e 100644 --- a/patches/SLES-50914_4369DC37.pnach +++ b/patches/SLES-50914_4369DC37.pnach @@ -2,7 +2,7 @@ gametitle=International Cue Club (PAL-M5) (SLES_509.14) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas patch=1,EE,2031EBFC,extended,3F400000 // 3F800000 diff --git a/patches/SLES-50919_CCBADADD.pnach b/patches/SLES-50919_CCBADADD.pnach index 632a0de3..ae0af7b6 100644 --- a/patches/SLES-50919_CCBADADD.pnach +++ b/patches/SLES-50919_CCBADADD.pnach @@ -2,7 +2,7 @@ gametitle=Akira Psycho Ball [PAL] (SLES_509.19) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001428BC,word,3C013F40 //00000000 (Increases hor. axis) diff --git a/patches/SLES-50921_658E589F.pnach b/patches/SLES-50921_658E589F.pnach index 66f09d3e..f178b5ec 100644 --- a/patches/SLES-50921_658E589F.pnach +++ b/patches/SLES-50921_658E589F.pnach @@ -2,7 +2,7 @@ gametitle=Way of the Samurai (PAL-M3) (SLES-50921) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00100024,word,3c1b3f40 // 00000000 hor fov diff --git a/patches/SLES-50935_8E0C5071.pnach b/patches/SLES-50935_8E0C5071.pnach index c1b6a8ab..ea7960b3 100644 --- a/patches/SLES-50935_8E0C5071.pnach +++ b/patches/SLES-50935_8E0C5071.pnach @@ -1,8 +1,8 @@ -gametitle=Circus Maximus - Chariot Wars (E)(SLES-50935) +gametitle=Circus Maximus - Chariot Wars PAL-E SLES-50935 8E0C5071 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -17,4 +17,8 @@ patch=1,EE,000c0010,word,0805df4b //Render fix patch=1,EE,00183e00,word,3c024406 //3c0243c8 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,001c8a30,word,3c023CA3 //3c023d23 +patch=1,EE,001c8ab8,word,3c023CA3 //3c023d23 \ No newline at end of file diff --git a/patches/SLES-50939_29DCD484.pnach b/patches/SLES-50939_29DCD484.pnach index 80395ce6..36839b2a 100644 --- a/patches/SLES-50939_29DCD484.pnach +++ b/patches/SLES-50939_29DCD484.pnach @@ -1,8 +1,8 @@ -gametitle=USA Racer (E)(SLES-50939) +gametitle=USA Racer PAL-M SLES-50939 29DCD484 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 @@ -17,4 +17,7 @@ patch=1,EE,000c0008,word,4481f000 patch=1,EE,000c000c,word,461e1083 patch=1,EE,000c0010,word,080927b5 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00140C50,word,24020000 //24020001 \ No newline at end of file diff --git a/patches/SLES-50954_F880239B.pnach b/patches/SLES-50954_F880239B.pnach index 8ec9f51f..db4d19b2 100644 --- a/patches/SLES-50954_F880239B.pnach +++ b/patches/SLES-50954_F880239B.pnach @@ -2,7 +2,7 @@ gametitle=Tokyo Road Race (E)(SLES-50954) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50955_0CEB8F2F.pnach b/patches/SLES-50955_0CEB8F2F.pnach index ecc5e5f1..208a3e4a 100644 --- a/patches/SLES-50955_0CEB8F2F.pnach +++ b/patches/SLES-50955_0CEB8F2F.pnach @@ -2,5 +2,5 @@ gametitle=London Racer 2 (PAL-M) SLES-50955 0CEB8F2F [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,00254824,word,00000000 //1440FFFA \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,0025481C,word,2C420000 //2C420001 \ No newline at end of file diff --git a/patches/SLES-50964_500F0197.pnach b/patches/SLES-50964_500F0197.pnach index 200c2f35..c70cf687 100644 --- a/patches/SLES-50964_500F0197.pnach +++ b/patches/SLES-50964_500F0197.pnach @@ -2,7 +2,7 @@ gametitle=Antz Extreme Racing (E)(SLES-50964) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-50974_DFF3BB23.pnach b/patches/SLES-50974_DFF3BB23.pnach index ff6b925c..2f3bf582 100644 --- a/patches/SLES-50974_DFF3BB23.pnach +++ b/patches/SLES-50974_DFF3BB23.pnach @@ -2,7 +2,7 @@ gametitle=Zapper (E)(SLES-50974) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Y-Fov diff --git a/patches/SLES-50975_F6F9A91D.pnach b/patches/SLES-50975_F6F9A91D.pnach index 12f0bce4..2288b01a 100644 --- a/patches/SLES-50975_F6F9A91D.pnach +++ b/patches/SLES-50975_F6F9A91D.pnach @@ -3,13 +3,12 @@ gametitle=The Thing [PAL-M4] (SLES_509.75) [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Gameplay 16:9 patch=1,EE,0016EC34,word,3C023FE3 //3C023FAA (Increases hor. axis) patch=1,EE,0016EC38,word,34428E38 //3442AAAB - [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,009693A8,word,00000001 //00000002 srl zero,0x00 +description=Might need EE Overclock at 180%. +patch=1,EE,009693A8,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-50986_86215185.pnach b/patches/SLES-50986_86215185.pnach index d5988fe7..b57c56ee 100644 --- a/patches/SLES-50986_86215185.pnach +++ b/patches/SLES-50986_86215185.pnach @@ -2,7 +2,7 @@ gametitle=Twin Caliber (E)(SLES-50986) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-50987_716BC539.pnach b/patches/SLES-50987_716BC539.pnach index 0240bc20..ef7aabcc 100644 --- a/patches/SLES-50987_716BC539.pnach +++ b/patches/SLES-50987_716BC539.pnach @@ -2,7 +2,7 @@ gametitle=The Scorpion King - Rise of the Akkadian (E)(SLES-50987) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-50988_4C3F192D.pnach b/patches/SLES-50988_4C3F192D.pnach index f41abbb2..a4c03e42 100644 --- a/patches/SLES-50988_4C3F192D.pnach +++ b/patches/SLES-50988_4C3F192D.pnach @@ -19,7 +19,7 @@ patch=1,EE,001fc174,word,34216666 // 34213333 font fix hor [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,001FB600,extended,28420001 patch=1,EE,001FB61C,extended,28420001 patch=1,EE,E0020000,extended,003956C0 diff --git a/patches/SLES-50992_5B9ACF79.pnach b/patches/SLES-50992_5B9ACF79.pnach index 3db0e131..2bbcfea4 100644 --- a/patches/SLES-50992_5B9ACF79.pnach +++ b/patches/SLES-50992_5B9ACF79.pnach @@ -2,7 +2,7 @@ gametitle=Hitman 2 - Silent Assassin (PAL-E) (SLES-50992) (v1.01 and 2.00) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00313f7c,word,3c013f10 // 3c013f40 ver fov diff --git a/patches/SLES-50995_E54C58DD.pnach b/patches/SLES-50995_E54C58DD.pnach index 0905fb37..844b73e0 100644 --- a/patches/SLES-50995_E54C58DD.pnach +++ b/patches/SLES-50995_E54C58DD.pnach @@ -2,7 +2,7 @@ gametitle=Fireblade [PAL-M5] (SLES_509.95) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,2055A430,extended,3F400000 //3F800000 (Increases hor. axis) diff --git a/patches/SLES-50997_55E708DA.pnach b/patches/SLES-50997_55E708DA.pnach index d28db400..610a9963 100644 --- a/patches/SLES-50997_55E708DA.pnach +++ b/patches/SLES-50997_55E708DA.pnach @@ -2,7 +2,7 @@ gametitle=Rally Fusion - Race of Champions (E)(SLES-50997) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50998_2CFB6C22.pnach b/patches/SLES-50998_2CFB6C22.pnach index 94d4309a..0be07760 100644 --- a/patches/SLES-50998_2CFB6C22.pnach +++ b/patches/SLES-50998_2CFB6C22.pnach @@ -2,7 +2,7 @@ gametitle=X-treme Express - World Grand Prix (E)(SLES-50998) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-50999_D506150D.pnach b/patches/SLES-50999_D506150D.pnach index e5f5a8f0..66174720 100644 --- a/patches/SLES-50999_D506150D.pnach +++ b/patches/SLES-50999_D506150D.pnach @@ -2,7 +2,7 @@ gametitle=UFC: Throwdown [PAL] (SLES_509.99) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001A9844,word,3C013CBB //3C013C8E Zoom diff --git a/patches/SLES-51009_284C6B75.pnach b/patches/SLES-51009_284C6B75.pnach index 1d2c0602..ce55ec79 100644 --- a/patches/SLES-51009_284C6B75.pnach +++ b/patches/SLES-51009_284C6B75.pnach @@ -1,8 +1,8 @@ -gametitle=Autobahn Raser IV (G)(SLES-51009) +gametitle=Autobahn Raser IV PAL-G SLES-51009 284C6B75 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -20,4 +20,7 @@ patch=1,EE,00110cfc,word,34425c29 //3442851f //patch=1,EE,003f122c,word,461e1082 //patch=1,EE,003f1230,word,08072bd3 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0013D210,word,24020000 //24020001 \ No newline at end of file diff --git a/patches/SLES-51011_989192FE.pnach b/patches/SLES-51011_989192FE.pnach index c34d4b5e..7e7e0c8f 100644 --- a/patches/SLES-51011_989192FE.pnach +++ b/patches/SLES-51011_989192FE.pnach @@ -1,4 +1,4 @@ -gametitle=Knight Rider (PAL-M4)(SLES-51011) +gametitle=Knight Rider (PAL-M4)(SLES-51011) 989192FE [Widescreen 16:9] gsaspectratio=16:9 @@ -18,6 +18,6 @@ patch=1,EE,003EB914,short,52D4 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,E0010011,extended,0079B31C patch=1,EE,00367BD4,extended,24020001 //24020002 \ No newline at end of file diff --git a/patches/SLES-51013_66CC8148.pnach b/patches/SLES-51013_66CC8148.pnach index 274271bb..9637d1c0 100644 --- a/patches/SLES-51013_66CC8148.pnach +++ b/patches/SLES-51013_66CC8148.pnach @@ -1,10 +1,16 @@ -gametitle=Blade II [PAL] (SLES_510.13) +gametitle=Blade II PAL-E SLES-51013 66CC8148 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0018B798,word,3C033F40 //3C033F80 (Increases hor. axis) - +[50 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,0018B3B8,word,1040000D //1440FFFD +patch=1,EE,001fd8cc,word,3c033c88 //3c033d08 +patch=1,EE,001a9268,word,3c023CA3 //3c023d23 +patch=1,EE,001BA450,word,24420002 //24420001 \ No newline at end of file diff --git a/patches/SLES-51017_E0FBB4A5.pnach b/patches/SLES-51017_E0FBB4A5.pnach index 298f73f1..5eac8143 100644 --- a/patches/SLES-51017_E0FBB4A5.pnach +++ b/patches/SLES-51017_E0FBB4A5.pnach @@ -2,7 +2,7 @@ gametitle=Scooby-Doo! Night of 100 Frights (E)(SLES-51017) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51023_5C313124.pnach b/patches/SLES-51023_5C313124.pnach index a50a5616..78cbd2de 100644 --- a/patches/SLES-51023_5C313124.pnach +++ b/patches/SLES-51023_5C313124.pnach @@ -2,7 +2,7 @@ gametitle=LMA Manager 2003 (E)(SLES-51023) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51025_728E6913.pnach b/patches/SLES-51025_728E6913.pnach index 93dea421..82debf37 100644 --- a/patches/SLES-51025_728E6913.pnach +++ b/patches/SLES-51025_728E6913.pnach @@ -2,7 +2,7 @@ gametitle=BDFL Manager 2003 (G)(SLES-51025) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51038_9B23B5F1.pnach b/patches/SLES-51038_9B23B5F1.pnach index 42449dbe..3924d142 100644 --- a/patches/SLES-51038_9B23B5F1.pnach +++ b/patches/SLES-51038_9B23B5F1.pnach @@ -1,8 +1,8 @@ -gametitle=MX SuperFly (E)(SLES-51038) +gametitle=MX Superfly PAL-E SLES-51038 9B23B5F1 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -16,4 +16,8 @@ patch=1,EE,000c0008,word,4481f000 patch=1,EE,000c000c,word,461e4202 patch=1,EE,000c0010,word,080aa2b9 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00179F2C,word,AC1088C0 //AC2088C0 +patch=1,EE,003EA8B0,word,3CA3D70A //3D23D70A \ No newline at end of file diff --git a/patches/SLES-51045_77056550.pnach b/patches/SLES-51045_77056550.pnach index 9d34f8f3..95376024 100644 --- a/patches/SLES-51045_77056550.pnach +++ b/patches/SLES-51045_77056550.pnach @@ -2,7 +2,7 @@ gametitle=Legends of Wrestling II (E)(SLES-51045) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51053_350F7F29.pnach b/patches/SLES-51053_350F7F29.pnach new file mode 100644 index 00000000..cafed3d6 --- /dev/null +++ b/patches/SLES-51053_350F7F29.pnach @@ -0,0 +1,7 @@ +gametitle=Tom & Jerry's War of the Wiskers (PAL-M) + +[Widescreen 16:9] +gsaspectratio=16:9 +author=CRASHARKI +description=Run the game at 16:9 Widescreen Aspect Ratio from the start. +patch=1,EE,20219D3C,word,00000001 //00000000 \ No newline at end of file diff --git a/patches/SLES-51054_ACB1989A.pnach b/patches/SLES-51054_ACB1989A.pnach index 602eea18..2e624004 100644 --- a/patches/SLES-51054_ACB1989A.pnach +++ b/patches/SLES-51054_ACB1989A.pnach @@ -3,12 +3,12 @@ gametitle=Midnight Club II (PAL-M) SLES-51054 ACB1989A [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio -patch=1,EE,0042F134,word,3FC71CEA //3F955553 +description=Renders the game in 16:9 aspect ratio +patch=1,EE,0042F134,word,3FC71C65 //3F955553 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0042F138,word,00000001 patch=1,EE,00431804,word,3F000000 //3F800000 patch=1,EE,004317D4,word,3CA08889 //3C888889 \ No newline at end of file diff --git a/patches/SLES-51055_C5F0D1A5.pnach b/patches/SLES-51055_C5F0D1A5.pnach index 83b1ce00..994259cf 100644 --- a/patches/SLES-51055_C5F0D1A5.pnach +++ b/patches/SLES-51055_C5F0D1A5.pnach @@ -2,7 +2,7 @@ gametitle=Go Go Golf (E)(SLES-51055) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51056_D91FCFD9.pnach b/patches/SLES-51056_D91FCFD9.pnach index 269a332c..d3b03836 100644 --- a/patches/SLES-51056_D91FCFD9.pnach +++ b/patches/SLES-51056_D91FCFD9.pnach @@ -2,7 +2,7 @@ gametitle=Fighting Fury [PAL] (SLES_510.56) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00102f54,word,3c013f40 //00000000 (Increases hor. axis) diff --git a/patches/SLES-51057_B8B74173.pnach b/patches/SLES-51057_B8B74173.pnach index 00c4eff0..00dd2d3d 100644 --- a/patches/SLES-51057_B8B74173.pnach +++ b/patches/SLES-51057_B8B74173.pnach @@ -2,7 +2,7 @@ gametitle=Hard Hitter 2 (E)(SLES-51057) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51058_54854C71.pnach b/patches/SLES-51058_54854C71.pnach index 8710e418..e4277c66 100644 --- a/patches/SLES-51058_54854C71.pnach +++ b/patches/SLES-51058_54854C71.pnach @@ -8,14 +8,10 @@ patch=1,EE,2034AC20,extended,3f533334 [No-Interlacing] gsinterlacemode=1 -comment=Progressive scan and 60hz patch +comment=Progressive scan //Override SetGsCrt syscall arguments. patch=1,EE,202000c0,extended,24040000 -patch=1,EE,202000c4,extended,24050002 +// The next line activates 60 NTSC Progressive format but brings a slew of issues like immediate FMV desync and the game being out of frame unless using the overscan option +// patch=1,EE,202000c4,extended,24050002 patch=1,EE,202000c8,extended,24060001 - -//Force PAL SMODE1 layout. -patch=1,EE,12000010,word,2c467af8 - - diff --git a/patches/SLES-51060_3DB34FC9.pnach b/patches/SLES-51060_3DB34FC9.pnach index 3192988a..c9750957 100644 --- a/patches/SLES-51060_3DB34FC9.pnach +++ b/patches/SLES-51060_3DB34FC9.pnach @@ -2,7 +2,7 @@ gametitle=Butt-Ugly Martians - Zoom or Doom! (E)(SLES-51060) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51064_2F1A1A42.pnach b/patches/SLES-51064_2F1A1A42.pnach index 6e8d016c..30ac3482 100644 --- a/patches/SLES-51064_2F1A1A42.pnach +++ b/patches/SLES-51064_2F1A1A42.pnach @@ -2,7 +2,7 @@ gametitle=Gladius [PAL-M3] (SLES_510.64) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 in SPANISH.ELF patch=1,EE,003DBDB8,word,3C023F40 //3C023F80 (Increases hor. axis) diff --git a/patches/SLES-51071_8AEE00C6.pnach b/patches/SLES-51071_8AEE00C6.pnach index fee07650..584cc4a2 100644 --- a/patches/SLES-51071_8AEE00C6.pnach +++ b/patches/SLES-51071_8AEE00C6.pnach @@ -9,7 +9,7 @@ gsaspectratio=16:9 // ========== comment=RTX - Red Rock * SLES-51069 * PAL/Europe * E349C1D4 -comment=- Widescreen hack by pgert. +author=pgert patch=1,EE,205F1840,extended,3F400000 // 3F800000 - X-axis // ========== // comment=- 16:10 support by pgert. diff --git a/patches/SLES-51078_AD8A8599.pnach b/patches/SLES-51078_AD8A8599.pnach index 4a11074b..3480dcb7 100644 --- a/patches/SLES-51078_AD8A8599.pnach +++ b/patches/SLES-51078_AD8A8599.pnach @@ -2,7 +2,7 @@ gametitle=Club Football - Arsenal (PAL)(SLES-51089) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51081_BADBA2C8.pnach b/patches/SLES-51081_BADBA2C8.pnach index 99b625ed..5fb57377 100644 --- a/patches/SLES-51081_BADBA2C8.pnach +++ b/patches/SLES-51081_BADBA2C8.pnach @@ -2,7 +2,7 @@ gametitle=Club Football - Juventus (PAL)(SLES-51081) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51093_1373EB26.pnach b/patches/SLES-51093_1373EB26.pnach index 825bbba3..4fbb0e2c 100644 --- a/patches/SLES-51093_1373EB26.pnach +++ b/patches/SLES-51093_1373EB26.pnach @@ -2,7 +2,7 @@ gametitle=Largo Winch - Empire Under Threat (E)(SLES-51093) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51107_5B9ACF79.pnach b/patches/SLES-51107_5B9ACF79.pnach index bcc300c6..cd7fd3e8 100644 --- a/patches/SLES-51107_5B9ACF79.pnach +++ b/patches/SLES-51107_5B9ACF79.pnach @@ -2,7 +2,7 @@ gametitle=Hitman 2 - Silent Assassin (PAL-I) (SLES-51107) (v1.01 and 2.00) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00313f7c,word,3c013f10 // 3c013f40 ver fov diff --git a/patches/SLES-51108_5B9ACF79.pnach b/patches/SLES-51108_5B9ACF79.pnach index aadbafbf..4c664d1a 100644 --- a/patches/SLES-51108_5B9ACF79.pnach +++ b/patches/SLES-51108_5B9ACF79.pnach @@ -2,7 +2,7 @@ gametitle=Hitman 2 - Silent Assassin (PAL-F) (SLES-51108) (v1.01 and 2.00) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00313f7c,word,3c013f10 // 3c013f40 ver fov diff --git a/patches/SLES-51109_5B9ACF79.pnach b/patches/SLES-51109_5B9ACF79.pnach index 02d223fc..ec5b258c 100644 --- a/patches/SLES-51109_5B9ACF79.pnach +++ b/patches/SLES-51109_5B9ACF79.pnach @@ -2,7 +2,7 @@ gametitle=Hitman 2 - Silent Assassin (PAL-G) (SLES-51109) (v1.01 and 2.00) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00313f7c,word,3c013f10 // 3c013f40 ver fov diff --git a/patches/SLES-51110_5B9ACF79.pnach b/patches/SLES-51110_5B9ACF79.pnach index 4c1b79f5..5f408a01 100644 --- a/patches/SLES-51110_5B9ACF79.pnach +++ b/patches/SLES-51110_5B9ACF79.pnach @@ -2,7 +2,7 @@ gametitle=Hitman 2 - Silent Assassin (PAL-S) (SLES-51110) (v1.01 and 2.00) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00313f7c,word,3c013f10 // 3c013f40 ver fov @@ -22,9 +22,9 @@ author=Gabominated description=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. patch=1,EE,20508090,extended,00000001 //00000002 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=Gabominated -description=Unlocked at 60fps + progressive scan. Might need enable EE Overclock to be stable. -patch=1,EE,20508090,extended,00000000 //00000002 +description=Forces progressive scan mode 480p at startup. patch=1,EE,20415930,extended,24120050 //00069403 -patch=1,EE,201016c8,extended,24060050 //24060003 \ No newline at end of file +patch=1,EE,201016c8,extended,24060050 //24060003 diff --git a/patches/SLES-51114_768D7B3C.pnach b/patches/SLES-51114_768D7B3C.pnach index 275880c6..7db6ee3a 100644 --- a/patches/SLES-51114_768D7B3C.pnach +++ b/patches/SLES-51114_768D7B3C.pnach @@ -2,7 +2,7 @@ gametitle=Pro Evolution Soccer 2 (E)(SLES-51114) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-51118_82E47620.pnach b/patches/SLES-51118_82E47620.pnach index 40bb3d56..ad1cf71c 100644 --- a/patches/SLES-51118_82E47620.pnach +++ b/patches/SLES-51118_82E47620.pnach @@ -2,7 +2,7 @@ gametitle=Wizardry - Tale of the Forsaken Land (E)(SLES-51118) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,00119e24,word,3c0143e0 //3c0143a0 diff --git a/patches/SLES-51125_9DD290E2.pnach b/patches/SLES-51125_9DD290E2.pnach index 010cf94f..1921c676 100644 --- a/patches/SLES-51125_9DD290E2.pnach +++ b/patches/SLES-51125_9DD290E2.pnach @@ -2,7 +2,7 @@ gametitle=Sega Soccer Slam (E)(SLES-51125) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51126_FB45FA8E.pnach b/patches/SLES-51126_FB45FA8E.pnach index dd26cca5..1caf4e8a 100644 --- a/patches/SLES-51126_FB45FA8E.pnach +++ b/patches/SLES-51126_FB45FA8E.pnach @@ -9,5 +9,5 @@ patch=1,EE,001AA394,word,3C013C2E //3C013C0E Render fix [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,0027B36C,word,42480000 \ No newline at end of file diff --git a/patches/SLES-51133_1629D655.pnach b/patches/SLES-51133_1629D655.pnach index 5bf369ab..19c216ad 100644 --- a/patches/SLES-51133_1629D655.pnach +++ b/patches/SLES-51133_1629D655.pnach @@ -22,5 +22,5 @@ patch=1,EE,001a2f58,word,3c023fab // 3c023f80 shadow fix [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,00121960,word,24040001 //24040002 \ No newline at end of file diff --git a/patches/SLES-51153_1A957202.pnach b/patches/SLES-51153_1A957202.pnach index 44a06045..aecfd6e7 100644 --- a/patches/SLES-51153_1A957202.pnach +++ b/patches/SLES-51153_1A957202.pnach @@ -2,7 +2,7 @@ //[Widescreen 16:9] //gsaspectratio=16:9 -//comment=Widescreen hack by by Arapapa +//author=Arapapa //Disabled as it causes SPS. //Widescreen hack 16:9 diff --git a/patches/SLES-51156_6BBD4932.pnach b/patches/SLES-51156_6BBD4932.pnach index b657f0e8..06628b91 100644 --- a/patches/SLES-51156_6BBD4932.pnach +++ b/patches/SLES-51156_6BBD4932.pnach @@ -3,7 +3,7 @@ gametitle=Silent Hill 2 - Director's Cut (PAL-M) SLES-51156 6BBD4932 [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,002D7530,word,3F28F5C3 //hor asp patch=1,EE,00189d84,word,3c034455 // partial render fix patch=1,EE,00281118,word,24100004 //hor black border FMV's fix @@ -45,5 +45,5 @@ patch=1,EE,001db99c,word,3442cccd //34426666 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,001A7060,word,10000009 //14400009 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,001A7060,word,10400009 //14400009 \ No newline at end of file diff --git a/patches/SLES-51160_B84660A2.pnach b/patches/SLES-51160_B84660A2.pnach index 8b0d63fb..e609fe8f 100644 --- a/patches/SLES-51160_B84660A2.pnach +++ b/patches/SLES-51160_B84660A2.pnach @@ -2,7 +2,7 @@ gametitle=Sub Rebellion (PAL-E) (SLES-51160) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa / Ported to PAL by ElHecht +author=Arapapa / Ported to PAL by ElHecht // 16:9 patch=1,EE,00100dd8,word,3c0143d5 // 3c0143a0 hor fov 60Hz diff --git a/patches/SLES-51162_9BA3712B.pnach b/patches/SLES-51162_9BA3712B.pnach index c3e53995..71407a71 100644 --- a/patches/SLES-51162_9BA3712B.pnach +++ b/patches/SLES-51162_9BA3712B.pnach @@ -2,7 +2,7 @@ gametitle=Metropolismania (E)(SLES-51162) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51168_D7A9DEF6.pnach b/patches/SLES-51168_D7A9DEF6.pnach index 4769dce2..68e90010 100644 --- a/patches/SLES-51168_D7A9DEF6.pnach +++ b/patches/SLES-51168_D7A9DEF6.pnach @@ -2,7 +2,7 @@ gametitle=AFL Live 2003 (E)(SLES-51168) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-51174_D14A6CD6.pnach b/patches/SLES-51174_D14A6CD6.pnach index a4e9f55c..f039b102 100644 --- a/patches/SLES-51174_D14A6CD6.pnach +++ b/patches/SLES-51174_D14A6CD6.pnach @@ -2,7 +2,7 @@ gametitle=Marvel vs Capcom 2 PAL (SLES_511.74) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas +author=El_Patas //Gameplay 16:9 //patch=1,EE,00415254,word,3C023FAA //3C023F80 diff --git a/patches/SLES-51180_4691F6F7.pnach b/patches/SLES-51180_4691F6F7.pnach index a1ac6057..de69ea80 100644 --- a/patches/SLES-51180_4691F6F7.pnach +++ b/patches/SLES-51180_4691F6F7.pnach @@ -2,7 +2,7 @@ gametitle=The Sum of All Fears (E)(SLES-51180) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51181_11DB467D.pnach b/patches/SLES-51181_11DB467D.pnach index 85d08305..675dfebf 100644 --- a/patches/SLES-51181_11DB467D.pnach +++ b/patches/SLES-51181_11DB467D.pnach @@ -14,5 +14,5 @@ patch=1,EE,0053ba54,word,3c0243d6 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,002729D4,word,1000000E //1040000E \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,002729D4,word,1440000E //1040000E \ No newline at end of file diff --git a/patches/SLES-51189_BBDCE560.pnach b/patches/SLES-51189_BBDCE560.pnach index 77aedf15..61c2f3b0 100644 --- a/patches/SLES-51189_BBDCE560.pnach +++ b/patches/SLES-51189_BBDCE560.pnach @@ -2,7 +2,7 @@ gametitle=MTV Celebrity Deathmatch (E)(SLES-51189) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51191_692C87AD.pnach b/patches/SLES-51191_692C87AD.pnach index c88f1794..6c61a44f 100644 --- a/patches/SLES-51191_692C87AD.pnach +++ b/patches/SLES-51191_692C87AD.pnach @@ -1,19 +1,20 @@ -gametitle=Auto Modellista (SLES-51191) +gametitle=Auto Modellista (PAL-M) (SLES-51191) 692C87AD [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //gameplay patch=1,EE,0038972c,word,3fe38e38 patch=1,EE,00277af0,word,3c023fe3 patch=1,EE,00277af8,word,34428e38 -[Mode 480p] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Force progressive scan when selecting 60hz -patch=1,EE,E0038306,extended,011E2084 +description=SDTV 480p mode when selecting 60 Hz +patch=1,EE,E0030001,extended,011E1F9C patch=1,EE,20100334,extended,3c050000 patch=1,EE,2010033C,extended,3c060050 patch=1,EE,20100344,extended,3c070001 \ No newline at end of file diff --git a/patches/SLES-51198_D682A8B8.pnach b/patches/SLES-51198_D682A8B8.pnach index 21e9c60c..eba9483d 100644 --- a/patches/SLES-51198_D682A8B8.pnach +++ b/patches/SLES-51198_D682A8B8.pnach @@ -2,7 +2,7 @@ gametitle=NBA Live 2003 (E)(SLES-51198). [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLES-51200_0C19A18B.pnach b/patches/SLES-51200_0C19A18B.pnach index 82632e63..7f23d6e1 100644 --- a/patches/SLES-51200_0C19A18B.pnach +++ b/patches/SLES-51200_0C19A18B.pnach @@ -2,7 +2,7 @@ gametitle=Kelly Slater's Pro Surfer [PAL-En] (SLES_512.00) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0029FB58,word,3C01435F //3C014334 Zoom diff --git a/patches/SLES-51201_DA9E1F73.pnach b/patches/SLES-51201_DA9E1F73.pnach index e80f575c..e9fa4e37 100644 --- a/patches/SLES-51201_DA9E1F73.pnach +++ b/patches/SLES-51201_DA9E1F73.pnach @@ -2,7 +2,7 @@ gametitle=Kelly Slater's Pro Surfer [PAL-M3-En-Fr-De] (SLES_512.01) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0029FB58,word,3C01435F //3C014334 Zoom diff --git a/patches/SLES-51202_DBA95103.pnach b/patches/SLES-51202_DBA95103.pnach index 229b9488..d7104f04 100644 --- a/patches/SLES-51202_DBA95103.pnach +++ b/patches/SLES-51202_DBA95103.pnach @@ -2,7 +2,7 @@ gametitle=Wreckless - The Yakuza Missions (PAL-M3) (SLES-51202) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00147ca4,word,3c013f40 // 3c013f80 hor fov diff --git a/patches/SLES-51208_9F45265C.pnach b/patches/SLES-51208_9F45265C.pnach index c1deae58..3ad5bf7f 100644 --- a/patches/SLES-51208_9F45265C.pnach +++ b/patches/SLES-51208_9F45265C.pnach @@ -2,7 +2,7 @@ gametitle=Rocky (E)(SLES-51208) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51223_A2DD109B.pnach b/patches/SLES-51223_A2DD109B.pnach index 630d3b89..fb169492 100644 --- a/patches/SLES-51223_A2DD109B.pnach +++ b/patches/SLES-51223_A2DD109B.pnach @@ -2,7 +2,7 @@ gametitle=Runabout 3 - Neo Age (E)(SLES-51223) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51235_A8D651D2.pnach b/patches/SLES-51235_A8D651D2.pnach index b9ad1bdb..f86c8a03 100644 --- a/patches/SLES-51235_A8D651D2.pnach +++ b/patches/SLES-51235_A8D651D2.pnach @@ -2,7 +2,7 @@ gametitle=Raging Blades (E)(SLES-51235) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51236_262525F4.pnach b/patches/SLES-51236_262525F4.pnach index 803b3594..eca5b402 100644 --- a/patches/SLES-51236_262525F4.pnach +++ b/patches/SLES-51236_262525F4.pnach @@ -2,7 +2,7 @@ gametitle=Gungrave (PAL-M3) (SLES-51236) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001c225c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-51244_200BC0E6.pnach b/patches/SLES-51244_200BC0E6.pnach index 7dac4c04..4f2979b3 100644 --- a/patches/SLES-51244_200BC0E6.pnach +++ b/patches/SLES-51244_200BC0E6.pnach @@ -1,9 +1,9 @@ -gametitle=XIII (SLES-51244) +gametitle=XIII (PAL-M) (SLES-51244) 200BC0E6 [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,001d76cc,word,14400005 patch=1,EE,001d76d0,word,3c04003d patch=1,EE,001d76d4,word,0c09fcf4 @@ -67,8 +67,7 @@ patch=1,EE,001d77b0,word,ae4300ac patch=1,EE,00356204,word,34028aa0 patch=1,EE,003561b8,word,3c027560 - [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,00191C64,word,28420001 //28420002 +description=Might need EE Overclock at 130%. +patch=1,EE,00191C64,word,28420001 //28420002 \ No newline at end of file diff --git a/patches/SLES-51244_9C0F01BD.pnach b/patches/SLES-51244_9C0F01BD.pnach index 9ec5a8b2..fdabf137 100644 --- a/patches/SLES-51244_9C0F01BD.pnach +++ b/patches/SLES-51244_9C0F01BD.pnach @@ -2,7 +2,7 @@ gametitle=XIII (PAL-M5) (SLES-51244) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by ElHecht) +author=nemesis2000 (pnach by ElHecht) // 16:9 patch=1,EE,001d7758,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-51249_EE3BCA71.pnach b/patches/SLES-51249_EE3BCA71.pnach index a1fccffc..d2acd5f8 100644 --- a/patches/SLES-51249_EE3BCA71.pnach +++ b/patches/SLES-51249_EE3BCA71.pnach @@ -1,8 +1,8 @@ -gametitle=Castleween (E)(SLES-51249) +gametitle=Castleween PAL-M SLES-51249 EE3BCA71 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -13,4 +13,7 @@ patch=1,EE,002b9c78,word,3c023f40 //3c023f80 //Zoom patch=1,EE,002794b8,word,3c033f40 //3c033f80 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,00217344,word,3C030000 //3C030001 \ No newline at end of file diff --git a/patches/SLES-51250_09F4038B.pnach b/patches/SLES-51250_09F4038B.pnach index b355cd3c..62c53328 100644 --- a/patches/SLES-51250_09F4038B.pnach +++ b/patches/SLES-51250_09F4038B.pnach @@ -2,7 +2,7 @@ gametitle=Shox - Rally Reinvented (E)(SLES-51250) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51250_3DF10389.pnach b/patches/SLES-51250_3DF10389.pnach index 60f88887..0e42c2ab 100644 --- a/patches/SLES-51250_3DF10389.pnach +++ b/patches/SLES-51250_3DF10389.pnach @@ -2,7 +2,7 @@ gametitle=Shox (PAL) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51252_9ABF90FB.pnach b/patches/SLES-51252_9ABF90FB.pnach index 058aa55a..073d60c5 100644 --- a/patches/SLES-51252_9ABF90FB.pnach +++ b/patches/SLES-51252_9ABF90FB.pnach @@ -2,7 +2,7 @@ gametitle=The Lord of the Rings: The Two Towers (PAL-Spain) (SLES_512.56) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00107160,word,3C023FE3 //3C023FAA hor fov diff --git a/patches/SLES-51252_DC43F2B8.pnach b/patches/SLES-51252_DC43F2B8.pnach index 2e6aa2c9..18a7163a 100644 --- a/patches/SLES-51252_DC43F2B8.pnach +++ b/patches/SLES-51252_DC43F2B8.pnach @@ -2,7 +2,7 @@ gametitle=The Lord of the Rings - The Two Towers (PAL-M3) (SLES-51252) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00107160,word,3c023fe3 // 3c023faa hor fov diff --git a/patches/SLES-51253_88F67266.pnach b/patches/SLES-51253_88F67266.pnach index e4c470ba..8059755a 100644 --- a/patches/SLES-51253_88F67266.pnach +++ b/patches/SLES-51253_88F67266.pnach @@ -2,7 +2,7 @@ gametitle=Lord of the Rings, The - The Two Towers (Seigneur des Anneaux - Les De [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Catarax +author=Catarax // 16:9 patch=1,EE,00107160,word,3c023fe3 // 3c023faa hor fov diff --git a/patches/SLES-51257_046962B0.pnach b/patches/SLES-51257_046962B0.pnach index 9b2a8818..5f713b31 100644 --- a/patches/SLES-51257_046962B0.pnach +++ b/patches/SLES-51257_046962B0.pnach @@ -2,7 +2,7 @@ gametitle=The Sims (E)(SLES-51257) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51283_D1D97A29.pnach b/patches/SLES-51283_D1D97A29.pnach index c59be7e4..3190fb0b 100644 --- a/patches/SLES-51283_D1D97A29.pnach +++ b/patches/SLES-51283_D1D97A29.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown - Shut Your Mouth (PAL-E) (SLES-51283) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001035e4,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-51284_C82BB39E.pnach b/patches/SLES-51284_C82BB39E.pnach index f8be02d4..23274f79 100644 --- a/patches/SLES-51284_C82BB39E.pnach +++ b/patches/SLES-51284_C82BB39E.pnach @@ -2,7 +2,7 @@ gametitle=Contra - Shattered Soldier (PAL-M5) (SLES-51284) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,005dd10c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-51284_EC3F279F.pnach b/patches/SLES-51284_EC3F279F.pnach index f8be02d4..23274f79 100644 --- a/patches/SLES-51284_EC3F279F.pnach +++ b/patches/SLES-51284_EC3F279F.pnach @@ -2,7 +2,7 @@ gametitle=Contra - Shattered Soldier (PAL-M5) (SLES-51284) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,005dd10c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-51285_8FDE8E16.pnach b/patches/SLES-51285_8FDE8E16.pnach index 7993ae29..68411565 100644 --- a/patches/SLES-51285_8FDE8E16.pnach +++ b/patches/SLES-51285_8FDE8E16.pnach @@ -2,7 +2,7 @@ gametitle=SpongeBob Squarepants - Revenge of the Flying Dutchman (E)(SLES-51285) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51286_EE3180F4.pnach b/patches/SLES-51286_EE3180F4.pnach index b94028cb..7d0191cb 100644 --- a/patches/SLES-51286_EE3180F4.pnach +++ b/patches/SLES-51286_EE3180F4.pnach @@ -2,7 +2,7 @@ gametitle=X-Men 2 - Wolverine's Revenge (E)(SLES-51286) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa, ElHecht, patch is removed due to it causes crashes on level 3. +author=Arapapa, ElHecht, patch is removed due to it causes crashes on level 3. //Widescreen hack 16:9 diff --git a/patches/SLES-51290_54FBDC95.pnach b/patches/SLES-51290_54FBDC95.pnach index 19ac9779..8a581407 100644 --- a/patches/SLES-51290_54FBDC95.pnach +++ b/patches/SLES-51290_54FBDC95.pnach @@ -2,7 +2,7 @@ gametitle=Sword of the Samurai [PAL] (SLES_512.90) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001AC994,word,3C013F40 //3C013F80 (Increases hor. axis) diff --git a/patches/SLES-51302_EC56B5F6.pnach b/patches/SLES-51302_EC56B5F6.pnach index e5cbb8ae..73442796 100644 --- a/patches/SLES-51302_EC56B5F6.pnach +++ b/patches/SLES-51302_EC56B5F6.pnach @@ -2,7 +2,7 @@ gametitle=Bomberman Kart (PAL)(SLES-51302) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,0014e3f8,word,3c033fab //3c033f80 diff --git a/patches/SLES-51307_EDADD39F.pnach b/patches/SLES-51307_EDADD39F.pnach index f730cf99..c59e0362 100644 --- a/patches/SLES-51307_EDADD39F.pnach +++ b/patches/SLES-51307_EDADD39F.pnach @@ -2,7 +2,7 @@ gametitle=Wild Arms 3 (PAL-E) (SLES-51307) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by nemesis2000 +author=nemesis2000 //Ported to PAL, added 16:10 support (ElHecht) // // 16:9 diff --git a/patches/SLES-51308_AFCAEC88.pnach b/patches/SLES-51308_AFCAEC88.pnach index 8481ed26..4ab1b3f8 100644 --- a/patches/SLES-51308_AFCAEC88.pnach +++ b/patches/SLES-51308_AFCAEC88.pnach @@ -2,7 +2,7 @@ gametitle=Reel Fishing III (E)(SLES-51308) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51315_647D9161.pnach b/patches/SLES-51315_647D9161.pnach index eb1f30d0..5d0c838c 100644 --- a/patches/SLES-51315_647D9161.pnach +++ b/patches/SLES-51315_647D9161.pnach @@ -1,4 +1,4 @@ -gametitle=The Great Escape (E)(SLES-51315) 647D9161 +gametitle=The Great Escape (PAL-M) (SLES-51315) 647D9161 [Widescreen 16:9] gsaspectratio=16:9 @@ -13,5 +13,5 @@ patch=1,EE,002c4f34,word,34210000 //3421fa36 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,002AEBF8,word,2C420001 //2C420002 \ No newline at end of file diff --git a/patches/SLES-51333_5BE3F481.pnach b/patches/SLES-51333_5BE3F481.pnach index 126fdaee..c7eb1c54 100644 --- a/patches/SLES-51333_5BE3F481.pnach +++ b/patches/SLES-51333_5BE3F481.pnach @@ -1,6 +1,23 @@ gametitle=Dark Angel (PAL-M) SLES-51333 5BE3F481 -[50 FPS] +[Widescreen 16:9] +gsaspectratio=16:9 author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,0025BE04,word,00000000 //1040FFFA \ No newline at end of file +description=Renders the game in 16:9 aspect ratio +patch=1,EE,002504BC,word,3C013F30 +patch=1,EE,0034AB30,word,3C013F1A +patch=1,EE,00280878,word,3C013FE3 +patch=1,EE,0028AB98,word,3C013F22 + +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,00280B74,word,1040000D + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,003B9B64,word,24110000 +patch=1,EE,003B9B68,word,24120050 +patch=1,EE,003B9B74,word,24130001 \ No newline at end of file diff --git a/patches/SLES-51345_945301BE.pnach b/patches/SLES-51345_945301BE.pnach index 8810f991..3e95f403 100644 --- a/patches/SLES-51345_945301BE.pnach +++ b/patches/SLES-51345_945301BE.pnach @@ -2,7 +2,7 @@ gametitle=Run Like Hell (PAL-M5) (SLES-51345) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00110ba0,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-51347_F9E575D0.pnach b/patches/SLES-51347_F9E575D0.pnach new file mode 100644 index 00000000..db5025a3 --- /dev/null +++ b/patches/SLES-51347_F9E575D0.pnach @@ -0,0 +1,6 @@ +gametitle=Die Hard - Vendetta PAL-M SLES-51347 F9E575D0 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock (180%). +patch=1,EE,00283428,word,AF829A90 //AF849A90 \ No newline at end of file diff --git a/patches/SLES-51349_7EA8E7C5.pnach b/patches/SLES-51349_7EA8E7C5.pnach index 4d682015..898ec825 100644 --- a/patches/SLES-51349_7EA8E7C5.pnach +++ b/patches/SLES-51349_7EA8E7C5.pnach @@ -2,7 +2,7 @@ gametitle=Evolution Skateboarding (E)(SLES-51349) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51350_E949C93F.pnach b/patches/SLES-51350_E949C93F.pnach index ffcd4f22..4a6677e3 100644 --- a/patches/SLES-51350_E949C93F.pnach +++ b/patches/SLES-51350_E949C93F.pnach @@ -1,8 +1,8 @@ -gametitle=Ben Hur - Blood of Braves (E)(SLES-51350) +gametitle=Ben Hur - Blood of Braves PAL-M SLES-51350 E949C93F [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //X-Fov @@ -18,4 +18,11 @@ patch=1,EE,003a92a4,word,080da159 //Zoom //patch=1,EE,00368538,word,3c033fc0 //3c034000 - +[50/60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0061FF20,word,00000000 //00000001 +patch=1,EE,0011a9d4,word,3c023C88 //3c023d08 +patch=1,EE,0036f6b8,word,3c033C88 //3c033d08 +patch=1,EE,0011a9b0,word,3c023ca3 //3c023d23 +patch=1,EE,0036f6cc,word,3c033ca3 //3c033d23 \ No newline at end of file diff --git a/patches/SLES-51354_960FFA6A.pnach b/patches/SLES-51354_960FFA6A.pnach index a98a540f..78ab047c 100644 --- a/patches/SLES-51354_960FFA6A.pnach +++ b/patches/SLES-51354_960FFA6A.pnach @@ -1,13 +1,13 @@ -gametitle=Jurassic Park - Operation Genesis (E)(SLES-51354) +gametitle=Jurassic Park - Operation Genesis (PAL-M) (SLES-51354) 960FFA6A [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,0055a410,word,3ff3aaab //3eaaaaab patch=1,EE,0055c1f4,word,3FB60CD0 //3f8889a0 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00564EE4,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-51355_506644B3.pnach b/patches/SLES-51355_506644B3.pnach index c39979a1..7d15b3e0 100644 --- a/patches/SLES-51355_506644B3.pnach +++ b/patches/SLES-51355_506644B3.pnach @@ -2,7 +2,7 @@ gametitle=Big Mutha Truckers (PAL)(SLES-51355) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51356_52C19E70.pnach b/patches/SLES-51356_52C19E70.pnach index 1c5ff591..d47e3f1d 100644 --- a/patches/SLES-51356_52C19E70.pnach +++ b/patches/SLES-51356_52C19E70.pnach @@ -2,7 +2,7 @@ gametitle=Road Trip Adventure PAL (SLES_513.56) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack & pnach by El_Patas +author=El_Patas //Gameplay patch=1,EE,203D5990,extended,3F19999A // 3F4CCCCD (increases hor. axis) diff --git a/patches/SLES-51362_67F4E32F.pnach b/patches/SLES-51362_67F4E32F.pnach index 069d431f..d9bf7f83 100644 --- a/patches/SLES-51362_67F4E32F.pnach +++ b/patches/SLES-51362_67F4E32F.pnach @@ -2,7 +2,7 @@ gametitle=The Simpsons - Skateboarding (PAL-G) (SLES-51362) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0022a6ac,word,08121331 // 46070202 diff --git a/patches/SLES-51371_A2BB25B3.pnach b/patches/SLES-51371_A2BB25B3.pnach index 7a845d04..8389664f 100644 --- a/patches/SLES-51371_A2BB25B3.pnach +++ b/patches/SLES-51371_A2BB25B3.pnach @@ -2,7 +2,7 @@ gametitle=Pride FC - Fighting Championships (E)(SLES-51371) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen Hack 16:9 diff --git a/patches/SLES-51372_4AD214CB.pnach b/patches/SLES-51372_4AD214CB.pnach index 84147732..f5fce736 100644 --- a/patches/SLES-51372_4AD214CB.pnach +++ b/patches/SLES-51372_4AD214CB.pnach @@ -2,7 +2,7 @@ gametitle=Wallace & Gromit in Project Zoo (E)(SLES-51372) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51381_00C584CB.pnach b/patches/SLES-51381_00C584CB.pnach index 901235be..a1876374 100644 --- a/patches/SLES-51381_00C584CB.pnach +++ b/patches/SLES-51381_00C584CB.pnach @@ -2,7 +2,7 @@ gametitle=Everblue 2 [PAL] (SLES_513.81) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00229278,word,3C033F06 //3C033F33 (Increases hor. axis) diff --git a/patches/SLES-51383_5162BCCA.pnach b/patches/SLES-51383_5162BCCA.pnach new file mode 100644 index 00000000..c63411ea --- /dev/null +++ b/patches/SLES-51383_5162BCCA.pnach @@ -0,0 +1,6 @@ +gametitle=Beach King Stunt Racer PAL-M SLES-51383 5162BCCA + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0016D4A0,word,24020000 //24020001 \ No newline at end of file diff --git a/patches/SLES-51385_4603820E.pnach b/patches/SLES-51385_4603820E.pnach index b6dce790..f32a32f1 100644 --- a/patches/SLES-51385_4603820E.pnach +++ b/patches/SLES-51385_4603820E.pnach @@ -2,5 +2,5 @@ gametitle=Rugrats Rescate Real (PAL-S) SLES-51385 4603820E [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0042D820,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-51387_E892412E.pnach b/patches/SLES-51387_E892412E.pnach index 2e818701..29bf3c2c 100644 --- a/patches/SLES-51387_E892412E.pnach +++ b/patches/SLES-51387_E892412E.pnach @@ -1,8 +1,8 @@ -gametitle=World Racing (E)(SLES-51387) +gametitle=World Racing PAL-M SLES-51387 E892412E [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -14,4 +14,7 @@ patch=1,EE,0022dd68,word,4600c602 //00000000 //Render fix patch=1,EE,002016cc,word,3c013f2b //3c013f00 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,001CF670,word,10400004 //14400004 \ No newline at end of file diff --git a/patches/SLES-51393_D1ACD489.pnach b/patches/SLES-51393_D1ACD489.pnach new file mode 100644 index 00000000..cac004ca --- /dev/null +++ b/patches/SLES-51393_D1ACD489.pnach @@ -0,0 +1,7 @@ +gametitle=Syberia SLES-51393 D1ACD489 + +[480p Mode] +gsinterlacemode=1 +author=Gabominated +description=SDTV 480p mode at start. Use Software renderer for FMVs to avoid shake at videos +patch=1,EE,001e6314,word,24060050 //24060003 diff --git a/patches/SLES-51397_949356AE.pnach b/patches/SLES-51397_949356AE.pnach new file mode 100644 index 00000000..6a00e9cb --- /dev/null +++ b/patches/SLES-51397_949356AE.pnach @@ -0,0 +1,6 @@ +gametitle=IndyCar Series PAL-M SLES-51397 949356AE + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0026007C,word,00000000 \ No newline at end of file diff --git a/patches/SLES-51399_DE5AF9A8.pnach b/patches/SLES-51399_DE5AF9A8.pnach index bbf8c4de..ab6b3590 100644 --- a/patches/SLES-51399_DE5AF9A8.pnach +++ b/patches/SLES-51399_DE5AF9A8.pnach @@ -2,7 +2,7 @@ gametitle=Armored Core 3 (PAL-E) (SLES-51399) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002e8c7c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES_51403_A3AE7C2A.pnach b/patches/SLES-51403_A3AE7C2A.pnach similarity index 81% rename from patches/SLES_51403_A3AE7C2A.pnach rename to patches/SLES-51403_A3AE7C2A.pnach index 7f5c075f..069a3a8b 100644 --- a/patches/SLES_51403_A3AE7C2A.pnach +++ b/patches/SLES-51403_A3AE7C2A.pnach @@ -8,4 +8,4 @@ comment=Widescreen Hack Conversion patch=1,EE,00154998,word,3C033F40 //3C033F80 (fov) patch=1,EE,001549E0,word,3C033F40 //3C033F80 (fov) patch=1,EE,00155168,word,3C024455 //3C024422 (render fix) -patch=1,EE,001553D0,word,3C024455 //3C024422 (render fix) \ No newline at end of file +patch=1,EE,001553D0,word,3C024455 //3C024422 (render fix) diff --git a/patches/SLES-51435_C99317AD.pnach b/patches/SLES-51435_C99317AD.pnach index b1cb4d5d..f5d46b50 100644 --- a/patches/SLES-51435_C99317AD.pnach +++ b/patches/SLES-51435_C99317AD.pnach @@ -2,7 +2,7 @@ gametitle=International Superstar Soccer 3 (PAL-M5) (SLES-51435) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 // Note: data is stored in ELF00.DAT diff --git a/patches/SLES-51441_839D614D.pnach b/patches/SLES-51441_839D614D.pnach index 7a09d56d..88bf08fb 100644 --- a/patches/SLES-51441_839D614D.pnach +++ b/patches/SLES-51441_839D614D.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 3: Xtreme Legends (E)(SLES-51441) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht (PAL by Arapapa) +author=ElHecht (PAL by Arapapa) //Widescreen 16:9 diff --git a/patches/SLES-51443_0F84FE89.pnach b/patches/SLES-51443_0F84FE89.pnach index 68b5603e..b2ae6d3d 100644 --- a/patches/SLES-51443_0F84FE89.pnach +++ b/patches/SLES-51443_0F84FE89.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 3 - Xtreme Legends (PAL-G) (SLES-51443) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,002724d8,word,3faaaaab // 3f800000 zoom diff --git a/patches/SLES-51448_F79AF536.pnach b/patches/SLES-51448_F79AF536.pnach index d12b0116..7e7ce9b1 100644 --- a/patches/SLES-51448_F79AF536.pnach +++ b/patches/SLES-51448_F79AF536.pnach @@ -2,7 +2,7 @@ gametitle=Resident Evil - Dead Aim (PAL-M5) (SLES-51448) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00233368,word,3c1943f0 // 3c013f80 hor fov diff --git a/patches/SLES-51456_1563EBAC.pnach b/patches/SLES-51456_1563EBAC.pnach index 9d675e97..852f8ad9 100644 --- a/patches/SLES-51456_1563EBAC.pnach +++ b/patches/SLES-51456_1563EBAC.pnach @@ -2,7 +2,7 @@ gametitle=LMA Manager 2004 (E)(SLES-51456) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51458_DE14DDBF.pnach b/patches/SLES-51458_DE14DDBF.pnach index 6099c964..2936bc40 100644 --- a/patches/SLES-51458_DE14DDBF.pnach +++ b/patches/SLES-51458_DE14DDBF.pnach @@ -2,7 +2,7 @@ gametitle=BDFL Manager 2004 (G)(SLES-51458) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51467_6EEE06DD.pnach b/patches/SLES-51467_6EEE06DD.pnach index 70270851..ef5f1d7f 100644 --- a/patches/SLES-51467_6EEE06DD.pnach +++ b/patches/SLES-51467_6EEE06DD.pnach @@ -1,16 +1,16 @@ -gametitle=Freedom Fighters (PAL-E) SLES-51467 BADCA543 secondary crc 6EEE06DD +gametitle=Freedom Fighters (PAL-E) SLES-51467 6EEE06DD FF.ELF [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Enable native widescreen -patch=1,EE,0056967C,word,00000001 +description=Enable native widescreen +patch=1,EE,0056967C,byte,01 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps +description=SDTV 480p mode at start. patch=1,EE,0046CA84,word,3C050000 -patch=1,EE,0046CA8C,word,3C060052 +patch=1,EE,0046CA8C,word,3C060050 patch=1,EE,0046CA94,word,3C070001 -patch=1,EE,0056B808,word,00000000 -patch=1,EE,00540530,word,00000009 \ No newline at end of file +patch=1,EE,0056B808,word,00000000 \ No newline at end of file diff --git a/patches/SLES-51467_BADCA543.pnach b/patches/SLES-51467_BADCA543.pnach index 740e6f11..6d02fad6 100644 --- a/patches/SLES-51467_BADCA543.pnach +++ b/patches/SLES-51467_BADCA543.pnach @@ -1,11 +1,11 @@ -gametitle=Freedom Fighters (PAL-E) SLES-51467 BADCA543 secondary crc 6EEE06DD +gametitle=Freedom Fighters (PAL-E) SLES-51467 BADCA543 //Corresponds to the main crc to activate the secondary crc 6EEE06DD called FF.ELF [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Enable native widescreen +description=Enable native widescreen -[60 FPS] +[480p Mode] author=PeterDelta -comment=Forces progressive scan and run at 60 fps \ No newline at end of file +description=SDTV 480p mode at start. \ No newline at end of file diff --git a/patches/SLES-51468_A6698B41.pnach b/patches/SLES-51468_A6698B41.pnach index 4cd4155f..7bf6f5d2 100644 --- a/patches/SLES-51468_A6698B41.pnach +++ b/patches/SLES-51468_A6698B41.pnach @@ -1,16 +1,16 @@ -gametitle=Freedom Fighters (PAL-F) SLES-51468 BADCA543 secondary crc A6698B41 +gametitle=Freedom Fighters (PAL-F) SLES-51468 A6698B41 FF.ELF [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Enable native widescreen -patch=1,EE,0056987C,word,00000001 +description=Enable native widescreen +patch=1,EE,0056987C,byte,01 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps +description=SDTV 480p mode at start. patch=1,EE,0046CB84,word,3C050000 -patch=1,EE,0046CB8C,word,3C060052 +patch=1,EE,0046CB8C,word,3C060050 patch=1,EE,0046CB94,word,3C070001 -patch=1,EE,0056BA08,word,00000000 -patch=1,EE,005406C0,word,00000009 \ No newline at end of file +patch=1,EE,0056BA08,word,00000000 \ No newline at end of file diff --git a/patches/SLES-51468_BADCA543.pnach b/patches/SLES-51468_BADCA543.pnach index e94adf77..f8055526 100644 --- a/patches/SLES-51468_BADCA543.pnach +++ b/patches/SLES-51468_BADCA543.pnach @@ -1,11 +1,11 @@ -gametitle=Freedom Fighters (PAL-F) SLES-51468 BADCA543 secondary crc A6698B41 +gametitle=Freedom Fighters (PAL-F) SLES-51468 BADCA543 //Corresponds to the main crc to activate the secondary crc A6698B41 called FF.ELF [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Enable native widescreen +description=Enable native widescreen -[60 FPS] +[480p Mode] author=PeterDelta -comment=Forces progressive scan and run at 60 fps \ No newline at end of file +description=SDTV 480p mode at start. \ No newline at end of file diff --git a/patches/SLES-51469_6EEE06DD.pnach b/patches/SLES-51469_6EEE06DD.pnach index 9401893d..4e9431f0 100644 --- a/patches/SLES-51469_6EEE06DD.pnach +++ b/patches/SLES-51469_6EEE06DD.pnach @@ -1,16 +1,16 @@ -gametitle=Freedom Fighters (PAL-G) SLES-51469 BADCA543 secondary crc 6EEE06DD +gametitle=Freedom Fighters (PAL-G) SLES-51469 6EEE06DD FF.ELF [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Enable native widescreen -patch=1,EE,0056967C,word,00000001 +description=Enable native widescreen +patch=1,EE,0056967C,byte,01 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps +description=SDTV 480p mode at start. patch=1,EE,0046CA84,word,3C050000 -patch=1,EE,0046CA8C,word,3C060052 +patch=1,EE,0046CA8C,word,3C060050 patch=1,EE,0046CA94,word,3C070001 -patch=1,EE,0056B808,word,00000000 -patch=1,EE,00540530,word,00000009 \ No newline at end of file +patch=1,EE,0056B808,word,00000000 \ No newline at end of file diff --git a/patches/SLES-51469_BADCA543.pnach b/patches/SLES-51469_BADCA543.pnach index 4b90441d..699f6304 100644 --- a/patches/SLES-51469_BADCA543.pnach +++ b/patches/SLES-51469_BADCA543.pnach @@ -1,11 +1,11 @@ -gametitle=Freedom Fighters (PAL-G) SLES-51469 BADCA543 secondary crc 6EEE06DD +gametitle=Freedom Fighters (PAL-G) SLES-51469 BADCA543 //Corresponds to the main crc to activate the secondary crc 6EEE06DD called FF.ELF [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Enable native widescreen +description=Enable native widescreen -[60 FPS] +[480p Mode] author=PeterDelta -comment=Forces progressive scan and run at 60 fps \ No newline at end of file +description=SDTV 480p mode at start. \ No newline at end of file diff --git a/patches/SLES-51470_6EEE06DD.pnach b/patches/SLES-51470_6EEE06DD.pnach index f3c8118b..2faaeae0 100644 --- a/patches/SLES-51470_6EEE06DD.pnach +++ b/patches/SLES-51470_6EEE06DD.pnach @@ -1,16 +1,16 @@ -gametitle=Freedom Fighters (PAL-I) SLES-51470 BADCA543 secondary crc 6EEE06DD +gametitle=Freedom Fighters (PAL-I) SLES-51470 6EEE06DD FF.ELF [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Enable native widescreen -patch=1,EE,0056967C,word,00000001 +description=Enable native widescreen +patch=1,EE,0056967C,byte,01 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps +description=SDTV 480p mode at start. patch=1,EE,0046CA84,word,3C050000 -patch=1,EE,0046CA8C,word,3C060052 +patch=1,EE,0046CA8C,word,3C060050 patch=1,EE,0046CA94,word,3C070001 -patch=1,EE,0056B808,word,00000000 -patch=1,EE,00540530,word,00000009 \ No newline at end of file +patch=1,EE,0056B808,word,00000000 \ No newline at end of file diff --git a/patches/SLES-51470_BADCA543.pnach b/patches/SLES-51470_BADCA543.pnach index abe4acf2..82654f5d 100644 --- a/patches/SLES-51470_BADCA543.pnach +++ b/patches/SLES-51470_BADCA543.pnach @@ -1,11 +1,11 @@ -gametitle=Freedom Fighters (PAL-I) SLES-51470 BADCA543 secondary crc 6EEE06DD +gametitle=Freedom Fighters (PAL-I) SLES-51470 BADCA543 //Corresponds to the main crc to activate the secondary crc 6EEE06DD called FF.ELF [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Enable native widescreen +description=Enable native widescreen -[60 FPS] +[480p Mode] author=PeterDelta -comment=Forces progressive scan and run at 60 fps \ No newline at end of file +description=SDTV 480p mode at start. \ No newline at end of file diff --git a/patches/SLES-51471_6EEE06DD.pnach b/patches/SLES-51471_6EEE06DD.pnach index 50316b05..0585026f 100644 --- a/patches/SLES-51471_6EEE06DD.pnach +++ b/patches/SLES-51471_6EEE06DD.pnach @@ -1,16 +1,16 @@ -gametitle=Freedom Fighters (PAL-S) SLES-51471 BADCA543 secondary crc 6EEE06DD +gametitle=Freedom Fighters (PAL-S) SLES-51471 6EEE06DD FF.ELF [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Enable native widescreen -patch=1,EE,0056967C,word,00000001 +description=Enable native widescreen +patch=1,EE,0056967C,byte,01 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps +description=SDTV 480p mode at start. patch=1,EE,0046CA84,word,3C050000 -patch=1,EE,0046CA8C,word,3C060052 +patch=1,EE,0046CA8C,word,3C060050 patch=1,EE,0046CA94,word,3C070001 -patch=1,EE,0056B808,word,00000000 -patch=1,EE,00540530,word,00000009 \ No newline at end of file +patch=1,EE,0056B808,word,00000000 \ No newline at end of file diff --git a/patches/SLES-51471_BADCA543.pnach b/patches/SLES-51471_BADCA543.pnach index e9609912..375f4e39 100644 --- a/patches/SLES-51471_BADCA543.pnach +++ b/patches/SLES-51471_BADCA543.pnach @@ -1,11 +1,11 @@ -gametitle=Freedom Fighters (PAL-S) SLES-51471 BADCA543 secondary crc 6EEE06DD +gametitle=Freedom Fighters (PAL-S) SLES-51471 BADCA543 //Corresponds to the main crc to activate the secondary crc 6EEE06DD called FF.ELF [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Enable native widescreen +description=Enable native widescreen -[60 FPS] +[480p Mode] author=PeterDelta -comment=Forces progressive scan and run at 60 fps \ No newline at end of file +description=SDTV 480p mode at start. \ No newline at end of file diff --git a/patches/SLES-51474_C81B1F33.pnach b/patches/SLES-51474_C81B1F33.pnach index 0781f1b3..524eac5c 100644 --- a/patches/SLES-51474_C81B1F33.pnach +++ b/patches/SLES-51474_C81B1F33.pnach @@ -3,7 +3,8 @@ gametitle=BloodRayne (PAL-M) SLES-51474 C81B1F33 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Widescreen hack ported from the ntsc-u version by pelvicthrustman +description=Renders the game in 16:9 aspect ratio +//Ported from the SLUS-20461 by pelvicthrustman patch=1,EE,001EF6D4,word,3c040001 //10800020 widescreen patch=1,EE,0020BD04,word,3c0141d0 //3c014270 X scalar "Face hud" patch=1,EE,0020BEA0,word,3c014298 //3c0142a0 Y correction @@ -24,5 +25,5 @@ patch=1,EE,0020C5B0,word,46011042 //46011842 Offset correction [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,002CA1B8,word,28630001 //28630002 \ No newline at end of file diff --git a/patches/SLES-51479_7B8477F9.pnach b/patches/SLES-51479_7B8477F9.pnach index d2fd6875..f6596ae3 100644 --- a/patches/SLES-51479_7B8477F9.pnach +++ b/patches/SLES-51479_7B8477F9.pnach @@ -2,7 +2,7 @@ gametitle=Def Jam: Vendetta [PAL] (SLES_514.79) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001A1D24,word,3C013F10 //3C013F40 (Increases hor. axis) diff --git a/patches/SLES-51481_92ABE4E1.pnach b/patches/SLES-51481_92ABE4E1.pnach index 057551dc..c0d0ee8e 100644 --- a/patches/SLES-51481_92ABE4E1.pnach +++ b/patches/SLES-51481_92ABE4E1.pnach @@ -2,7 +2,7 @@ gametitle=NBA Street Vol. 2 [PAL-M2] (SLES_514.81) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Ko81e24wy +author=Ko81e24wy //Gameplay 16:9 patch=1,EE,208D6AA0,extended,3F400000 //3F800000 (Increases hor. axis) diff --git a/patches/SLES-51492_0A4A7296.pnach b/patches/SLES-51492_0A4A7296.pnach index 1d92380e..5dd126a0 100644 --- a/patches/SLES-51492_0A4A7296.pnach +++ b/patches/SLES-51492_0A4A7296.pnach @@ -2,7 +2,7 @@ gametitle=Pro Beach Soccer (E)(SLES-51492) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51495_96B76E56.pnach b/patches/SLES-51495_96B76E56.pnach index 896ffea9..5ae93d23 100644 --- a/patches/SLES-51495_96B76E56.pnach +++ b/patches/SLES-51495_96B76E56.pnach @@ -2,7 +2,7 @@ gametitle=SX Superstar (E)(SLES-51495) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51496_867AB5D0.pnach b/patches/SLES-51496_867AB5D0.pnach index 8f922925..7108fdd6 100644 --- a/patches/SLES-51496_867AB5D0.pnach +++ b/patches/SLES-51496_867AB5D0.pnach @@ -2,7 +2,7 @@ gametitle=Breath of Fire - Dragon Quarter (PAL-M5) (SLES-51496) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by nemesis2000 +author=nemesis2000 //ported to PAL (ElHecht) patch=1,EE,0012f71c,word,3c024306 // 3c024333 hor val patch=1,EE,0012f720,word,3442f940 // 3442f700 hor val diff --git a/patches/SLES-51507_EB25115F.pnach b/patches/SLES-51507_EB25115F.pnach index 2149b58e..10c44a91 100644 --- a/patches/SLES-51507_EB25115F.pnach +++ b/patches/SLES-51507_EB25115F.pnach @@ -1,9 +1,9 @@ -gametitle=Futurama (PAL-M5) (SLES-51507) +gametitle=Futurama (PAL-M5) (SLES-51507) EB25115F [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen hack +description=Renders the game in 16:9 aspect ratio // 16:9 patch=1,EE,00101eac,word,0812aca8 // e60100b4 patch=1,EE,00101eb0,word,00000000 // e60000b0 @@ -14,9 +14,10 @@ patch=1,EE,004ab2ac,word,e60100b4 // 00000000 patch=1,EE,004ab2b0,word,e60000b0 // 00000000 patch=1,EE,004ab2b4,word,080407ac // 00000000 -[Mode 480p] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode 480p at startup +description=SDTV 480p mode at start. patch=1,EE,003EA94C,word,24110000 patch=1,EE,003EA950,word,24120050 patch=1,EE,003EA95C,word,24130001 \ No newline at end of file diff --git a/patches/SLES-51508_804F5858.pnach b/patches/SLES-51508_804F5858.pnach index f957a23e..0747bb05 100644 --- a/patches/SLES-51508_804F5858.pnach +++ b/patches/SLES-51508_804F5858.pnach @@ -2,7 +2,7 @@ gametitle=Hulk (E)(SLES-51508) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51511_1B09B0E4.pnach b/patches/SLES-51511_1B09B0E4.pnach index a943e581..3d568a55 100644 --- a/patches/SLES-51511_1B09B0E4.pnach +++ b/patches/SLES-51511_1B09B0E4.pnach @@ -1,10 +1,16 @@ -gametitle=Crash Nitro Kart [PAL-M6] (SLES_515.11) +gametitle=Crash Nitro Kart [PAL-M6] (SLES_515.11) 1B09B0E4 [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Gameplay 16:9 patch=1,EE,0058BF68,word,3C023F17 //3C023F00 (Increases hor. axis) - +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,00446A74,word,24110000 +patch=1,EE,00446A78,word,24120050 +patch=1,EE,00446A84,word,24130001 \ No newline at end of file diff --git a/patches/SLES-51522_0F58C006.pnach b/patches/SLES-51522_0F58C006.pnach index e7316533..e0fa207a 100644 --- a/patches/SLES-51522_0F58C006.pnach +++ b/patches/SLES-51522_0F58C006.pnach @@ -3,7 +3,7 @@ gametitle=Return to Castle Wolfenstein - Operation Resurrection (PAL-S) SLES-515 [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -comment=Widescreen hack 16:9 +description=Renders the game in 16:9 aspect ratio patch=1,EE,0012f928,word,3c0142ab //ver fov 1 patch=1,EE,0012f92c,word,3421e328 patch=1,EE,001302dc,word,3c0142ab //ver fov 2 @@ -13,5 +13,5 @@ patch=1,EE,0012f724,word,3c0142d5 //gameplay fov [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,00174394,word,2C420001 //2C420002 +description=Might need EE Overclock at 130%. +patch=1,EE,00174394,word,2C420001 //2C420002 \ No newline at end of file diff --git a/patches/SLES-51523_AA40FD87.pnach b/patches/SLES-51523_AA40FD87.pnach index 8b9a905d..e8267454 100644 --- a/patches/SLES-51523_AA40FD87.pnach +++ b/patches/SLES-51523_AA40FD87.pnach @@ -2,7 +2,7 @@ gametitle=Conflict - Desert Storm II (E)(SLES-51523) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51526_69A026C0.pnach b/patches/SLES-51526_69A026C0.pnach index 74f566d0..7f38bd32 100644 --- a/patches/SLES-51526_69A026C0.pnach +++ b/patches/SLES-51526_69A026C0.pnach @@ -2,7 +2,7 @@ gametitle=Fallout: Brotherhood of Steel (SLES-51526) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,001b1618,word,3c013f36 patch=1,EE,001b161c,word,34210b5f diff --git a/patches/SLES-51548_FBF2383B.pnach b/patches/SLES-51548_FBF2383B.pnach index cd5a2c6e..a8d281bc 100644 --- a/patches/SLES-51548_FBF2383B.pnach +++ b/patches/SLES-51548_FBF2383B.pnach @@ -2,7 +2,7 @@ gametitle=X-Men 2 - Wolverine's Revenge (PAL-M3) (SLES-51548) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002ce814,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-51553_0ACDD053.pnach b/patches/SLES-51553_0ACDD053.pnach index 5fed89b5..bca2d9ee 100644 --- a/patches/SLES-51553_0ACDD053.pnach +++ b/patches/SLES-51553_0ACDD053.pnach @@ -2,7 +2,7 @@ gametitle=Chaos Legion PAL (SLES_515.53) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00243C1C,word,3C013F40 //46007EC6 (Increases hor. axis) diff --git a/patches/SLES-51554_904B7BA0.pnach b/patches/SLES-51554_904B7BA0.pnach index ddd8d5f0..679e1eeb 100644 --- a/patches/SLES-51554_904B7BA0.pnach +++ b/patches/SLES-51554_904B7BA0.pnach @@ -1,12 +1,11 @@ -gametitle=Cell Damage Overdrive (PAL-M5) SLES_515.54 +//gametitle=Cell Damage Overdrive (PAL-M5) SLES_515.54 -[Widescreen 16:9] -gsaspectratio=16:9 -comment=Widescreen hack by dieSkaarj - -patch=1,EE,20362ce8,word,3f400000 //3f800000 -patch=1,EE,20362D00,word,3faaaaab //3f800000 - -//patch=1,EE,0023f2a0,word,27bdff20 //3c02bf80 HUD scaling? +//[Widescreen 16:9] +//gsaspectratio=16:9 +//author=dieSkaarj. +//Breaks splitscreen display into one thin grey line. +//patch=1,EE,20362ce8,word,3f400000 //3f800000 +//patch=1,EE,20362D00,word,3faaaaab //3f800000 +//patch=1,EE,0023f2a0,word,27bdff20 //3c02bf80 HUD scaling? \ No newline at end of file diff --git a/patches/SLES-51557_1248FE3A.pnach b/patches/SLES-51557_1248FE3A.pnach index 48e97956..7db94a93 100644 --- a/patches/SLES-51557_1248FE3A.pnach +++ b/patches/SLES-51557_1248FE3A.pnach @@ -2,7 +2,7 @@ gametitle=Broken Sword: The Sleeping Dragon (SLES-51557) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,001ad9cc,word,3c01bec0 patch=1,EE,001ad9d0,word,0c06b250 patch=1,EE,001ad9d4,word,44813000 diff --git a/patches/SLES-51580_F97680AA.pnach b/patches/SLES-51580_F97680AA.pnach new file mode 100644 index 00000000..caf5065c --- /dev/null +++ b/patches/SLES-51580_F97680AA.pnach @@ -0,0 +1,6 @@ +gametitle=London Racer World Challenge PAL-M SLES-51580 F97680AA + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00133810,word,24020000 //24020001 \ No newline at end of file diff --git a/patches/SLES-51581_FAC64195.pnach b/patches/SLES-51581_FAC64195.pnach index 2409e324..24e13f36 100644 --- a/patches/SLES-51581_FAC64195.pnach +++ b/patches/SLES-51581_FAC64195.pnach @@ -2,7 +2,7 @@ gametitle=Dead to Rights (E)(SLES-51581) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51584_2C1173B0.pnach b/patches/SLES-51584_2C1173B0.pnach index 3a667ae0..4cbbdbae 100644 --- a/patches/SLES-51584_2C1173B0.pnach +++ b/patches/SLES-51584_2C1173B0.pnach @@ -3,10 +3,10 @@ gametitle=F1 Career Challenge (PAL & NTSC-U)(SLUS-20693 & SLES-51584) [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio +description=Enable native widescreen patch=1,EE,00328744,word,01010101 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0033DF50,extended,00000001 \ No newline at end of file diff --git a/patches/SLES-51600_D2738AD3.pnach b/patches/SLES-51600_D2738AD3.pnach index 8b165bc0..25497fe1 100644 --- a/patches/SLES-51600_D2738AD3.pnach +++ b/patches/SLES-51600_D2738AD3.pnach @@ -2,7 +2,7 @@ gametitle=WWE Crush Hour (PAL-E) (SLES-51600) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00331084,word,3c023f40 // 3c023f80 hor fov diff --git a/patches/SLES-51602_F9D01209.pnach b/patches/SLES-51602_F9D01209.pnach index 9e787ac3..359107aa 100644 --- a/patches/SLES-51602_F9D01209.pnach +++ b/patches/SLES-51602_F9D01209.pnach @@ -2,7 +2,7 @@ gametitle=All-Star Baseball 2004 (E)(SLES-51602) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51603_5F2F5469.pnach b/patches/SLES-51603_5F2F5469.pnach index 30dfbfcb..5a4ee5ed 100644 --- a/patches/SLES-51603_5F2F5469.pnach +++ b/patches/SLES-51603_5F2F5469.pnach @@ -2,7 +2,7 @@ gametitle=Seek and Destroy (PAL-M5) (SLES_516.03) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas // 16:9 patch=1,EE,001BCD0C,word,3C013F40 //00000000 hor fov diff --git a/patches/SLES-51606_B6FD779E.pnach b/patches/SLES-51606_B6FD779E.pnach index 67f4623a..5a1b8fd6 100644 --- a/patches/SLES-51606_B6FD779E.pnach +++ b/patches/SLES-51606_B6FD779E.pnach @@ -2,7 +2,7 @@ gametitle=Unlimited Saga (PAL-E) (SLES-51606) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 battles patch=1,EE,00703bfc,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-51616_81CA29BE.pnach b/patches/SLES-51616_81CA29BE.pnach index 6db4768c..1c75fc61 100644 --- a/patches/SLES-51616_81CA29BE.pnach +++ b/patches/SLES-51616_81CA29BE.pnach @@ -2,7 +2,7 @@ gametitle=Virtua Fighter 4 Evolution (PAL-M5) (SLES-51616) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002fdff4,word,3c194455 // 3c034420 hor fov @@ -13,7 +13,7 @@ patch=1,EE,00217b48,word,3c024456 // 3c024420 renderfix [No-Interlacing] gsinterlacemode=1 -comment=Disable interlacing hack by ElHecht (thx to felixthecat1970 for JAP codes) +author=ElHecht (thx to felixthecat1970 for JAP codes) // direct framebuffer + disable interlacing + progressive scan patch=0,EE,00100104,word,3c050000 diff --git a/patches/SLES-51617_518398FC.pnach b/patches/SLES-51617_518398FC.pnach index 269e44de..d3a778d4 100644 --- a/patches/SLES-51617_518398FC.pnach +++ b/patches/SLES-51617_518398FC.pnach @@ -2,7 +2,7 @@ gametitle=Starsky & Hutch (E)(SLES-51617) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51620_F743CD58.pnach b/patches/SLES-51620_F743CD58.pnach index 8bc6ca41..47276f55 100644 --- a/patches/SLES-51620_F743CD58.pnach +++ b/patches/SLES-51620_F743CD58.pnach @@ -2,7 +2,7 @@ gametitle=Black & Bruised (E)(SLES-51620) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51621_8760B4B1.pnach b/patches/SLES-51621_8760B4B1.pnach index 9ccaff02..9e7aa192 100644 --- a/patches/SLES-51621_8760B4B1.pnach +++ b/patches/SLES-51621_8760B4B1.pnach @@ -1,7 +1,7 @@ [Widescreen 16:9] gsaspectratio=16:9 gametitle=Dirt Track Devils (E)(SLES-51621) -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51622_5FDE52D2.pnach b/patches/SLES-51622_5FDE52D2.pnach index ed796abd..fb83b737 100644 --- a/patches/SLES-51622_5FDE52D2.pnach +++ b/patches/SLES-51622_5FDE52D2.pnach @@ -2,7 +2,7 @@ gametitle=Maxxed Out Racing (PAL-E) [SLES-51622] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by FlatOut +author=FlatOut patch=1,EE,20194F44,extended,3F400000 diff --git a/patches/SLES-51623_2DF50F59.pnach b/patches/SLES-51623_2DF50F59.pnach index abf26561..43a00693 100644 --- a/patches/SLES-51623_2DF50F59.pnach +++ b/patches/SLES-51623_2DF50F59.pnach @@ -2,7 +2,7 @@ gametitle=The Sniper 2 (E)(SLES-51623) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-51633_79D8CB9E.pnach b/patches/SLES-51633_79D8CB9E.pnach new file mode 100644 index 00000000..4b124989 --- /dev/null +++ b/patches/SLES-51633_79D8CB9E.pnach @@ -0,0 +1,6 @@ +gametitle=Racing Simulation 3 PAL-M SLES-51633 79D8CB9E secondary CRC C7AA13F6 +//Corresponds to the main crc to activate the secondary crc C7AA13F6 called RS3.ELF + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. \ No newline at end of file diff --git a/patches/SLES-51633_C7AA13F6.pnach b/patches/SLES-51633_C7AA13F6.pnach new file mode 100644 index 00000000..ffbeda33 --- /dev/null +++ b/patches/SLES-51633_C7AA13F6.pnach @@ -0,0 +1,6 @@ +gametitle=Racing Simulation 3 PAL-M SLES-51633 79D8CB9E secondary CRC C7AA13F6 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,001b383c,word,24020001 //24020002 Gameplay \ No newline at end of file diff --git a/patches/SLES-51636_9D395452.pnach b/patches/SLES-51636_9D395452.pnach index 3aec8e99..f22c74ac 100644 --- a/patches/SLES-51636_9D395452.pnach +++ b/patches/SLES-51636_9D395452.pnach @@ -1,9 +1,9 @@ -gametitle=XGRA - Extreme G Racing Association (E)(SLES-51636) 9D395452 +gametitle=XGRA - Extreme G Racing Association (PAL-M) (SLES-51636) 9D395452 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,0019d5dc,word,3c013ec0 //3c013f00 Zoom patch=1,EE,0019d5fc,word,3c013faa //00000000 Y-Fov patch=1,EE,0019d600,word,3421aaab //00000000 @@ -12,7 +12,5 @@ patch=1,EE,0019d60c,word,461ebdc2 //00000000 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,00205404,word,1040FFFA -patch=1,EE,E0010000,extended,01FFE32C -patch=1,EE,20205404,extended,00000000 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,201A793C,word,14400004 //10400004 \ No newline at end of file diff --git a/patches/SLES-51649_6E900957.pnach b/patches/SLES-51649_6E900957.pnach index 409cc0bf..8ca20fef 100644 --- a/patches/SLES-51649_6E900957.pnach +++ b/patches/SLES-51649_6E900957.pnach @@ -1,7 +1,14 @@ -gametitle=Judge Dredd - Dredd vs. Death [PAL-M] SLES-51649 6E900957 +gametitle=Judge Dredd - Dredd vs. Death (PAL-M) SLES-51649 6E900957 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Enable native widescreen +patch=1,EE,0033F080,word,3FE38E39 +patch=1,EE,0033F084,word,00000001 +patch=1,EE,00340A5C,word,00010000 [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,0019693C,word,0000FFFA //1440FFFA bne v0, zero, $00196928 -patch=1,EE,002EB504,word,0000FFFA //1040FFFA beq v0, zero, $002eb4f0 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,0019691C,word,14600009 //10600009 \ No newline at end of file diff --git a/patches/SLES-51662_AA42AD50.pnach b/patches/SLES-51662_AA42AD50.pnach index b3812f79..4f95d2ca 100644 --- a/patches/SLES-51662_AA42AD50.pnach +++ b/patches/SLES-51662_AA42AD50.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 4 (PAL-FR) (SLES-51662) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Machiavel Dhy'v converted from nemesis2000 NTSC-U +author=Machiavel Dhy'v converted from nemesis2000 NTSC-U patch=1,EE,00137110,word,3c0243d6 patch=1,EE,00183d30,word,3c023f2b diff --git a/patches/SLES-51663_B474FE44.pnach b/patches/SLES-51663_B474FE44.pnach index 3b896760..a7cf0ced 100644 --- a/patches/SLES-51663_B474FE44.pnach +++ b/patches/SLES-51663_B474FE44.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 4 (PAL-G) (SLES-51663) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // // 16:9 patch=1,EE,00137060,word,3c0243b4 // 3c0243a0 hor fov value1 diff --git a/patches/SLES-51671_4731C13A.pnach b/patches/SLES-51671_4731C13A.pnach index e80031e7..3a3afe76 100644 --- a/patches/SLES-51671_4731C13A.pnach +++ b/patches/SLES-51671_4731C13A.pnach @@ -2,7 +2,7 @@ gametitle=Alter Echo (PAL-M5) (SLES-51671) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Elhecht +author=ElHecht // 16:9 patch=1,EE,00163cd4,word,080d26a7 // 4600a802 diff --git a/patches/SLES-51702_6062787F.pnach b/patches/SLES-51702_6062787F.pnach index 84f602eb..73b81b51 100644 --- a/patches/SLES-51702_6062787F.pnach +++ b/patches/SLES-51702_6062787F.pnach @@ -3,7 +3,7 @@ gametitle=Battlestar Galactica (PAL-M) SLES-51702 6062787F [Widescreen 16:9] gsaspectratio=16:9 author=sergx12 -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,00102354,word,3c013f66 //3c013f99 gameplay hor patch=1,EE,00102358,word,34216666 //3421999a patch=1,EE,001cb818,word,3c013f66 //menu @@ -15,6 +15,6 @@ patch=1,EE,001cb81c,word,34216666 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,E0010002,extended,00081E90 patch=1,EE,00343EE0,extended,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-51705_37F695CD.pnach b/patches/SLES-51705_37F695CD.pnach new file mode 100644 index 00000000..37b7e987 --- /dev/null +++ b/patches/SLES-51705_37F695CD.pnach @@ -0,0 +1,6 @@ +gametitle=Ford Racing 2 PAL-M SLES-51705 37F695CD + +[50/60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00221748,word,2C420001 //2C420002 \ No newline at end of file diff --git a/patches/SLES-51712_F9254798.pnach b/patches/SLES-51712_F9254798.pnach index eb58fa07..a413e8ca 100644 --- a/patches/SLES-51712_F9254798.pnach +++ b/patches/SLES-51712_F9254798.pnach @@ -2,7 +2,7 @@ gametitle=Snowboard Racer 2 (E)(SLES-51712) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-51713_8BDD5892.pnach b/patches/SLES-51713_8BDD5892.pnach index 0cb3e2b3..f2270ab6 100644 --- a/patches/SLES-51713_8BDD5892.pnach +++ b/patches/SLES-51713_8BDD5892.pnach @@ -2,7 +2,7 @@ gametitle=Bust-A-Block [PAL] (SLES_517.13) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0014ae24,word,3c013f40 //00000000 (Increases hor. axis) diff --git a/patches/SLES-51715_0AA8C953.pnach b/patches/SLES-51715_0AA8C953.pnach index 7b635069..6f066b5c 100644 --- a/patches/SLES-51715_0AA8C953.pnach +++ b/patches/SLES-51715_0AA8C953.pnach @@ -2,7 +2,7 @@ gametitle=The Seed: Warzone [PAL] (SLES_517.15) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00137D7C,word,3C013F40 //3C013F80 Map menu diff --git a/patches/SLES-51717_F6375797.pnach b/patches/SLES-51717_F6375797.pnach index 104307a5..a965f758 100644 --- a/patches/SLES-51717_F6375797.pnach +++ b/patches/SLES-51717_F6375797.pnach @@ -2,7 +2,7 @@ gametitle=Boxing Champions (PAL-E) (SLES_517.17) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas patch=1,EE,0016165C,word,3C013F40 //00000000 patch=1,EE,00161660,word,44810000 //00000000 diff --git a/patches/SLES-51718_5E07924E.pnach b/patches/SLES-51718_5E07924E.pnach index 328af8c5..69390d47 100644 --- a/patches/SLES-51718_5E07924E.pnach +++ b/patches/SLES-51718_5E07924E.pnach @@ -2,7 +2,7 @@ gametitle=League Series Baseball 2 (E)(SLES-51718) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51723_554A62A4.pnach b/patches/SLES-51723_554A62A4.pnach index 4cfc840d..fa84183b 100644 --- a/patches/SLES-51723_554A62A4.pnach +++ b/patches/SLES-51723_554A62A4.pnach @@ -1,19 +1,24 @@ -gametitle=Hobbit - The Prelude to the Lord of the Rings (E)(SLES-51723) +gametitle=Hobbit - The Prelude to the Lord of the Rings (PAL-M) (SLES-51723) 554A62A4 [Widescreen 16:9] gsaspectratio=16:9 -author=Arapapa -comment=Widescreen Hack -//Zoom -patch=1,EE,002facac,word,3c013ec0 //3c013f00 -//Y-Fov -patch=1,EE,0038b768,word,3c013ec0 //3c013f00 -//Render fix -patch=1,EE,0038b87c,word,3c013f40 //3c013f00 +author=Arapapa & PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,0038B768,word,3C013ED5 //3C013F00 Y-Fov +patch=1,EE,0038B87C,word,3C013F49 //3c013f00 Render fix +patch=1,EE,0038A400,word,3C013F1D [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,20404B8C,extended,00000001 +description=Might need EE Overclock (130%). +patch=1,EE,00404B8C,extended,00000001 patch=1,EE,E0010000,extended,003E9610 -patch=1,EE,20404B8C,extended,00000002 \ No newline at end of file +patch=1,EE,00404B8C,extended,00000002 +patch=1,EE,E0010001,extended,004733B4 +patch=1,EE,00404B8C,extended,00000002 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,003BF5E8,word,24120050 \ No newline at end of file diff --git a/patches/SLES-51735_928F63CD.pnach b/patches/SLES-51735_928F63CD.pnach index 5e898651..75820e33 100644 --- a/patches/SLES-51735_928F63CD.pnach +++ b/patches/SLES-51735_928F63CD.pnach @@ -2,7 +2,7 @@ gametitle=Perfect Ace - Pro Tournament Tennis (E)(SLES-51735) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51746_296DB092.pnach b/patches/SLES-51746_296DB092.pnach new file mode 100644 index 00000000..4c704ac7 --- /dev/null +++ b/patches/SLES-51746_296DB092.pnach @@ -0,0 +1,9 @@ +gametitle=Space Invaders - Invasion Day (PAL-M) SLES-51746 296DB092 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0018DA94,word,24110000 +patch=1,EE,0018DA98,word,24120050 +patch=1,EE,0018DAA4,word,24130001 \ No newline at end of file diff --git a/patches/SLES-51750_2D919421.pnach b/patches/SLES-51750_2D919421.pnach index 84c86685..f6b0e5f8 100644 --- a/patches/SLES-51750_2D919421.pnach +++ b/patches/SLES-51750_2D919421.pnach @@ -2,7 +2,7 @@ gametitle=Charlie's Angels (E)(SLES-51750) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51754_29E9D83C.pnach b/patches/SLES-51754_29E9D83C.pnach index 4836f90d..34abd503 100644 --- a/patches/SLES-51754_29E9D83C.pnach +++ b/patches/SLES-51754_29E9D83C.pnach @@ -1,6 +1,6 @@ -gametitle=True Crime - Streets of L.A. [PAL-M] SLES-51754 6B9AEA0D. elf secondary 29E9D83C +gametitle=True Crime - Streets of L.A. (PAL-M) SLES-51754 29E9D83C TC.ELF [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,001024D0,word,24040001 //24040002 li a0,0x2 \ No newline at end of file +description=Might need EE Overclock at 180%. +patch=1,EE,001024D0,word,24040001 //24040002 \ No newline at end of file diff --git a/patches/SLES-51754_6B9AEA0D.pnach b/patches/SLES-51754_6B9AEA0D.pnach index 4836f90d..af1a5ee8 100644 --- a/patches/SLES-51754_6B9AEA0D.pnach +++ b/patches/SLES-51754_6B9AEA0D.pnach @@ -1,6 +1,6 @@ -gametitle=True Crime - Streets of L.A. [PAL-M] SLES-51754 6B9AEA0D. elf secondary 29E9D83C +gametitle=True Crime - Streets of L.A. (PAL-M) SLES-51754 6B9AEA0D +//Corresponds to the main crc to activate the secondary crc 29E9D83C called TC.ELF [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,001024D0,word,24040001 //24040002 li a0,0x2 \ No newline at end of file +description=Might need EE Overclock at 180%. diff --git a/patches/SLES-51755_14AE6410.pnach b/patches/SLES-51755_14AE6410.pnach index d4220713..be748611 100644 --- a/patches/SLES-51755_14AE6410.pnach +++ b/patches/SLES-51755_14AE6410.pnach @@ -2,7 +2,7 @@ gametitle=Disney-Pixar Finding Nemo (E)(SLES-51755) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51756_AAA40B75.pnach b/patches/SLES-51756_AAA40B75.pnach index 8d5a7b4a..2a19f919 100644 --- a/patches/SLES-51756_AAA40B75.pnach +++ b/patches/SLES-51756_AAA40B75.pnach @@ -1,9 +1,9 @@ -gametitle=Batman - Rise of Sin Tzu (E)(SLES-51756) +gametitle=Batman - Rise of Sin Tzu (PAL-M) (SLES-51756) AAA40B75 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen Hack 16:9 +description=Renders the game in 16:9 aspect ratio //X-Fov patch=1,EE,004b0b28,word,3f5a7408 //3f23d70a @@ -12,5 +12,13 @@ patch=1,EE,00309008,word,3c023f40 //3c023f00 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,00535FA0,word,00000001 //00000002 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,00535FA0,word,00000001 //00000002 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0010C03C,word,24110000 +patch=1,EE,0010C040,word,24120050 +patch=1,EE,0010C04C,word,24130001 \ No newline at end of file diff --git a/patches/SLES-51758_AF399CCC.pnach b/patches/SLES-51758_AF399CCC.pnach index 8e696f2f..ab019769 100644 --- a/patches/SLES-51758_AF399CCC.pnach +++ b/patches/SLES-51758_AF399CCC.pnach @@ -1,9 +1,9 @@ -gametitle=Metal Arms - Glitch in the System (E)(SLES-51758) +gametitle=Metal Arms - Glitch in the System (PAL-M) (SLES-51758) AF399CCC [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Widescreen hack 16:9 //Zoom @@ -22,5 +22,5 @@ patch=1,EE,004275e0,word,080f7479 //00000000 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,004BEA90,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-51766_80EA26DA.pnach b/patches/SLES-51766_80EA26DA.pnach index 487f8464..944b8715 100644 --- a/patches/SLES-51766_80EA26DA.pnach +++ b/patches/SLES-51766_80EA26DA.pnach @@ -1,4 +1,4 @@ -gametitle=Gladiator - Sword of Vengeance (PAL-M) SLES_517.66 80EA26DA +gametitle=Gladiator - Sword of Vengeance PAL-M SLES-51766 80EA26DA [Widescreen 16:9] gsaspectratio=16:9 @@ -11,4 +11,14 @@ patch=1,EE,2078d930,extended,bfab0000 //hud stretch [Remove Blackbars] author=sergx12 description=Removes black bars in cutscenes -patch=1,EE,00284084,word,3c010000 \ No newline at end of file +patch=1,EE,00284084,word,3c010000 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0020D3D4,word,28420001 //28420002 + +[NTSC Mode] +author=Gabominated +description=NTSC mode at start. +patch=1,EE,0020D54C,word,14800006 //10800006 \ No newline at end of file diff --git a/patches/SLES-51778_098384FD.pnach b/patches/SLES-51778_098384FD.pnach index 91067e33..8a5d6814 100644 --- a/patches/SLES-51778_098384FD.pnach +++ b/patches/SLES-51778_098384FD.pnach @@ -2,7 +2,7 @@ gametitle=Summer Heat: Beach Volleyball [PAL-M5] (SLES_517.78) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Both fov 16:9 patch=1,EE,001B098C,word,3C01464F //3C014622 diff --git a/patches/SLES-51787_62AB6416.pnach b/patches/SLES-51787_62AB6416.pnach index 2f6ef109..28a8b982 100644 --- a/patches/SLES-51787_62AB6416.pnach +++ b/patches/SLES-51787_62AB6416.pnach @@ -2,7 +2,7 @@ gametitle=Harry Potter - Quidditch World Cup (PAL-M10) (SLES-51787) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002af358,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-51792_64DA75B2.pnach b/patches/SLES-51792_64DA75B2.pnach index 9fe9cf25..7e83e4cc 100644 --- a/patches/SLES-51792_64DA75B2.pnach +++ b/patches/SLES-51792_64DA75B2.pnach @@ -1,8 +1,11 @@ -gametitle=Aliens Versus Predator - Extinction SLES_517.92 +gametitle=Aliens Versus Predator - Extinction PAL-E SLES-51792 64DA75B2 [Widescreen 16:9] gsaspectratio=16:9 comment=Widescreen Hack patch=1,EE,0017fc74,word,3c023f40 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,00179110,word,47FFFFF1 //4501FFF1 \ No newline at end of file diff --git a/patches/SLES-51794_26F6F521.pnach b/patches/SLES-51794_26F6F521.pnach index 5d40848f..341eb415 100644 --- a/patches/SLES-51794_26F6F521.pnach +++ b/patches/SLES-51794_26F6F521.pnach @@ -1,4 +1,4 @@ -gametitle=Looney Tunes - Back in Action (SLES-51794) +gametitle=Looney Tunes - Back in Action (PAL-M) (SLES-51794) 26F6F521 [Widescreen 16:9] gsaspectratio=16:9 @@ -10,7 +10,7 @@ patch=1,EE,202D1FBC,extended,3FE66666 //4019999A Viewport Width [50 FPS] author=PeterDelta -comment=Patches the game to run at 50 FPS (Might need 180% EE Overclock to be stable). +description=Might need EE Overclock at 180%. patch=1,EE,00373978,word,00000002 -patch=1,EE,E0010001,extended,003673F0 //002F64C8 +patch=1,EE,E0010001,extended,003673F0 patch=1,EE,20373978,extended,00000001 \ No newline at end of file diff --git a/patches/SLES-51800_7FE15107.pnach b/patches/SLES-51800_7FE15107.pnach new file mode 100644 index 00000000..1cca8f7c --- /dev/null +++ b/patches/SLES-51800_7FE15107.pnach @@ -0,0 +1,22 @@ +gametitle=Smash Cars (PAL-M) SLES-51800 7FE15107 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=sergx12 & PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,0012696C,word,3C023CAC //3C023C8E fov singleplayer +patch=1,EE,00126974,word,3442A2D8 //3442FA35 +patch=1,EE,001269B4,word,3C023CAC +patch=1,EE,001269BC,word,3442A2D8 +patch=1,EE,00126B4C,word,3C023CAC // fov multiplayer +patch=1,EE,00126B54,word,3442A2D8 +patch=1,EE,00126BA8,word,3C023CAC +patch=1,EE,00126BB0,word,3442A2D8 +patch=1,EE,001B363C,word,3C033FAC //3C033F80 vert fov + +[50/60 FPS] +author=PeterDelta & Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,001B403C,extended,2C410001 +patch=1,EE,E0010000,extended,003985B0 +patch=1,EE,001B403C,extended,2C410002 \ No newline at end of file diff --git a/patches/SLES-51812_6A7039A3.pnach b/patches/SLES-51812_6A7039A3.pnach index e8ff9b13..8d132f71 100644 --- a/patches/SLES-51812_6A7039A3.pnach +++ b/patches/SLES-51812_6A7039A3.pnach @@ -2,7 +2,7 @@ gametitle=Homerun (E)(SLES-51812) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51813_2EA818EA.pnach b/patches/SLES-51813_2EA818EA.pnach index 5fb389c8..7c4f7123 100644 --- a/patches/SLES-51813_2EA818EA.pnach +++ b/patches/SLES-51813_2EA818EA.pnach @@ -2,7 +2,7 @@ gametitle=European Tennis Pro (E)(SLES-51813) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51814_025670BE.pnach b/patches/SLES-51814_025670BE.pnach index 023c10f4..67493208 100644 --- a/patches/SLES-51814_025670BE.pnach +++ b/patches/SLES-51814_025670BE.pnach @@ -2,7 +2,7 @@ gametitle=ATV Offroad Fury 2 [PAL] (SLES_518.14) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0011B0C0,word,3C023CAA //3C023C8E Zoom diff --git a/patches/SLES-51820_EF47C233.pnach b/patches/SLES-51820_EF47C233.pnach index 6926bda9..20cfbf4c 100644 --- a/patches/SLES-51820_EF47C233.pnach +++ b/patches/SLES-51820_EF47C233.pnach @@ -10,6 +10,5 @@ patch=1,EE,00502848,word,3fe38e2a //3faaaaab Y-FOV [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,00474F04,word,00000000 -patch=1,EE,00198FCC,word,00000000 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,00198FA8,word,1460000A //1060000A \ No newline at end of file diff --git a/patches/SLES-51821_83466553.pnach b/patches/SLES-51821_83466553.pnach index cec97c36..f01df486 100644 --- a/patches/SLES-51821_83466553.pnach +++ b/patches/SLES-51821_83466553.pnach @@ -9,6 +9,6 @@ patch=1,EE,001f3c70,word,3c013f40 // 3c013f80 renderfix [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0024BEAC,word,2C420000 //2C42001E patch=1,EE,001DED08,word,3C013F00 //3C013F80 \ No newline at end of file diff --git a/patches/SLES-51825_762FADF5.pnach b/patches/SLES-51825_762FADF5.pnach index f72b8008..5328c0a8 100644 --- a/patches/SLES-51825_762FADF5.pnach +++ b/patches/SLES-51825_762FADF5.pnach @@ -2,7 +2,7 @@ gametitle=Pop Idol (E)(SLES-51825) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51826_1D4764D2.pnach b/patches/SLES-51826_1D4764D2.pnach index 8cc951b9..e0d410d0 100644 --- a/patches/SLES-51826_1D4764D2.pnach +++ b/patches/SLES-51826_1D4764D2.pnach @@ -2,7 +2,7 @@ gametitle=AFL Live 2004 (E)(SLES-51826) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-51839_FE09A7CC.pnach b/patches/SLES-51839_FE09A7CC.pnach index c49d32dd..5f297a39 100644 --- a/patches/SLES-51839_FE09A7CC.pnach +++ b/patches/SLES-51839_FE09A7CC.pnach @@ -2,7 +2,7 @@ gametitle=DragonBall Z - Budokai 2 (PAL-M5) (SLES-51839) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0013192c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-51840_A9360C6D.pnach b/patches/SLES-51840_A9360C6D.pnach index d50f027d..9a118266 100644 --- a/patches/SLES-51840_A9360C6D.pnach +++ b/patches/SLES-51840_A9360C6D.pnach @@ -2,7 +2,7 @@ gametitle=NHL Hitz Pro (PAL-E) (SLES-51840) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,003f4d14,word,3f100000 // 3f400000 hor fov diff --git a/patches/SLES-51843_BB16599F.pnach b/patches/SLES-51843_BB16599F.pnach index 06d9e609..17d2c1ca 100644 --- a/patches/SLES-51843_BB16599F.pnach +++ b/patches/SLES-51843_BB16599F.pnach @@ -2,7 +2,7 @@ gametitle=Worms 3D (E)(SLES-51843) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas & Arapapa +author=El_Patas & Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51844_FD32030F.pnach b/patches/SLES-51844_FD32030F.pnach index 4a3b508f..50cb7502 100644 --- a/patches/SLES-51844_FD32030F.pnach +++ b/patches/SLES-51844_FD32030F.pnach @@ -2,7 +2,7 @@ gametitle=Time Crisis 3 SLES_518.44 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by dieSkaarj. +author=dieSkaarj. patch=1,EE,001d544c,word,3c033f40 //3c033f80 diff --git a/patches/SLES-51845_3BA6EAFC.pnach b/patches/SLES-51845_3BA6EAFC.pnach index 08950645..73d45300 100644 --- a/patches/SLES-51845_3BA6EAFC.pnach +++ b/patches/SLES-51845_3BA6EAFC.pnach @@ -2,7 +2,7 @@ gametitle=Barbie Horse Adventures - Wild Horse Rescue (E)(SLES-51845) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51850_32F02A6C.pnach b/patches/SLES-51850_32F02A6C.pnach index e0e9d49e..6dd220e7 100644 --- a/patches/SLES-51850_32F02A6C.pnach +++ b/patches/SLES-51850_32F02A6C.pnach @@ -2,7 +2,7 @@ gametitle=Basketball Xciting [PAL] (SLES_518.50) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00179424,word,3c013f40 //00000000 (Increases hor. axis) diff --git a/patches/SLES-51855_09A48207.pnach b/patches/SLES-51855_09A48207.pnach index 72928b18..7ff2b556 100644 --- a/patches/SLES-51855_09A48207.pnach +++ b/patches/SLES-51855_09A48207.pnach @@ -2,7 +2,7 @@ gametitle=Tank Elite (PAL)(SLES-51855) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51859_30BE71D7.pnach b/patches/SLES-51859_30BE71D7.pnach index 52bbaf5a..f2da7f3d 100644 --- a/patches/SLES-51859_30BE71D7.pnach +++ b/patches/SLES-51859_30BE71D7.pnach @@ -2,7 +2,7 @@ gametitle=Billiards Xciting (E)(SLES-51859) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51861_0FEEE8ED.pnach b/patches/SLES-51861_0FEEE8ED.pnach index b81ff8ff..8a87d036 100644 --- a/patches/SLES-51861_0FEEE8ED.pnach +++ b/patches/SLES-51861_0FEEE8ED.pnach @@ -2,7 +2,7 @@ gametitle=Bowling Xciting [PAL] (SLES_518.61) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0015b0b4,word,3c013f40 //00000000 (Increases hor. axis) diff --git a/patches/SLES-51873_F22C1E3B.pnach b/patches/SLES-51873_F22C1E3B.pnach index c6721dd9..d76ada6a 100644 --- a/patches/SLES-51873_F22C1E3B.pnach +++ b/patches/SLES-51873_F22C1E3B.pnach @@ -2,7 +2,7 @@ gametitle=Medal of Honor: Rising Sun (SLES-51873) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,003a3910,word,3f100000 diff --git a/patches/SLES-51879_080807DE.pnach b/patches/SLES-51879_080807DE.pnach index a988ab0f..92458a63 100644 --- a/patches/SLES-51879_080807DE.pnach +++ b/patches/SLES-51879_080807DE.pnach @@ -2,7 +2,7 @@ gametitle=Hot Wheels - World Race (E)(SLES-51879) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51883_8F6A1960.pnach b/patches/SLES-51883_8F6A1960.pnach index e31fcf07..ef38a887 100644 --- a/patches/SLES-51883_8F6A1960.pnach +++ b/patches/SLES-51883_8F6A1960.pnach @@ -13,5 +13,5 @@ patch=1,EE,0027e940,word,08065e29 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0049AAB8,word,0000003C \ No newline at end of file diff --git a/patches/SLES-51885_E144C5B5.pnach b/patches/SLES-51885_E144C5B5.pnach index 8172d07f..813795e1 100644 --- a/patches/SLES-51885_E144C5B5.pnach +++ b/patches/SLES-51885_E144C5B5.pnach @@ -2,7 +2,7 @@ gametitle=Mega Man X7 (SLES-51885) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0014e524,word,3c0244a8 diff --git a/patches/SLES-51886_084D2994.pnach b/patches/SLES-51886_084D2994.pnach index f2074f80..05308a14 100644 --- a/patches/SLES-51886_084D2994.pnach +++ b/patches/SLES-51886_084D2994.pnach @@ -2,7 +2,7 @@ gametitle=Lethal Skies II [PAL-E] [SLES-51886] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by FlatOut +author=FlatOut patch=1,EE,00126504,word,3C0143C0 patch=1,EE,0010108C,word,3C0143B4 diff --git a/patches/SLES-51893_72D11CDF.pnach b/patches/SLES-51893_72D11CDF.pnach index e543073b..d0ec7d1f 100644 --- a/patches/SLES-51893_72D11CDF.pnach +++ b/patches/SLES-51893_72D11CDF.pnach @@ -2,7 +2,7 @@ gametitle=Naval Ops - Warship Gunner (E)(SLES-51893) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51896_BE0CAF70.pnach b/patches/SLES-51896_BE0CAF70.pnach index fc3d7e17..82b86bbc 100644 --- a/patches/SLES-51896_BE0CAF70.pnach +++ b/patches/SLES-51896_BE0CAF70.pnach @@ -2,7 +2,7 @@ gametitle=Gallop Racer (E)(SLES-51896) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51897_73E68475.pnach b/patches/SLES-51897_73E68475.pnach index a7e70015..d4ac59ae 100644 --- a/patches/SLES-51897_73E68475.pnach +++ b/patches/SLES-51897_73E68475.pnach @@ -1,4 +1,4 @@ -gametitle=The Simpsons - Hit & Run (PAL-M4) (SLES-51897) +gametitle=The Simpsons - Hit & Run (PAL-M4) (SLES-51897) 73E68475 [Widescreen 16:9] gsaspectratio=16:9 @@ -12,4 +12,10 @@ patch=1,EE,002a1f88,word,00000000 // 10400004 patch=1,EE,0031e0b8,word,00000000 // 10400004 patch=1,EE,0031eea4,word,00000000 // 10400004 - +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. Might need EE Overclock (130%) +patch=1,EE,00406524,word,24110000 +patch=1,EE,00406528,word,24120050 +patch=1,EE,00406534,word,24130001 \ No newline at end of file diff --git a/patches/SLES-51903_2287515F.pnach b/patches/SLES-51903_2287515F.pnach index 28992aa7..0ef73bf4 100644 --- a/patches/SLES-51903_2287515F.pnach +++ b/patches/SLES-51903_2287515F.pnach @@ -2,7 +2,7 @@ gametitle=AFL Live 2004 - Aussie Rules Football (E)(SLES-51903) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-51908_8176235A.pnach b/patches/SLES-51908_8176235A.pnach index e78ccae2..8778d6c6 100644 --- a/patches/SLES-51908_8176235A.pnach +++ b/patches/SLES-51908_8176235A.pnach @@ -1,10 +1,9 @@ -gametitle=Van Helsing [PAL] (SLES_519.08) +gametitle=Van Helsing PAL-M SLES-51908 8176235A [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas - -//Gameplay 16:9 -patch=1,EE,202E88A8,extended,3FE38E38 //3FAAAAAA (Increases hor. axis) - - +author=El_Patas & Gabominated +description=Widescreen hack +patch=1,EE,002E88A8,word,3FE38E39 //3FAAAAAA +patch=1,EE,002E88AC,word,C2D55554 //00000000 +patch=1,EE,002E88B0,word,443AAAAB //44200000 \ No newline at end of file diff --git a/patches/SLES-51911_3F8AFC58.pnach b/patches/SLES-51911_3F8AFC58.pnach index 6dd3b43a..e8a19a20 100644 --- a/patches/SLES-51911_3F8AFC58.pnach +++ b/patches/SLES-51911_3F8AFC58.pnach @@ -2,7 +2,7 @@ gametitle=Gadget Racers PAL (SLES_519.11) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack & pnach by El_Patas +author=El_Patas //Gameplay patch=1,EE,206A43B4,extended,3F19999A // 3F4CCCCD (increases hor. axis) diff --git a/patches/SLES-51912_3D653E04.pnach b/patches/SLES-51912_3D653E04.pnach index 81962dce..f8ef7794 100644 --- a/patches/SLES-51912_3D653E04.pnach +++ b/patches/SLES-51912_3D653E04.pnach @@ -2,7 +2,7 @@ gametitle=Pro Evolution Soccer 3 [PAL-M4] (SLES_519.12) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0109458c,word,3c013f40 //00000000 (Increases hor. axis) diff --git a/patches/SLES-51913_5700AD86.pnach b/patches/SLES-51913_5700AD86.pnach index 3aafd3b3..29053e84 100644 --- a/patches/SLES-51913_5700AD86.pnach +++ b/patches/SLES-51913_5700AD86.pnach @@ -2,7 +2,7 @@ gametitle=Onimusha: Blade Warriors (PAL-M3) (SLES_519.13) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Widescreen patch=1,EE,205063C0,extended,3F400000 //3F800000 diff --git a/patches/SLES-51916_9C8C770A.pnach b/patches/SLES-51916_9C8C770A.pnach index bb9cbbcc..eb317a97 100644 --- a/patches/SLES-51916_9C8C770A.pnach +++ b/patches/SLES-51916_9C8C770A.pnach @@ -2,7 +2,7 @@ gametitle=Crouching Tiger Hidden Dragon (PAL)(SLES-51916) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51918_4B58A7A8.pnach b/patches/SLES-51918_4B58A7A8.pnach index 2154b0cf..e3f0f43c 100644 --- a/patches/SLES-51918_4B58A7A8.pnach +++ b/patches/SLES-51918_4B58A7A8.pnach @@ -1,9 +1,9 @@ -gametitle=Prince of Persia - The Sands of Time (PAL-M5) (SLES-51918) +gametitle=Prince of Persia - The Sands of Time (PAL-M5) (SLES-51918) 4B58A7A8 [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio // 16:9 patch=1,EE,004b4fc0,word,3c013f40 // 00000000 hor fov patch=1,EE,004b4fd8,word,34210000 // 00000000 hor fov @@ -23,5 +23,11 @@ patch=1,EE,004b5008,word,4600f0c6 // 44821800 [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,0066CF44,word,00000001 //00000002 \ No newline at end of file +description=Might need EE Overclock at 180%. +patch=1,EE,0066CF44,word,00000001 //00000002 + + +[Remove Blur/Bloom] +author=fobes +description=Removes the post-processing blur/bloom effect +patch=1,EE,004A94D4,word,00000000 diff --git a/patches/SLES-51924_B1C27A19.pnach b/patches/SLES-51924_B1C27A19.pnach index b4a38a4c..65dfe54b 100644 --- a/patches/SLES-51924_B1C27A19.pnach +++ b/patches/SLES-51924_B1C27A19.pnach @@ -2,19 +2,11 @@ gametitle=World War Zero - IronStorm (E)(SLES-51924) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa - -//Widescreen hack 16:9 - -//Force turn on Widedscreen -patch=1,EE,203393DC,extended,00000001 -patch=1,EE,20366E50,extended,00000001 -patch=1,EE,203393D8,extended,3fe38e39 - -//Zoom fix -patch=1,EE,0010b990,word,3c013f40 //3c013f80 +author=Gabominated +description=Widescreen fix +patch=1,EE,0010b998,word,3c013f17 //3c013f00 zoom/fov fix [50 FPS] author=Gabominated description=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,20339dc0,extended,00000000 //00000001 +patch=1,EE,001934BC,word,14600009 //10600009 \ No newline at end of file diff --git a/patches/SLES-51926_35CBC3A9.pnach b/patches/SLES-51926_35CBC3A9.pnach index 9770a6be..3bb24d23 100644 --- a/patches/SLES-51926_35CBC3A9.pnach +++ b/patches/SLES-51926_35CBC3A9.pnach @@ -2,7 +2,7 @@ gametitle=Outlaw Golf (PAL-M3) (SLES-51926) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001d589c,word,3c1b3f40 // 00000000 hor fov diff --git a/patches/SLES-51930_09736614.pnach b/patches/SLES-51930_09736614.pnach index 6fba3dd4..0d07d8ac 100644 --- a/patches/SLES-51930_09736614.pnach +++ b/patches/SLES-51930_09736614.pnach @@ -2,7 +2,7 @@ gametitle=Road Rage 3 (PAL-E) (SLES_519.30) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas patch=1,EE,20435588,extended,3F400000 // 3F800000 hor fov diff --git a/patches/SLES-51934_7100A15F.pnach b/patches/SLES-51934_7100A15F.pnach index 82afc3b8..ef89718c 100644 --- a/patches/SLES-51934_7100A15F.pnach +++ b/patches/SLES-51934_7100A15F.pnach @@ -45,5 +45,10 @@ patch=1,EE,0011e8b4,word,461ef783 // 00000000 inventory-to-documents function [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,00510300,byte,01 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,00510300,byte,01 + +[NTSC Mode] +author=Gabominated +description=NTSC mode at startup, FMVs remain in PAL. +patch=1,EE,002b45b0,word,240201c0 //24020200 \ No newline at end of file diff --git a/patches/SLES-51950_B7CF071A.pnach b/patches/SLES-51950_B7CF071A.pnach index 294d77f4..17a55394 100644 --- a/patches/SLES-51950_B7CF071A.pnach +++ b/patches/SLES-51950_B7CF071A.pnach @@ -123,11 +123,11 @@ patch=1,EE,0016a51c,word,27bd0020 [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,00477940,word,00000001 //00000002 srl zero,0x00 -patch=1,EE,0028FF6C,word,24020001 //24020002 li v0,0x2 60hz +description=Might need EE Overclock at 130%. +patch=1,EE,00477940,word,00000001 //00000002 +patch=1,EE,0028FF6C,word,24020001 //24020002 60hz patch=1,EE,E001CFD0,extended,00962BAC -patch=1,EE,0028FEC8,extended,24030002 //50hz li v1,0x2 50hz +patch=1,EE,0028FEC8,extended,24030002 //50hz patch=1,EE,E0016380,extended,00962BAC patch=1,EE,0028FEC8,extended,24030001 patch=1,EE,E0015E20,extended,00962BAC @@ -135,9 +135,10 @@ patch=1,EE,0028FEC8,extended,24030001 patch=1,EE,E0018580,extended,00962BAC patch=1,EE,0028FEC8,extended,24030001 -[Mode 480p] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan when selecting 60hz +description=SDTV 480p mode when selecting 60 Hz patch=1,EE,E0040000,extended,004758E8 patch=1,EE,201009C4,extended,3C050000 patch=1,EE,201009CC,extended,3C060050 diff --git a/patches/SLES-51952_355DBDDF.pnach b/patches/SLES-51952_355DBDDF.pnach index 7a10254c..c60eb6f7 100644 --- a/patches/SLES-51952_355DBDDF.pnach +++ b/patches/SLES-51952_355DBDDF.pnach @@ -2,7 +2,7 @@ gametitle=R-Type Final (PAL-M3) [SLES-51952] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by sergx12, PAL conversion & black bar fix by FlatOut +author=sergx12, PAL conversion & black bar fix by FlatOut patch=1,EE,0016edc0,word,3c033f40 // menu patch=1,EE,0016fbac,word,3c043f40 // hor patch=1,EE,0022E010,word,43d60000 // render fix diff --git a/patches/SLES-51954_564F352C.pnach b/patches/SLES-51954_564F352C.pnach index 23daae18..295bf08b 100644 --- a/patches/SLES-51954_564F352C.pnach +++ b/patches/SLES-51954_564F352C.pnach @@ -1,22 +1,34 @@ gametitle=Max Payne 2 - The Fall of Max Payne (PAL-E) SLES-51954 564F352C -[50 FPS] +[Widescreen 16:9] +gsaspectratio=16:9 author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 300% EE Overclock to be stable. +description=Enable native widescreen +patch=1,EE,005996C8,extended,00000010 //00000004 +patch=1,EE,005996D0,extended,00000009 //00000003 + +[Remove Blackbars] +author=PeterDelta +description=Removes black bars in cutscenes +patch=1,EE,207419F8,extended,3F800000 + +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock at 300%. patch=1,EE,005D8F78,word,00000001 //00000002 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps +description=SDTV 480p mode at start. patch=1,EE,E0040000,extended,005D8F88 -patch=1,EE,2010D1E0,extended,34050052 +patch=1,EE,2010D1E0,extended,34050050 patch=1,EE,2010D1E4,extended,24030002 patch=1,EE,2010D1E8,extended,0000000C patch=1,EE,2010D1EC,extended,03E00008 -patch=1,EE,E0060000,extended,01FFF89C +patch=1,EE,E0040000,extended,01FFF89C patch=1,EE,2010D1E0,extended,24030002 patch=1,EE,2010D1E4,extended,0000000C patch=1,EE,2010D1E8,extended,03E00008 patch=1,EE,2010D1EC,extended,00000000 -patch=1,EE,205EEB38,extended,02058290 -patch=1,EE,205EEB60,extended,02058290 \ No newline at end of file +patch=1,EE,006F1670,extended,00000000 \ No newline at end of file diff --git a/patches/SLES-51958_E8A97250.pnach b/patches/SLES-51958_E8A97250.pnach index 2fa666a7..aaa6007a 100644 --- a/patches/SLES-51958_E8A97250.pnach +++ b/patches/SLES-51958_E8A97250.pnach @@ -2,7 +2,7 @@ gametitle=Whiplash [PAL] (SLES_519.58) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,002C3B40,word,3C013FE3 //3C013FAA (Increases hor. axis) diff --git a/patches/SLES-51959_B29E5362.pnach b/patches/SLES-51959_B29E5362.pnach index a36e21f4..d542bafe 100644 --- a/patches/SLES-51959_B29E5362.pnach +++ b/patches/SLES-51959_B29E5362.pnach @@ -2,7 +2,7 @@ gametitle=Football Generation (E)(SLES-51959) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51966_40127377.pnach b/patches/SLES-51966_40127377.pnach index 16630606..b574a98b 100644 --- a/patches/SLES-51966_40127377.pnach +++ b/patches/SLES-51966_40127377.pnach @@ -2,7 +2,7 @@ gametitle=Bombastic [PAL] (SLES_519.66) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001583AC,word,3C013F40 //3C013F80 Hor menu diff --git a/patches/SLES-51966_D4B7468B.pnach b/patches/SLES-51966_D4B7468B.pnach index 9afd0f54..8a808254 100644 --- a/patches/SLES-51966_D4B7468B.pnach +++ b/patches/SLES-51966_D4B7468B.pnach @@ -2,7 +2,7 @@ gametitle=Backyard Wrestling - Don't Try This at Home (PAL)(SLES-51966) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51967_FDA10318.pnach b/patches/SLES-51967_FDA10318.pnach index e229cb16..109ee810 100644 --- a/patches/SLES-51967_FDA10318.pnach +++ b/patches/SLES-51967_FDA10318.pnach @@ -1,32 +1,40 @@ -gametitle=Need for Speed - Underground (PAL-M7) (SLES-51967) +gametitle=Need for Speed - Underground (PAL-M7) (SLES-51967) FDA10318 [Widescreen 16:9] gsaspectratio=16:9 -author=ElHecht -comment=Widescreen Hack 16:9 -// 16:9 +author=nemesis2000, ElHecht & PeterDelta +description=Renders the game in 16:9 aspect ratio patch=1,EE,00438adc,word,3f400000 // 3f800000 patch=1,EE,00438a14,word,3f400000 // 3f800000 patch=1,EE,004ff628,word,3f2aaaab // 3f000000 patch=1,EE,004ff630,word,3f2aaaab // 3f000000 +patch=1,EE,204378E4,extended,3F400000 +patch=1,EE,20437FEC,extended,3F400000 +patch=1,EE,20229DA8,extended,3C01BF28 +patch=1,EE,20229DAC,extended,44816800 +patch=1,EE,20229DDC,extended,46007307 +patch=1,EE,20229DE0,extended,46006BC7 +patch=1,EE,E0040109,extended,01BDED80 +patch=1,EE,20229DA8,extended,3C01BF00 +patch=1,EE,20229DAC,extended,44816000 +patch=1,EE,20229DDC,extended,46006346 +patch=1,EE,20229DE0,extended,460073C6 -// 16:10 -//patch=1,EE,00438adc,word,3f555555 // 3f800000 -//patch=1,EE,00438a14,word,3f555555 // 3f800000 -//patch=1,EE,004ff628,word,3f19999a // 3f000000 -//patch=1,EE,004ff630,word,3f19999a // 3f000000 - - -[50 FPS] +[50/60 FPS] author=asasega -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,2011060C,extended,2C420001 //2C420002 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps +description=SDTV 480p mode at start. patch=1,EE,003AF874,word,24110000 -patch=1,EE,003AF878,word,24120052 +patch=1,EE,003AF878,word,24120050 patch=1,EE,003AF884,word,24130001 patch=1,EE,004FEFF8,word,3C888889 -patch=1,EE,0042EE04,word,0000001E \ No newline at end of file + +[Remove blur] +author=PeterDelta +description=Remove blur effect +patch=1,EE,204D9D10,word,00000000 \ No newline at end of file diff --git a/patches/SLES-51970_763D3BF9.pnach b/patches/SLES-51970_763D3BF9.pnach index 1509c3af..c366829c 100644 --- a/patches/SLES-51970_763D3BF9.pnach +++ b/patches/SLES-51970_763D3BF9.pnach @@ -2,7 +2,7 @@ gametitle=Nickelodeon SpongeBob SquarePants in: Battle for Bikini Bottom (PAL) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,0035c670,word,0c045286 diff --git a/patches/SLES-51973_4D7CBCE7.pnach b/patches/SLES-51973_4D7CBCE7.pnach index 36081d16..18efd3f9 100644 --- a/patches/SLES-51973_4D7CBCE7.pnach +++ b/patches/SLES-51973_4D7CBCE7.pnach @@ -2,7 +2,7 @@ gametitle=War Chess (E)(SLES-51973) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51976_FE1720F1.pnach b/patches/SLES-51976_FE1720F1.pnach index 9415d51d..962ee51b 100644 --- a/patches/SLES-51976_FE1720F1.pnach +++ b/patches/SLES-51976_FE1720F1.pnach @@ -14,5 +14,5 @@ patch=1,EE,0051d928,word,3C0243b6 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00159E9C,word,24020000 //24020001 \ No newline at end of file diff --git a/patches/SLES-51978_1248FE3A.pnach b/patches/SLES-51978_1248FE3A.pnach index 186aa0a8..915d0401 100644 --- a/patches/SLES-51978_1248FE3A.pnach +++ b/patches/SLES-51978_1248FE3A.pnach @@ -2,7 +2,7 @@ gametitle=Baphomets Fluch - Der Schlafende Drache (SLES-51978) (Broken Sword Ger [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,001ad9cc,word,3c01bec0 patch=1,EE,001ad9d0,word,0c06b250 patch=1,EE,001ad9d4,word,44813000 diff --git a/patches/SLES-51980_B42446DC.pnach b/patches/SLES-51980_B42446DC.pnach index e5c3568a..f7e8df7c 100644 --- a/patches/SLES-51980_B42446DC.pnach +++ b/patches/SLES-51980_B42446DC.pnach @@ -2,7 +2,7 @@ gametitle=TT Superbikes: Real Road Racing [PAL-M5] (SLES_519.80) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas // Gameplay 16:9 patch=1,EE,205F9B58,extended,3F400000 //3F800000 (Increases hor. axis) diff --git a/patches/SLES-51982_38BD8D2E.pnach b/patches/SLES-51982_38BD8D2E.pnach index f6e58127..492ffa60 100644 --- a/patches/SLES-51982_38BD8D2E.pnach +++ b/patches/SLES-51982_38BD8D2E.pnach @@ -2,6 +2,6 @@ gametitle=ShellShock - Nam '67 (PAL-M) SLES-51982 38BD8D2E [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,E0010001,extended,0013B5E8 patch=1,EE,202994C8,extended,2C420001 //2C420002 \ No newline at end of file diff --git a/patches/SLES-51996_F0C727B8.pnach b/patches/SLES-51996_F0C727B8.pnach index 71909f6f..e304ead8 100644 --- a/patches/SLES-51996_F0C727B8.pnach +++ b/patches/SLES-51996_F0C727B8.pnach @@ -2,7 +2,7 @@ gametitle=International Snooker Championship (E)(SLES-51996) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-51997_0E40BA6A.pnach b/patches/SLES-51997_0E40BA6A.pnach index b957f538..c6b1ae51 100644 --- a/patches/SLES-51997_0E40BA6A.pnach +++ b/patches/SLES-51997_0E40BA6A.pnach @@ -1,9 +1,9 @@ -gametitle=SWAT - Global Strike Team (E)(SLES-51997) 0E40BA6A +gametitle=SWAT - Global Strike Team (PAL-M) (SLES-51997) 0E40BA6A [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,002a6774,word,3c013f23 //3c013f00 Zoom patch=1,EE,0025fa14,word,080a5248 //460039c2 Y-Fov patch=1,EE,00294920,word,460039c2 @@ -14,5 +14,5 @@ patch=1,EE,00294930,word,08097e86 [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00468DC0,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-51998_C3BE8BAB.pnach b/patches/SLES-51998_C3BE8BAB.pnach index e55efc36..00f63337 100644 --- a/patches/SLES-51998_C3BE8BAB.pnach +++ b/patches/SLES-51998_C3BE8BAB.pnach @@ -2,7 +2,7 @@ gametitle=Kao the Kangaroo Round 2 (E)(SLES-51998) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52002_144CC35B.pnach b/patches/SLES-52002_144CC35B.pnach index 5fa13978..9e8d610b 100644 --- a/patches/SLES-52002_144CC35B.pnach +++ b/patches/SLES-52002_144CC35B.pnach @@ -9,7 +9,7 @@ gsaspectratio=16:9 // ========== comment= Rogue Ops * SLES-52002 * PAL-M6 * 144CC35B -comment=- Widescreen hack by pgert. +author=pgert comment=- Might not work with all BIOS types & configurations. patch=1,EE,2065A190,extended,3F400000 // 3F800000 - X-Axis - 16:9 // patch=1,EE,2065A190,extended,3F555555 // - 16:10 diff --git a/patches/SLES-52008_5EAC167B.pnach b/patches/SLES-52008_5EAC167B.pnach index 883cba7f..a8448bcd 100644 --- a/patches/SLES-52008_5EAC167B.pnach +++ b/patches/SLES-52008_5EAC167B.pnach @@ -2,7 +2,7 @@ gametitle=NBA Live 2004 (E)(SLES-52008) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLES-52011_D9B62DD3.pnach b/patches/SLES-52011_D9B62DD3.pnach index a645873c..e6c15bff 100644 --- a/patches/SLES-52011_D9B62DD3.pnach +++ b/patches/SLES-52011_D9B62DD3.pnach @@ -3,11 +3,11 @@ gametitle=Tak and The Power of Juju (PAL-E) SLES-52011 D9B62DD3 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,002511C0,word,3C013FE3 //3C013FAA patch=1,EE,002511C4,word,3421388E //3421AAAB [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0043FB38,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-52017_9771C478.pnach b/patches/SLES-52017_9771C478.pnach index 07887ad1..d34ea337 100644 --- a/patches/SLES-52017_9771C478.pnach +++ b/patches/SLES-52017_9771C478.pnach @@ -2,7 +2,7 @@ gametitle=The Lord of the Rings - The Return of the King (PAL-M5) (SLES-52017) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0014b13c,word,3c023f40 // 3c023f80 hor fov diff --git a/patches/SLES-52020_9771C478.pnach b/patches/SLES-52020_9771C478.pnach index efafc857..3532732f 100644 --- a/patches/SLES-52020_9771C478.pnach +++ b/patches/SLES-52020_9771C478.pnach @@ -3,10 +3,10 @@ gametitle=Señor de Los Anillos, El - El Retorno del Rey (PAL-S) SLES-52020 9771 [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,0014b13c,word,3c023f40 //3c023f80 hor fov [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0014B318,word,10000013 //14400003 \ No newline at end of file diff --git a/patches/SLES-52023_FE419424.pnach b/patches/SLES-52023_FE419424.pnach index 61a28ff5..a4eb2a5e 100644 --- a/patches/SLES-52023_FE419424.pnach +++ b/patches/SLES-52023_FE419424.pnach @@ -1,14 +1,14 @@ -gametitle=Manhunt SLES_520.23 FE419424 +gametitle=Manhunt (PAL-M) SLES-52023 FE419424 [Widescreen 16:9] gsaspectratio=16:9 author=sergx12 -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,001c88a8,word,3c023f03 patch=1,EE,001c88c8,word,3c033f6e patch=1,EE,001c88d0,word,3462eeee [50 FPS] author=PeterDelta -comment=Unlocked at 50FPS -patch=1,EE,0054A1E0,word,08000001 //08000002 j 0x00000008 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,0054A1E0,word,08000001 //08000002 \ No newline at end of file diff --git a/patches/SLES-52034_C365B25F.pnach b/patches/SLES-52034_C365B25F.pnach index c349e1bf..eb11c72c 100644 --- a/patches/SLES-52034_C365B25F.pnach +++ b/patches/SLES-52034_C365B25F.pnach @@ -2,7 +2,7 @@ gametitle=The Cat in the Hat (E)(SLES-52034) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52036_F418F2EC.pnach b/patches/SLES-52036_F418F2EC.pnach index 6ec3fe13..4302f363 100644 --- a/patches/SLES-52036_F418F2EC.pnach +++ b/patches/SLES-52036_F418F2EC.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown - Here Comes the Pain (PAL-E) (SLES-52036) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001040e4,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-52039_BE408EFF.pnach b/patches/SLES-52039_BE408EFF.pnach index e0bd81a2..062d55c4 100644 --- a/patches/SLES-52039_BE408EFF.pnach +++ b/patches/SLES-52039_BE408EFF.pnach @@ -1,7 +1,22 @@ -gametitle=Terminator 3 - Rise Of The Machines (PAL-S) SLES-52039 BE408EFF +gametitle=Terminator 3 - Rise of the Machines (PAL-S) SLES-52039 BE408EFF + +[Widescreen 16:9] +gsaspectratio=16:9 +author=Arapapa, ported by PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,0026D620,word,080BE376 +patch=1,EE,002F8DD8,word,4600A346 +patch=1,EE,002F8DDC,word,3C013F40 +patch=1,EE,002F8DE0,word,4481F000 +patch=1,EE,002F8DE4,word,461E6B42 +patch=1,EE,002F8DE8,word,0809B589 //Target +patch=1,EE,002870BC,word,080BE37B +patch=1,EE,002F8DEC,word,461EAD42 +patch=1,EE,002F8DF0,word,E6150000 +patch=1,EE,002F8DF4,word,080A1C30 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock (130%). patch=1,EE,003EED78,word,00000000 //00000001 patch=1,EE,0013FC9C,word,3C013F00 //3C013F80 \ No newline at end of file diff --git a/patches/SLES-52041_090379B9.pnach b/patches/SLES-52041_090379B9.pnach index 46c77bf1..258fd8b9 100644 --- a/patches/SLES-52041_090379B9.pnach +++ b/patches/SLES-52041_090379B9.pnach @@ -2,7 +2,7 @@ gametitle=Detonator [PAL] (SLES_520.41) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00172674,word,3C013F40 //00000000 (Increases hor. axis) diff --git a/patches/SLES-52043_DBA1250E.pnach b/patches/SLES-52043_DBA1250E.pnach index 57c0bc35..a4195401 100644 --- a/patches/SLES-52043_DBA1250E.pnach +++ b/patches/SLES-52043_DBA1250E.pnach @@ -1,8 +1,8 @@ -gametitle=MX Unleashed [PAL] (SLES_520.43) +gametitle=MX Unleashed PAL-E SLES-52043 DBA1250E [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00112E40,word,3C033CAA //3C033C8E Zoom @@ -13,4 +13,9 @@ patch=1,EE,00112E38,word,3C023FAB //3C023F80 Y-FOV patch=1,EE,001ACBD4,word,3C03BFAB //3C03BF80 patch=1,EE,001ACBD8,word,3C023FAB //3C023F80 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,2019222C,extended,24040001 +patch=1,EE,E0010001,extended,004292A8 +patch=1,EE,2019222C,extended,24040002 \ No newline at end of file diff --git a/patches/SLES-52047_BF0D1E1A.pnach b/patches/SLES-52047_BF0D1E1A.pnach index ce685363..97af9a06 100644 --- a/patches/SLES-52047_BF0D1E1A.pnach +++ b/patches/SLES-52047_BF0D1E1A.pnach @@ -3,12 +3,12 @@ gametitle=The Sims - Bustin' Out (PAL-M) (SLES-52047) BF0D1E1A [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen hack +description=Renders the game in 16:9 aspect ratio //aa3f013c abaa2134 00008144 0800e003 00000000 00000000 0800e003 patch=1,EE,00293da0,word,3c013fe3 //3c013faa patch=1,EE,00293da4,word,34218e2a //3421aaab [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,002A3208,word,28820001 //28820002 \ No newline at end of file diff --git a/patches/SLES-52062_916AE593.pnach b/patches/SLES-52062_916AE593.pnach index cbe919f0..0f559a07 100644 --- a/patches/SLES-52062_916AE593.pnach +++ b/patches/SLES-52062_916AE593.pnach @@ -2,7 +2,7 @@ gametitle=Pop Star Academy (E)(SLES-52062) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52063_77E924AC.pnach b/patches/SLES-52063_77E924AC.pnach index 4f00ac83..ce230c40 100644 --- a/patches/SLES-52063_77E924AC.pnach +++ b/patches/SLES-52063_77E924AC.pnach @@ -1,8 +1,8 @@ -gametitle=Alarm for Cobra 11 (E)(SLES-52063) +gametitle=Alarm for Cobra 11 PAL-E SLES-52063 77E924AC [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 @@ -10,4 +10,7 @@ comment=Widescreen hack by Arapapa //00bf023c 86000046 patch=1,EE,003a0ed0,word,3c02bf55 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00136AC0,word,24020000 //24020001 \ No newline at end of file diff --git a/patches/SLES-52065_8F1DB793.pnach b/patches/SLES-52065_8F1DB793.pnach index 311ef9ea..31a7d7bb 100644 --- a/patches/SLES-52065_8F1DB793.pnach +++ b/patches/SLES-52065_8F1DB793.pnach @@ -2,7 +2,7 @@ gametitle=Flipnic (E)(SLES-52065) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLES-52095_0F877618.pnach b/patches/SLES-52095_0F877618.pnach index e7083c76..80d49383 100644 --- a/patches/SLES-52095_0F877618.pnach +++ b/patches/SLES-52095_0F877618.pnach @@ -2,7 +2,7 @@ gametitle=Gradius V (E)(SLES-52095) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52101_CDD6C078.pnach b/patches/SLES-52101_CDD6C078.pnach index dbe15f51..79f29a30 100644 --- a/patches/SLES-52101_CDD6C078.pnach +++ b/patches/SLES-52101_CDD6C078.pnach @@ -2,7 +2,7 @@ gametitle=Wrath Unleashed (PAL-M5) SLES_521.01 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by dieSkaarj +author=dieSkaarj patch=1,EE,20797CC0,word,3f400000 //3f800000 diff --git a/patches/SLES-52104_5A6F5E04.pnach b/patches/SLES-52104_5A6F5E04.pnach index f944cf63..83a24e60 100644 --- a/patches/SLES-52104_5A6F5E04.pnach +++ b/patches/SLES-52104_5A6F5E04.pnach @@ -2,7 +2,7 @@ gametitle=Tak and the Power of Juju [PAL-Germany] (SLES_521.04) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,002513F0,word,3C013FE3 //3C013FAA diff --git a/patches/SLES-52111_D354BAEF.pnach b/patches/SLES-52111_D354BAEF.pnach index c7be7994..ff6a431b 100644 --- a/patches/SLES-52111_D354BAEF.pnach +++ b/patches/SLES-52111_D354BAEF.pnach @@ -2,7 +2,7 @@ gametitle=Mojo! (U)(SLES-52111) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52122_4924907E.pnach b/patches/SLES-52122_4924907E.pnach index 1a2238fc..c6015524 100644 --- a/patches/SLES-52122_4924907E.pnach +++ b/patches/SLES-52122_4924907E.pnach @@ -1,12 +1,12 @@ -gametitle=Crime Life - Gang Wars (E)(SLES-52122) +gametitle=Crime Life - Gang Wars (PAL-M) (SLES-52122) 4924907E [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen Hack - -//Widescreen hack 16:9 - +description=Renders the game in 16:9 aspect ratio patch=1,EE,004155f8,word,3c043f40 //3c043f80 - +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,006388D8,word,00000000 //00000001 \ No newline at end of file diff --git a/patches/SLES-52125_74FBFBB1.pnach b/patches/SLES-52125_74FBFBB1.pnach index 70195699..47d2b38d 100644 --- a/patches/SLES-52125_74FBFBB1.pnach +++ b/patches/SLES-52125_74FBFBB1.pnach @@ -2,7 +2,7 @@ gametitle=Agassi Tennis Generation (E)(SLES-52125) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-52136_3569E863.pnach b/patches/SLES-52136_3569E863.pnach new file mode 100644 index 00000000..dce4c84f --- /dev/null +++ b/patches/SLES-52136_3569E863.pnach @@ -0,0 +1,6 @@ +gametitle=Hitman Contracts SLES-52136 3569E863 + +[50/60fps] +author=Gabominated +description=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,2053a70c,extended,00000001 //00000002 diff --git a/patches/SLES-52149_80FAC91D.pnach b/patches/SLES-52149_80FAC91D.pnach index 16e56a2d..415a7dd2 100644 --- a/patches/SLES-52149_80FAC91D.pnach +++ b/patches/SLES-52149_80FAC91D.pnach @@ -3,11 +3,11 @@ gametitle=Splinter Cell - Pandora Tomorrow (PAL-M) SLES-52149 80FAC91D SC2A.ELF [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,0017A200,word,3C1B3F40 //AE03008C - X-axis patch=1,EE,001B79F4,word,AE1B008C //AE03008C [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,0018D7FC,word,00000000 //1440FFFA \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,0018D7C8,word,24030001 //24030002 \ No newline at end of file diff --git a/patches/SLES-52149_AB82114E.pnach b/patches/SLES-52149_AB82114E.pnach index a43d73f2..b7cc8304 100644 --- a/patches/SLES-52149_AB82114E.pnach +++ b/patches/SLES-52149_AB82114E.pnach @@ -4,32 +4,8 @@ gametitle=Splinter Cell - Pandora Tomorrow (PAL-M) SLES-52149 AB82114E [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Renders the game in 16:9 aspect ratio -// ========== -// pgert@150820 -// http://forums.pcsx2.net/Thread-PCSX2-Widescreen-Game-Patches?pid=240786#pid240786 -// ========== - -// ========== -// comment=- 16:9 Widescreen hack for Single Player mode by ElHecht. -// patch=1,EE,0017A200,word,3C1B3F40 // AE03008C - X-axis -// patch=1,EE,001B79F4,word,AE1B008C // AE03008C -// ========== -// comment=- 16:10 Widescreen hack for Single Player mode by ElHecht. -// patch=1,EE,0017A200,word,3C1B3F55 // 00000000 - X-axis -// patch=1,EE,001B79F4,word,377B5555 // AE03008C - X-axis -// patch=1,EE,001B7A0C,word,AE1B008C // 8E02004C -// ========== - -// ========== -// Notes (by pgert) - do not use. -// - Alternative 16:10 Widescreen hack by pgert. -// Might not work with all BIOS types & configurations. -// Fast boot recommended. -// patch=1,EE,21628ABC,extended,3F400000 // 3F800000 - X-axis -// patch=1,EE,21628AC0,extended,3F666666 // 3F800000 - Y-axis -// ========== +description=Renders the game in 16:9 aspect ratio [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. \ No newline at end of file +description=Might need EE Overclock at 130%. \ No newline at end of file diff --git a/patches/SLES-52153_E94FBF35.pnach b/patches/SLES-52153_E94FBF35.pnach index 5f2087cb..ab3e1b9a 100644 --- a/patches/SLES-52153_E94FBF35.pnach +++ b/patches/SLES-52153_E94FBF35.pnach @@ -1,6 +1,6 @@ -gametitle=Driv3r [PAL-M] SLES-52153 E94FBF35 +gametitle=Driv3r (PAL-M) SLES-52153 E94FBF35 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,00297828,word,50500006 //50400006 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,00297810,word,24440002 //24440001 \ No newline at end of file diff --git a/patches/SLES-52159_51AB1AB0.pnach b/patches/SLES-52159_51AB1AB0.pnach index 9110be57..267153c9 100644 --- a/patches/SLES-52159_51AB1AB0.pnach +++ b/patches/SLES-52159_51AB1AB0.pnach @@ -2,7 +2,7 @@ //[Widescreen 16:9] //gsaspectratio=16:9 -//comment=Widescreen hack by Arapapa +//author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52173_BB2CF62F.pnach b/patches/SLES-52173_BB2CF62F.pnach index e1691410..185e8338 100644 --- a/patches/SLES-52173_BB2CF62F.pnach +++ b/patches/SLES-52173_BB2CF62F.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 4 - Xtreme Legends (PAL-G) (SLES-52173) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // // 16:9 patch=1,EE,00139a00,word,3c0243b4 // 3c0243a0 hor fov value1 diff --git a/patches/SLES-52179_973793E8.pnach b/patches/SLES-52179_973793E8.pnach index d9bbbfdf..9e17f143 100644 --- a/patches/SLES-52179_973793E8.pnach +++ b/patches/SLES-52179_973793E8.pnach @@ -2,7 +2,7 @@ gametitle=Kaan - Barbarian's Blade (E)(SLES-52179) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52190_A1B8DAC8.pnach b/patches/SLES-52190_A1B8DAC8.pnach index ff5e1d10..735f0ebc 100644 --- a/patches/SLES-52190_A1B8DAC8.pnach +++ b/patches/SLES-52190_A1B8DAC8.pnach @@ -2,7 +2,7 @@ gametitle=RPM Tuning (E)(SLES-52190) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52203_89D79F73.pnach b/patches/SLES-52203_89D79F73.pnach index 97f315c2..4e0b9acf 100644 --- a/patches/SLES-52203_89D79F73.pnach +++ b/patches/SLES-52203_89D79F73.pnach @@ -2,7 +2,7 @@ gametitle=Armored Core - Silent Line (PAL-E) (SLES-52203) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0031def4,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-52230_FD927ADB.pnach b/patches/SLES-52230_FD927ADB.pnach index 6538d588..a1277e28 100644 --- a/patches/SLES-52230_FD927ADB.pnach +++ b/patches/SLES-52230_FD927ADB.pnach @@ -2,7 +2,7 @@ gametitle=Muppets Party Cruise (E)(SLES-52230) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52237_B5A7735B.pnach b/patches/SLES-52237_B5A7735B.pnach index c77a358b..39123be0 100644 --- a/patches/SLES-52237_B5A7735B.pnach +++ b/patches/SLES-52237_B5A7735B.pnach @@ -2,7 +2,7 @@ gametitle=Dot Hack Part 1 - Infection (PAL-M5) (SLES-52237) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0010a64c,word,3c023f40 // 3c023f80 hor fov 1 diff --git a/patches/SLES-52238_3B470BBD.pnach b/patches/SLES-52238_3B470BBD.pnach index 68f7f2ff..0161ade5 100644 --- a/patches/SLES-52238_3B470BBD.pnach +++ b/patches/SLES-52238_3B470BBD.pnach @@ -2,7 +2,7 @@ gametitle=Nightshade [PAL] (SLES_522.38) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00183124,word,3C023F24 //3C023F5B (Increases hor. axis) diff --git a/patches/SLES-52240_9867FA17.pnach b/patches/SLES-52240_9867FA17.pnach index 47751a67..77fbcb23 100644 --- a/patches/SLES-52240_9867FA17.pnach +++ b/patches/SLES-52240_9867FA17.pnach @@ -2,7 +2,7 @@ gametitle=International Pool Championship (E)(SLES-52240) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52241_38E47587.pnach b/patches/SLES-52241_38E47587.pnach index 5f6ebae2..9b4dd181 100644 --- a/patches/SLES-52241_38E47587.pnach +++ b/patches/SLES-52241_38E47587.pnach @@ -2,7 +2,7 @@ gametitle=Myth Makers - Orbs of Doom (E)(SLES-52241) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52247_36ECD588.pnach b/patches/SLES-52247_36ECD588.pnach index 0a50e64e..9f814f1e 100644 --- a/patches/SLES-52247_36ECD588.pnach +++ b/patches/SLES-52247_36ECD588.pnach @@ -3,14 +3,22 @@ gametitle=The Hobbit (PAL-R) SLES-52247 36ECD588 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio -patch=1,EE,002FA6AC,word,3C013EC0 //3C013F00 -patch=1,EE,0038B168,word,3C013EC0 //3C013F00 -patch=1,EE,0038B27C,word,3C013F40 //3C013F00 +description=Renders the game in 16:9 aspect ratio +patch=1,EE,0038B168,word,3C013ED5 +patch=1,EE,0038B27C,word,3C013F49 +patch=1,EE,00389E00,word,3C013F1D [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,2040458C,extended,00000001 +description=Might need EE Overclock (130%). +patch=1,EE,0040458C,extended,00000001 patch=1,EE,E0010000,extended,003E9010 -patch=1,EE,2040458C,extended,00000002 \ No newline at end of file +patch=1,EE,0040458C,extended,00000002 +patch=1,EE,E0010000,extended,00472D30 +patch=1,EE,0040458C,extended,00000002 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,003BEFE8,word,24120050 \ No newline at end of file diff --git a/patches/SLES-52256_D13BEF2C.pnach b/patches/SLES-52256_D13BEF2C.pnach index 34a51175..de2cc951 100644 --- a/patches/SLES-52256_D13BEF2C.pnach +++ b/patches/SLES-52256_D13BEF2C.pnach @@ -1,22 +1,34 @@ -gametitle=Max Payne 2 - Fall of Max Payne (Spain) (SLES-52256) +gametitle=Max Payne 2 - The Fall of Max Payne (PAL-S) SLES-52256 D13BEF2C -[50 FPS] +[Widescreen 16:9] +gsaspectratio=16:9 author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 300% EE Overclock to be stable. +description=Enable native widescreen +patch=1,EE,005814C8,extended,00000010 //00000004 +patch=1,EE,005814D0,extended,00000009 //00000003 + +[Remove Blackbars] +author=PeterDelta +description=Removes black bars in cutscenes +patch=1,EE,20729AE8,extended,3F800000 + +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock at 300%. patch=1,EE,005C0DF8,word,00000001 //00000002 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps +description=SDTV 480p mode at start. patch=1,EE,E0040000,extended,005C0E0C -patch=1,EE,2010D1E0,extended,34050052 +patch=1,EE,2010D1E0,extended,34050050 patch=1,EE,2010D1E4,extended,24030002 patch=1,EE,2010D1E8,extended,0000000C patch=1,EE,2010D1EC,extended,03E00008 -patch=1,EE,E0060000,extended,01FFF89C +patch=1,EE,E0040000,extended,01FFF89C patch=1,EE,2010D1E0,extended,24030002 patch=1,EE,2010D1E4,extended,0000000C patch=1,EE,2010D1E8,extended,03E00008 patch=1,EE,2010D1EC,extended,00000000 -patch=1,EE,205D69B8,extended,02058290 -patch=1,EE,205D69E0,extended,02058290 \ No newline at end of file +patch=1,EE,006D94F0,extended,00000000 \ No newline at end of file diff --git a/patches/SLES-52277_635AB78A.pnach b/patches/SLES-52277_635AB78A.pnach index 61ec6c4e..a270c4c0 100644 --- a/patches/SLES-52277_635AB78A.pnach +++ b/patches/SLES-52277_635AB78A.pnach @@ -2,7 +2,7 @@ gametitle=RS II - Riding Spirits (E)(SLES-52277) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52282_7E9B5698.pnach b/patches/SLES-52282_7E9B5698.pnach index e29ca93f..fbf8b4cc 100644 --- a/patches/SLES-52282_7E9B5698.pnach +++ b/patches/SLES-52282_7E9B5698.pnach @@ -3,7 +3,7 @@ gametitle=Mafia [PAL] (SLES_522.82) 7E9B5698 [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas and Arapapa -comment=Widescreen hack +description=Renders the game in 16:9 aspect ratio //Gameplay 16:9 patch=1,EE,20FFB6B4,extended,3FAB0000 //3F800000 Vertical axis patch=1,EE,20FFB79C,extended,3FAB0000 //3F800000 Horizontal axis @@ -14,6 +14,6 @@ patch=1,EE,20FFB708,extended,44000000 //43660000 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 300% EE Overclock to be stable. +description=Might need EE Overclock at 300%. patch=1,EE,0046F354,word,2C410001 //0052082B patch=1,EE,002A7748,word,8F889800 //8E284204 \ No newline at end of file diff --git a/patches/SLES-52286_542766CA.pnach b/patches/SLES-52286_542766CA.pnach index 9205a14d..381d1715 100644 --- a/patches/SLES-52286_542766CA.pnach +++ b/patches/SLES-52286_542766CA.pnach @@ -3,11 +3,11 @@ gametitle=Tak y el Poder Juju (PAL-S) SLES-52286 542766CA [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,00251400,word,3C013FE3 //3C013FAA patch=1,EE,00251404,word,3421388E //3421AAAB [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00440738,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-52288_28A2774C.pnach b/patches/SLES-52288_28A2774C.pnach index ab2f4ac2..eb41f30c 100644 --- a/patches/SLES-52288_28A2774C.pnach +++ b/patches/SLES-52288_28A2774C.pnach @@ -1,11 +1,11 @@ -gametitle=Tom Clancy's Rainbow Six 3 SLES_522.88 +gametitle=Tom Clancy's Rainbow Six 3 (PAL-M) SLES-52288 28A2774C [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,001400ec,word,3c063f40 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00653878,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-52298_30C406CE.pnach b/patches/SLES-52298_30C406CE.pnach new file mode 100644 index 00000000..efcc1477 --- /dev/null +++ b/patches/SLES-52298_30C406CE.pnach @@ -0,0 +1,13 @@ +gametitle=IndyCar Series 2005 (PAL-M) SLES-52298 30C406CE + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Enable native widescreen +patch=1,EE,002CA70C,word,00000001 //00000000 +patch=1,EE,002DBAC8,word,3FE38E39 //3FAAAAAB + +[50 FPS] +author=PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,002DBACC,word,00000000 //00000001 \ No newline at end of file diff --git a/patches/SLES-52322_79585776.pnach b/patches/SLES-52322_79585776.pnach index beaf348a..d443dbe3 100644 --- a/patches/SLES-52322_79585776.pnach +++ b/patches/SLES-52322_79585776.pnach @@ -2,7 +2,7 @@ gametitle=Drakengard (PAL-M5) (SLES-52322) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0030101c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-52323_185BC820.pnach b/patches/SLES-52323_185BC820.pnach index 971e4142..55baeb24 100644 --- a/patches/SLES-52323_185BC820.pnach +++ b/patches/SLES-52323_185BC820.pnach @@ -2,7 +2,7 @@ gametitle=Richard Burns Rally (SLES-52323) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00112F74,word,3C014340 patch=1,EE,00112F94,word,3C013FF1 diff --git a/patches/SLES-52326_8C9BF4F9.pnach b/patches/SLES-52326_8C9BF4F9.pnach index 73b161b8..0a528394 100644 --- a/patches/SLES-52326_8C9BF4F9.pnach +++ b/patches/SLES-52326_8C9BF4F9.pnach @@ -1,6 +1,21 @@ -gametitle=Spawn - Armageddon SLES-52326 8C9BF4F9 +gametitle=Spawn - Armageddon (PAL-M) SLES-52326 8C9BF4F9 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Enable native widescreen +patch=1,EE,E0020005,extended,003749E0 +patch=1,EE,002D5A70,extended,00000001 +patch=1,EE,00338784,extended,00000001 +patch=1,EE,001220BC,extended,3C013F01 //3C013F00 fix border + +[Remove Blackbars] +author=PeterDelta +description=Removes black bars in cutscenes +patch=1,EE,003217B4,extended,00000001 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,002F1158,word,00000001 +description=Might need EE Overclock at 130%. +patch=0,EE,00227CB0,word,24020001 //24020002 +//patch=1,EE,002F1158,word,00000001 //real time \ No newline at end of file diff --git a/patches/SLES-52348_CC229675.pnach b/patches/SLES-52348_CC229675.pnach index aba7e683..110bf8e7 100644 --- a/patches/SLES-52348_CC229675.pnach +++ b/patches/SLES-52348_CC229675.pnach @@ -2,7 +2,7 @@ gametitle=Seven Samurai 20XX (PAL-M5) (SLES-52348) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,001bce24,word,3c094455 // 00000000 hor fov diff --git a/patches/SLES-52350_F2AB368B.pnach b/patches/SLES-52350_F2AB368B.pnach index 53ea2993..d485074d 100644 --- a/patches/SLES-52350_F2AB368B.pnach +++ b/patches/SLES-52350_F2AB368B.pnach @@ -2,7 +2,7 @@ gametitle=International Golf Pro (E)(SLES-52350) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52362_5D0235B7.pnach b/patches/SLES-52362_5D0235B7.pnach index e0a0978d..3951c0dc 100644 --- a/patches/SLES-52362_5D0235B7.pnach +++ b/patches/SLES-52362_5D0235B7.pnach @@ -2,11 +2,8 @@ gametitle=Bad Boys II (PAL-M) SLES-52362 5D0235B7 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack +description=Renders the game in 16:9 aspect ratio author=Arapapa - -//Gameplay 16:9 - //X-Fov patch=1,EE,002ea1bc,word,080e9f64 //46166302 patch=1,EE,003a7d90,word,46166302 //00000000 @@ -17,5 +14,5 @@ patch=1,EE,003a7da0,word,080ba870 //00000000 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0051C4C4,word,42480000 //41C80000 \ No newline at end of file diff --git a/patches/SLES-52363_5C5BC6D2.pnach b/patches/SLES-52363_5C5BC6D2.pnach index 9b0089e6..1f105553 100644 --- a/patches/SLES-52363_5C5BC6D2.pnach +++ b/patches/SLES-52363_5C5BC6D2.pnach @@ -2,7 +2,7 @@ gametitle=Bad Boys II (E)(SLES-52363) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLES-52367_F834AA3A.pnach b/patches/SLES-52367_F834AA3A.pnach index 254f011b..032fe7cf 100644 --- a/patches/SLES-52367_F834AA3A.pnach +++ b/patches/SLES-52367_F834AA3A.pnach @@ -2,7 +2,7 @@ gametitle=America's 10 Most Wanted (E)(SLES-52367) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52368_4D3469CC.pnach b/patches/SLES-52368_4D3469CC.pnach index 3613050c..4f79e987 100644 --- a/patches/SLES-52368_4D3469CC.pnach +++ b/patches/SLES-52368_4D3469CC.pnach @@ -2,7 +2,7 @@ gametitle=AFL Live - Premiership Edition (E)(SLES-52368) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-52372_6B68932C.pnach b/patches/SLES-52372_6B68932C.pnach index e94dbd6c..3985e7b1 100644 --- a/patches/SLES-52372_6B68932C.pnach +++ b/patches/SLES-52372_6B68932C.pnach @@ -87,17 +87,17 @@ patch=1,EE,2072421C,word,42340000 //gauge_hero_01 42700000 //patch=1,EE,208831D8,word,440cd000 //gauge_boss_icon_rhino 440EC000 //patch=1,EE,208831EC,word,440cd000 //gauge_boss_icon_rhino 440EC000 -[50 FPS] +[50/60 FPS] author=PeterDelta + CRASHARKI -description=Patches the game to run at 50 FPS (Might need 130% EE Overclock to be stable on heavy scenes). +description=Might need EE Overclock at 130%. patch=1,EE,0060AD20,word,00000001 //00000002 patch=1,EE,E0010001,extended,005E3C90 patch=1,EE,0060AD20,extended,00000002 -[Mode 480p] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode 480p at startup +description=SDTV 480p mode at start. patch=1,EE,00578864,word,3C050000 patch=1,EE,0057886C,word,3C060050 -patch=1,EE,00578874,word,3C070001 -patch=1,EE,1060AD04,extended,01E0 \ No newline at end of file +patch=1,EE,00578874,word,3C070001 \ No newline at end of file diff --git a/patches/SLES-52379_36D7FE6C.pnach b/patches/SLES-52379_36D7FE6C.pnach new file mode 100644 index 00000000..52a735b9 --- /dev/null +++ b/patches/SLES-52379_36D7FE6C.pnach @@ -0,0 +1,15 @@ +gametitle=DreamWorks Shrek 2 (PAL-E) SLES-52379 36D7FE6C +//Corresponds to the main crc to activate the secondary crc CFAB11B7 called SHREK2.ELF + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio + +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. + +[480p Mode] +author=PeterDelta +description=SDTV 480p mode at start. \ No newline at end of file diff --git a/patches/SLES-52379_CFAB11B7.pnach b/patches/SLES-52379_CFAB11B7.pnach new file mode 100644 index 00000000..b3100e82 --- /dev/null +++ b/patches/SLES-52379_CFAB11B7.pnach @@ -0,0 +1,34 @@ +gametitle=DreamWorks Shrek 2 (PAL-E) SLES-52379 CFAB11B7 (SHREK2.ELF) + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,003791C8,word,3F400000 +patch=1,EE,003604B4,word,3F400000 + +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,0014B6D0,extended,24040001 +patch=1,EE,E0050000,extended,00362714 +patch=1,EE,E0013F99,extended,00386B02 +patch=1,EE,20386B00,extended,3F19999A +patch=1,EE,E0020280,extended,0037C2E0 +patch=1,EE,0014B6D0,extended,24040002 +patch=1,EE,20386B00,extended,3F99999A +patch=1,EE,E0050001,extended,00362714 +patch=1,EE,E0013F80,extended,00386B02 +patch=1,EE,20386B00,extended,3F000000 +patch=1,EE,E0020280,extended,0037C2E0 +patch=1,EE,0014B6D0,extended,24040002 +patch=1,EE,20386B00,extended,3F800000 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,00362714,extended,00000001 +patch=1,EE,E0020005,extended,0037D0F0 +patch=1,EE,00386B04,extended,00000001 +patch=1,EE,20386AF0,extended,00000050 \ No newline at end of file diff --git a/patches/SLES-52382_4CF48A70.pnach b/patches/SLES-52382_4CF48A70.pnach index b1c413ab..053396de 100644 --- a/patches/SLES-52382_4CF48A70.pnach +++ b/patches/SLES-52382_4CF48A70.pnach @@ -5,5 +5,13 @@ gametitle=Shrek 2 (Spain) (SLES_523.82) [Widescreen 16:9] gsaspectratio=16:9 -author=CRASHARKI -comment=Patches the game to run at 16:9 Widescreen Aspect Ratio. (Original NTSC-U pnach by Arapapa) \ No newline at end of file +author=PeterDelta +description=Renders the game in 16:9 aspect ratio + +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. + +[480p Mode] +author=PeterDelta +description=SDTV 480p mode at start. \ No newline at end of file diff --git a/patches/SLES-52382_76C01D41.pnach b/patches/SLES-52382_76C01D41.pnach index 60be4990..f07ea379 100644 --- a/patches/SLES-52382_76C01D41.pnach +++ b/patches/SLES-52382_76C01D41.pnach @@ -4,11 +4,33 @@ gametitle=Shrek 2 (Spain) (SLES_523.82) [Widescreen 16:9] gsaspectratio=16:9 -author=CRASHARKI -comment=Patches the game to run at 16:9 Widescreen Aspect Ratio. (Original NTSC-U pnach by Arapapa) +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00379948,word,3F400000 +patch=1,EE,00360AB4,word,3F400000 -//Wide 16:9 (EA4ED1BC 00000000 7FAAAA3F 00000000) -patch=1,EE,20379A30,word,3F800000 // 3FAAAA7F +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,0014B7A8,extended,24040001 +patch=1,EE,E0050000,extended,00362E34 +patch=1,EE,E0013F99,extended,00387282 +patch=1,EE,20387280,extended,3F19999A +patch=1,EE,E0020280,extended,0037CA60 +patch=1,EE,0014B7A8,extended,24040002 +patch=1,EE,20387280,extended,3F99999A +patch=1,EE,E0050001,extended,00362E34 +patch=1,EE,E0013F80,extended,00387282 +patch=1,EE,20387280,extended,3F000000 +patch=1,EE,E0020280,extended,0037CA60 +patch=1,EE,0014B7A8,extended,24040002 +patch=1,EE,20387280,extended,3F800000 -//00 00 80 3F 00 00 80 3F 00 00 00 00 -patch=1,EE,20367674,extended,3f400000 //3f800000 HUD fix \ No newline at end of file +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,00362E34,extended,00000001 +patch=1,EE,E0020005,extended,0037D870 +patch=1,EE,00387284,extended,00000001 +patch=1,EE,20387270,extended,00000050 \ No newline at end of file diff --git a/patches/SLES-52384_9D87F3AF.pnach b/patches/SLES-52384_9D87F3AF.pnach index 281830c8..b6507113 100644 --- a/patches/SLES-52384_9D87F3AF.pnach +++ b/patches/SLES-52384_9D87F3AF.pnach @@ -1,53 +1,26 @@ -gametitle=Project Zero 2 - Crimson Butterfly +gametitle=Project Zero II: Crimson Butterfly * SLES-52384 * PAL-M5 * 9D87F3AF +// Fatal Frame II: Crimson Butterfly + +// This game might have some problems with the Cinematics, +// regardless of resolution or patches, however this pnach is not the cause of that. [Widescreen 16:9] gsaspectratio=16:9 -author=nemesis2000 and pgert -comment=Widescreen Hack -// ========== -// pgert@180217 -// http://forums.pcsx2.net/Thread-PCSX2-Widescreen-Game-Patches?pid=240786#pid240786 -// ========== -comment= Project Zero 2 - Crimson Butterfly * SLES-52384 * PAL-M5 * 9D87F3AF -comment=- This game might have some problems with the Cinematics in 60Hz mode, -comment=- regardless of resolution or patches; this pnach is not causing that. -comment=- * * * * * -comment=- Widescreen & HD pnach by pgert. -comment=- Patches primarily by nemesis2000. -// ========== -// This game has a sound-distortion when using the Spu2-X plug-in. -// Therefore (as a suggestion) use this special version of the plug-in: -// "https://forums.pcsx2.net/attachment.php?aid=65729". -// ========== +author=nemesis2000 -// ========== patch=1,EE,0018F090,word,3C013F40 // 3C013F80 - X-axis of GamePlay (including Cutscenes). - 16:9 -patch=1,EE,00340DDC,word,3F400000 // 3F800000 - X-axis of GamePlay (initial Aspect value). - 16:9 -// patch=1,EE,0018F090,word,3C013F55 // - 16:10 -// patch=1,EE,00340DDC,word,3F555555 // -// patch=1,EE,0018F090,word,3C013F64 // - 15:10 -// patch=1,EE,00340DDC,word,3F638E39 // -// ========== -patch=1,EE,00210DC4,word,00000000 // 0C0845A4 - corrects the Cutscene focus. -// patch=1,EE,001A1904,word,10000012 // 54400012 - disable Dither - optional hack. -// ========== -// Optional: Puts the Y-axis value to that of 50Hz-mode, when having 60Hz-mode. -// patch=1,EE,0018F09C,word,3C013F80 // 3C013F60 - Y-axis of GamePlay (including Cutscenes). -// patch=1,EE,00340DE0,word,3F800000 // 3F600000 - Y-axis of GamePlay - initial Aspect value. -// ========== +patch=1,EE,00340DDC,word,3F400000 // 3F800000 - X-axis of GamePlay (initial Aspect value) - 16:9 +patch=1,EE,00210DC4,word,00000000 // 0C0845A4 - corrects the Cutscenes focus. + // Flashlight Widescreen hack. patch=1,EE,0013B1DC,word,0C0541DB // 0C0541DC patch=1,EE,0013B264,word,0C0541DB // 0C0541DC patch=1,EE,0013B2CC,word,0C0541DB // 0C0541DC patch=1,EE,0013B344,word,0C0541DB // 0C0541DC patch=1,EE,0015076C,word,3C013F40 // 00000000 - 16:9 -// patch=1,EE,0015076C,word,3C013F55 // - 16:10 -// patch=1,EE,0015076C,word,3C013F64 // - 15:10 patch=1,EE,001507DC,word,44810800 // 00000000 patch=1,EE,001507E0,word,46016302 // 00000000 -// ========== -// ========== // Cinematics hack. patch=1,EE,001E9308,word,E49E0030 // 0200202D patch=1,EE,001E930C,word,0200202D // FFA20068 @@ -65,16 +38,104 @@ patch=1,EE,001E947C,word,10400003 // 10400004 patch=1,EE,001E9484,word,10000002 // 10000003 patch=1,EE,001E948C,word,8F84C00C // 00000000 patch=1,EE,001E9498,word,4481F000 // 00000000 -// ========== + // FMV-values. patch=1,EE,001E9490,word,3C013F40 // 8F84C00C - width (1.0f = 640). - 16:9 patch=1,EE,00344BD8,word,0000006A // 00000000 - x-pos = (640-640*ratio)/(2*ratio) int. - 16:9 -// patch=1,EE,001E9490,word,3C013F55 // - 16:10 -// patch=1,EE,00344BD8,word,00000040 // -// patch=1,EE,001E9490,word,3C013F64 // - 15:10 -// patch=1,EE,00344BD8,word,00000028 // + // ========== +[Widescreen/16:10] +gsaspectratio=Stretch +author=nemesis2000 & pgert + +patch=1,EE,0018F090,word,3C013F55 // - 16:10 +patch=1,EE,00340DDC,word,3F555555 // +patch=1,EE,00210DC4,word,00000000 + +// Flashlight Widescreen hack. +patch=1,EE,0013B1DC,word,0C0541DB +patch=1,EE,0013B264,word,0C0541DB +patch=1,EE,0013B2CC,word,0C0541DB +patch=1,EE,0013B344,word,0C0541DB +patch=1,EE,0015076C,word,3C013F55 // - 16:10 +patch=1,EE,001507DC,word,44810800 +patch=1,EE,001507E0,word,46016302 + +// Cinematics hack. +patch=1,EE,001E9308,word,E49E0030 +patch=1,EE,001E930C,word,0200202D +patch=1,EE,001E9310,word,FFA20068 +patch=1,EE,001E9314,word,FFA30070 +patch=1,EE,001E9318,word,0C05E542 +patch=1,EE,001E931C,word,FFA50090 +patch=1,EE,001E9320,word,0220102D +patch=1,EE,001E9324,word,DFB000B0 +patch=1,EE,001E9328,word,DFB100B8 +patch=1,EE,001E932C,word,DFBF00C0 +patch=1,EE,001E9330,word,03E00008 +patch=1,EE,001E9334,word,27BD00D0 +patch=1,EE,001E947C,word,10400003 +patch=1,EE,001E9484,word,10000002 +patch=1,EE,001E948C,word,8F84C00C +patch=1,EE,001E9498,word,4481F000 + +// FMV-values. +patch=1,EE,001E9490,word,3C013F55 // - 16:10 +patch=1,EE,00344BD8,word,00000040 // + +// ========== + +[Widescreen/15:10] +gsaspectratio=Stretch +author=nemesis2000 & pgert + +patch=1,EE,0018F090,word,3C013F64 // - 15:10 +patch=1,EE,00340DDC,word,3F638E39 // +patch=1,EE,00210DC4,word,00000000 + +// Flashlight Widescreen hack. +patch=1,EE,0013B1DC,word,0C0541DB +patch=1,EE,0013B264,word,0C0541DB +patch=1,EE,0013B2CC,word,0C0541DB +patch=1,EE,0013B344,word,0C0541DB +patch=1,EE,0015076C,word,3C013F64 // - 15:10 +patch=1,EE,001507DC,word,44810800 +patch=1,EE,001507E0,word,46016302 + +// Cinematics hack. +patch=1,EE,001E9308,word,E49E0030 +patch=1,EE,001E930C,word,0200202D +patch=1,EE,001E9310,word,FFA20068 +patch=1,EE,001E9314,word,FFA30070 +patch=1,EE,001E9318,word,0C05E542 +patch=1,EE,001E931C,word,FFA50090 +patch=1,EE,001E9320,word,0220102D +patch=1,EE,001E9324,word,DFB000B0 +patch=1,EE,001E9328,word,DFB100B8 +patch=1,EE,001E932C,word,DFBF00C0 +patch=1,EE,001E9330,word,03E00008 +patch=1,EE,001E9334,word,27BD00D0 +patch=1,EE,001E947C,word,10400003 +patch=1,EE,001E9484,word,10000002 +patch=1,EE,001E948C,word,8F84C00C +patch=1,EE,001E9498,word,4481F000 + +// FMV-values. +patch=1,EE,001E9490,word,3C013F64 // - 15:10 +patch=1,EE,00344BD8,word,00000028 // + +// ========== + +[Disable Dither effect] +patch=1,EE,001A1904,word,10000012 // 54400012 + +[Y-axis adjustment] +author=pgert +description=Puts the Y-axis value to that of 50 Hz-mode, when having 60 Hz-mode. +patch=1,EE,0018F09C,word,3C013F80 // 3C013F60 - Y-axis of GamePlay (including Cutscenes). +patch=1,EE,00340DE0,word,3F800000 // 3F600000 - Y-axis of GamePlay - initial Aspect value. + // ========== // Notes (by pgert). // ========== @@ -87,5 +148,3 @@ patch=1,EE,00344BD8,word,0000006A // 00000000 - x-pos = (640-640*ratio)/(2*ratio // patch=1,EE,001F9FF8,word,3C014450 // 3C0143A0 - X-axis placement of photos (affected by 0017ACD0). // patch=1,EE,001FA000,word,3C014438 // 3C014360 - Y-axis placement of photos (affected by 0017ACD0). // ========== - - diff --git a/patches/SLES-52402_CFF1365D.pnach b/patches/SLES-52402_CFF1365D.pnach index abac98fd..cb489639 100644 --- a/patches/SLES-52402_CFF1365D.pnach +++ b/patches/SLES-52402_CFF1365D.pnach @@ -2,7 +2,7 @@ gametitle=Perfect Ace 2 - The Championships (E)(SLES-52402) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52403_FFA5A5B7.pnach b/patches/SLES-52403_FFA5A5B7.pnach index c3eae104..fb822250 100644 --- a/patches/SLES-52403_FFA5A5B7.pnach +++ b/patches/SLES-52403_FFA5A5B7.pnach @@ -2,7 +2,7 @@ gametitle=Formula Challenge (E)(SLES-52403) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52439_FB680748.pnach b/patches/SLES-52439_FB680748.pnach index 341c2500..a1c982e0 100644 --- a/patches/SLES-52439_FB680748.pnach +++ b/patches/SLES-52439_FB680748.pnach @@ -1,9 +1,9 @@ -gametitle=The Suffering PAL (SLES_524.39) +gametitle=The Suffering PAL (SLES_524.39) FB680748 [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,001E766C,word,E7B40010 //14E00004 patch=1,EE,001E7670,word,8E020338 //E7B40010 patch=1,EE,001E7674,word,AE020330 //8E020338 @@ -85,18 +85,19 @@ patch=1,EE,001E779C,word,00000000 //46000847 //Font fix patch=1,EE,001f9cd0,word,3c013f40 //3c013f80 -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,001F92C0,extended,28420002 patch=1,EE,001F92E0,extended,28420002 patch=1,EE,E0020000,extended,00476E44 patch=1,EE,001F92C0,extended,28420001 patch=1,EE,001F92E0,extended,28420001 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps +description=SDTV 480p mode at start. patch=1,EE,00418544,word,24110000 -patch=1,EE,00418548,word,24120052 +patch=1,EE,00418548,word,24120050 patch=1,EE,00418554,word,24130001 \ No newline at end of file diff --git a/patches/SLES-52446_E8F2F813.pnach b/patches/SLES-52446_E8F2F813.pnach index 39b31a89..ef353f8c 100644 --- a/patches/SLES-52446_E8F2F813.pnach +++ b/patches/SLES-52446_E8F2F813.pnach @@ -2,7 +2,7 @@ gametitle=Mashed - Drive to Survive (E)(SLES-52446) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52449_55AB1F9F.pnach b/patches/SLES-52449_55AB1F9F.pnach index 9a418d69..1a8a4fc8 100644 --- a/patches/SLES-52449_55AB1F9F.pnach +++ b/patches/SLES-52449_55AB1F9F.pnach @@ -2,7 +2,7 @@ gametitle=Kidz Sports Basketball (E)(SLES-52449) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52450_2CC13DED.pnach b/patches/SLES-52450_2CC13DED.pnach index 054178db..9894c351 100644 --- a/patches/SLES-52450_2CC13DED.pnach +++ b/patches/SLES-52450_2CC13DED.pnach @@ -2,5 +2,5 @@ gametitle=Serious Sam - Next Encounter (PAL-M) SLES-52450 2CC13DED [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,001273A8,word,00000000 //1040FFF9 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,001273A0,word,24420000 //24420001 \ No newline at end of file diff --git a/patches/SLES-52451_9A206BA3.pnach b/patches/SLES-52451_9A206BA3.pnach index 0001db3c..90370b36 100644 --- a/patches/SLES-52451_9A206BA3.pnach +++ b/patches/SLES-52451_9A206BA3.pnach @@ -2,7 +2,7 @@ gametitle=Conan - The Dark Axe (E)(SLES-52451) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -30,8 +30,8 @@ author=Gabominated description=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. patch=1,EE,20107FDC,extended,2C630001 //2C630002 fps 1 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=Gabominated -description=Unlocked at 60fps + progresive scan. Might need enable EE Overclock to be stable. -patch=1,EE,20107FDC,extended,2C630001 //2C630002 fps 1 -patch=1,EE,201011E4,extended,24060050 //24060003 progressive scan mode \ No newline at end of file +description=SDTV 480p mode at start. Might need enable EE Overclock to be stable. +patch=1,EE,201011E4,extended,24060050 //24060003 progressive scan mode diff --git a/patches/SLES-52458_FB258E4C.pnach b/patches/SLES-52458_FB258E4C.pnach index 6b3be6a1..9b92bab1 100644 --- a/patches/SLES-52458_FB258E4C.pnach +++ b/patches/SLES-52458_FB258E4C.pnach @@ -2,7 +2,7 @@ gametitle=Disgaea - Hour of Darkness (PAL-E) (SLES-52458) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by nemesis2000 +author=nemesis2000 // Ported to PAL, added 16:10 support (ElHecht) // 16:9 diff --git a/patches/SLES-52459_F2CC17D2.pnach b/patches/SLES-52459_F2CC17D2.pnach index 51750b99..749bb2f5 100644 --- a/patches/SLES-52459_F2CC17D2.pnach +++ b/patches/SLES-52459_F2CC17D2.pnach @@ -1,8 +1,8 @@ -gametitle=Autobahn Raser - Das Spiel zum Film (G)(SLES-52459) +gametitle=Autobahn Raser - Das Spiel zum Film PAL-G SLES-52459 F2CC17D2 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -15,4 +15,7 @@ patch=1,EE,001480ec,word,4481f000 patch=1,EE,001480f0,word,461e6302 patch=1,EE,001480f4,word,08045a25 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00136E80,word,24020000 //24020001 \ No newline at end of file diff --git a/patches/SLES-52467_BDE7D749.pnach b/patches/SLES-52467_BDE7D749.pnach index 70aae648..1e0a41a1 100644 --- a/patches/SLES-52467_BDE7D749.pnach +++ b/patches/SLES-52467_BDE7D749.pnach @@ -2,7 +2,7 @@ gametitle=Dot Hack Part 2 - Mutation (PAL-M5) (SLES-52467) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0010a64c,word,3c023f40 // 3c023f80 hor fov 1 diff --git a/patches/SLES-52468_145DCFF7.pnach b/patches/SLES-52468_145DCFF7.pnach index 41417328..5ac0048b 100644 --- a/patches/SLES-52468_145DCFF7.pnach +++ b/patches/SLES-52468_145DCFF7.pnach @@ -2,7 +2,7 @@ gametitle=Dot Hack Part 4 - Quarantine (PAL-M5) (SLES-52468) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (2nd Elf Hack) +author=ElHecht (2nd Elf Hack) patch=1,EE,0010a4cc,word,3c023f40 // 3c023f80 hor fov 1 patch=1,EE,001db3ec,word,3c023f40 // 3c023f80 hor fov 2 diff --git a/patches/SLES-52468_49C7774C.pnach b/patches/SLES-52468_49C7774C.pnach index e7bfa4d7..24456144 100644 --- a/patches/SLES-52468_49C7774C.pnach +++ b/patches/SLES-52468_49C7774C.pnach @@ -2,7 +2,7 @@ gametitle=Dot Hack Part 4 - Quarantine (PAL-M5) (SLES-52468) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0010a4cc,word,3c023f40 // 3c023f80 hor fov 1 diff --git a/patches/SLES-52469_49C7704B.pnach b/patches/SLES-52469_49C7704B.pnach index 73d54755..10a96dc8 100644 --- a/patches/SLES-52469_49C7704B.pnach +++ b/patches/SLES-52469_49C7704B.pnach @@ -2,7 +2,7 @@ gametitle=Dot Hack Part 3 - Outbreak (PAL-M5) (SLES-52469) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0010a68c,word,3c023f40 // 3c023f80 hor fov 1 diff --git a/patches/SLES-52478_E2E67E23.pnach b/patches/SLES-52478_E2E67E23.pnach index acd263c2..5016ec5f 100644 --- a/patches/SLES-52478_E2E67E23.pnach +++ b/patches/SLES-52478_E2E67E23.pnach @@ -2,12 +2,13 @@ gametitle=Red Dead Revolver [PAL-M] SLES-52478 E2E67E23 [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,001018AC,word,24030001 //24030002 li v1,0x2 +description=Might need EE Overclock at 130%. +patch=1,EE,001018AC,word,24030001 //24030002 -[Mode 480p] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Force progressive scan when selecting 60hz +description=SDTV 480p mode when selecting 60 Hz patch=1,EE,E004F9FF,extended,007A25EC patch=1,EE,203CBA1C,extended,3C050000 patch=1,EE,203CBA24,extended,3C060050 diff --git a/patches/SLES-52481_39F20A4D.pnach b/patches/SLES-52481_39F20A4D.pnach index eb1add61..29ed5dc2 100644 --- a/patches/SLES-52481_39F20A4D.pnach +++ b/patches/SLES-52481_39F20A4D.pnach @@ -2,7 +2,7 @@ gametitle=Hot Wheels - Stunt Track Challenge (PAL-Unk)(SLES-52481) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52486_3751BD05.pnach b/patches/SLES-52486_3751BD05.pnach index db88be55..d65cdfb8 100644 --- a/patches/SLES-52486_3751BD05.pnach +++ b/patches/SLES-52486_3751BD05.pnach @@ -1,9 +1,9 @@ -gametitle=Astro Boy [PAL] (SLES_524.86) +gametitle=Astro Boy [PAL] (SLES_524.86) 3751BD05 [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Fov patch=1,EE,002CD40C,word,3C013FD5 //3C013FA0 @@ -13,7 +13,7 @@ patch=1,EE,003811F8,word,3C013EC0 //3C013F00 [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0069D990,word,00000001 //00000002 patch=1,EE,0069D998,word,42700000 //41F00000 patch=1,EE,0069D99C,word,3C888889 //3D088889 diff --git a/patches/SLES-52495_CF47B729.pnach b/patches/SLES-52495_CF47B729.pnach index 2cf234f2..7b32dc08 100644 --- a/patches/SLES-52495_CF47B729.pnach +++ b/patches/SLES-52495_CF47B729.pnach @@ -2,7 +2,7 @@ gametitle=Bujingai: Swordmaster [PAL-M5] (SLES-52495) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001219B4,word,3C023F40 //3C023F80 hor fov diff --git a/patches/SLES-52505_08833E1E.pnach b/patches/SLES-52505_08833E1E.pnach index 6e3a5c6a..fa05c969 100644 --- a/patches/SLES-52505_08833E1E.pnach +++ b/patches/SLES-52505_08833E1E.pnach @@ -2,7 +2,7 @@ gametitle=Spy Fiction (PAL-M5) (SLES-52505) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0013ea88,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-52507_873F8ED6.pnach b/patches/SLES-52507_873F8ED6.pnach index 75a09f1f..d6715350 100644 --- a/patches/SLES-52507_873F8ED6.pnach +++ b/patches/SLES-52507_873F8ED6.pnach @@ -2,7 +2,7 @@ gametitle=Def Jam - Fight for NY (PAL-M2) (SLES-52507) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0021e97c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-52510_EEE2F6A3.pnach b/patches/SLES-52510_EEE2F6A3.pnach index e50038fd..0e83ebcb 100644 --- a/patches/SLES-52510_EEE2F6A3.pnach +++ b/patches/SLES-52510_EEE2F6A3.pnach @@ -2,7 +2,7 @@ gametitle=Neo Contra (PAL-M3) (SLES-52510) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0035a3ec,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-52512_2D24ABAD.pnach b/patches/SLES-52512_2D24ABAD.pnach index ecbc14d5..2d564df3 100644 --- a/patches/SLES-52512_2D24ABAD.pnach +++ b/patches/SLES-52512_2D24ABAD.pnach @@ -1,5 +1,12 @@ gametitle=Headhunter - Redemption (PAL-M) SLES-52512 +[Widescreen 16:9] +gsaspectratio=16:9 +comment=Widescreen Hack +patch=1,EE,00190620,word,3c014310 //3C014334 +patch=1,EE,00190650,word,3c013fe3 //3C013FAA +patch=1,EE,00190654,word,34218e38 //3421AAAB + [50 FPS] author=Gabominated description=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. diff --git a/patches/SLES-52518_2483B314.pnach b/patches/SLES-52518_2483B314.pnach index e6195015..27579cb3 100644 --- a/patches/SLES-52518_2483B314.pnach +++ b/patches/SLES-52518_2483B314.pnach @@ -2,7 +2,7 @@ gametitle=Motorbike King (E)(SLES-52518) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52519_46D15FAC.pnach b/patches/SLES-52519_46D15FAC.pnach index eac7d7e4..913234cb 100644 --- a/patches/SLES-52519_46D15FAC.pnach +++ b/patches/SLES-52519_46D15FAC.pnach @@ -2,7 +2,7 @@ gametitle=Pink Pong [PAL] (SLES_525.19) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0018E834,word,3C013F40 //00000000 (Increases hor. axis) diff --git a/patches/SLES-52521_C6D4771F.pnach b/patches/SLES-52521_C6D4771F.pnach index 4295440c..81285438 100644 --- a/patches/SLES-52521_C6D4771F.pnach +++ b/patches/SLES-52521_C6D4771F.pnach @@ -2,7 +2,7 @@ gametitle=Adiboo and the Energy Thieves (E)(SLES-52521) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-52523_90CF49CA.pnach b/patches/SLES-52523_90CF49CA.pnach index c0c4aa5a..ca96b5eb 100644 --- a/patches/SLES-52523_90CF49CA.pnach +++ b/patches/SLES-52523_90CF49CA.pnach @@ -2,7 +2,7 @@ gametitle=Cocoto Platform Jumper (E)(SLES-52523) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52525_933ECA90.pnach b/patches/SLES-52525_933ECA90.pnach index 4ba26baa..5ddf3b3a 100644 --- a/patches/SLES-52525_933ECA90.pnach +++ b/patches/SLES-52525_933ECA90.pnach @@ -2,7 +2,7 @@ gametitle=Mouse Trophy (E)(SLES-52525) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52534_AA5725B5.pnach b/patches/SLES-52534_AA5725B5.pnach index b6cab2d1..f02c35ec 100644 --- a/patches/SLES-52534_AA5725B5.pnach +++ b/patches/SLES-52534_AA5725B5.pnach @@ -2,7 +2,7 @@ gametitle=Crimson Tears (PAL-M3) (SLES-52534) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001bcb78,word,3c02bfe3 // 3c02bfaa hor fov diff --git a/patches/SLES-52536_C240AA62.pnach b/patches/SLES-52536_C240AA62.pnach new file mode 100644 index 00000000..5d7ef42d --- /dev/null +++ b/patches/SLES-52536_C240AA62.pnach @@ -0,0 +1,25 @@ +gametitle=DreamWorks Shark Tale (PAL-E) SLES-52536 C240AA62 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=Arapapa & PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00135CA0,word,0806C8E0 +patch=1,EE,001B2380,word,46000346 +patch=1,EE,001B2384,word,3C013F40 +patch=1,EE,001B2388,word,4481F000 +patch=1,EE,001B238C,word,461E6B43 +patch=1,EE,001B2390,word,0804D729 +patch=1,EE,0029E3D4,word,3C013F80 +patch=1,EE,0027A6D0,word,3C013F80 +patch=1,EE,001D3060,word,3C013F40 //render +patch=1,EE,E0020001,extended,004840C8 +patch=1,EE,0029E3D4,extended,3C013FAB +patch=1,EE,0027A6D0,extended,3C013F84 + +[50 FPS] +author=PeterDelta +description=Might need EE Overclock +patch=1,EE,0034AAE4,extended,00000001 +patch=1,EE,E0010001,extended,00333E10 +patch=1,EE,0034AAE4,extended,00000002 \ No newline at end of file diff --git a/patches/SLES-52537_C649A46C.pnach b/patches/SLES-52537_C649A46C.pnach new file mode 100644 index 00000000..04ce0794 --- /dev/null +++ b/patches/SLES-52537_C649A46C.pnach @@ -0,0 +1,25 @@ +gametitle=DreamWorks Shark Tale (PAL-M) SLES-52537 C649A46C + +[Widescreen 16:9] +gsaspectratio=16:9 +author=Arapapa & PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00135CA0,word,0806C8E0 +patch=1,EE,001B2380,word,46000346 +patch=1,EE,001B2384,word,3C013F40 +patch=1,EE,001B2388,word,4481F000 +patch=1,EE,001B238C,word,461E6B43 +patch=1,EE,001B2390,word,0804D729 +patch=1,EE,0029E3D4,word,3C013F80 +patch=1,EE,0027A6D0,word,3C013F80 +patch=1,EE,001D3060,word,3C013F40 //render +patch=1,EE,E0020001,extended,00487EF8 +patch=1,EE,0029E3D4,extended,3C013FAB +patch=1,EE,0027A6D0,extended,3C013F84 + +[50 FPS] +author=PeterDelta +description=Might need EE Overclock +patch=1,EE,0034AAE4,extended,00000001 +patch=1,EE,E0010001,extended,00333E10 +patch=1,EE,0034AAE4,extended,00000002 \ No newline at end of file diff --git a/patches/SLES-52545_503BF9E1.pnach b/patches/SLES-52545_503BF9E1.pnach index 65a1b867..7d12acc0 100644 --- a/patches/SLES-52545_503BF9E1.pnach +++ b/patches/SLES-52545_503BF9E1.pnach @@ -2,7 +2,7 @@ gametitle=Star Wars - Battlefront (PAL-M) SLES-52545 503BF9E1 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00518D40,extended,00000001 patch=1,EE,E0010000,extended,005171EC -patch=1,EE,00518D40,extended,00000002 +patch=1,EE,00518D40,extended,00000002 \ No newline at end of file diff --git a/patches/SLES-52553_73C051CE.pnach b/patches/SLES-52553_73C051CE.pnach index 5cdd6b78..312f230c 100644 --- a/patches/SLES-52553_73C051CE.pnach +++ b/patches/SLES-52553_73C051CE.pnach @@ -2,7 +2,7 @@ gametitle=Samurai Warriors (PAL-G) (SLES-52553) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,0013eae8,word,3c024328 // 3c024360 zoom diff --git a/patches/SLES-52556_06B5AAF8.pnach b/patches/SLES-52556_06B5AAF8.pnach index d283c4c5..313fe70e 100644 --- a/patches/SLES-52556_06B5AAF8.pnach +++ b/patches/SLES-52556_06B5AAF8.pnach @@ -4,7 +4,7 @@ gametitle=Crimson Sea 2 (PAL-E) (SLES-52556) gsaspectratio=16:9 comment=Widescreen Hack (16:9) -// orginal NTSC-patch by sergx12 +// original NTSC-patch by sergx12 // ported to PAL, added widescreen support for 2player mode by elhecht // gameplay diff --git a/patches/SLES-52567_B90470B8.pnach b/patches/SLES-52567_B90470B8.pnach index e543f3d4..3d657168 100644 --- a/patches/SLES-52567_B90470B8.pnach +++ b/patches/SLES-52567_B90470B8.pnach @@ -2,7 +2,7 @@ gametitle=Catwoman (E)(SLES-52567) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52568_1510E1D1.pnach b/patches/SLES-52568_1510E1D1.pnach index ee42188b..51e27634 100644 --- a/patches/SLES-52568_1510E1D1.pnach +++ b/patches/SLES-52568_1510E1D1.pnach @@ -1,4 +1,4 @@ -gametitle=Crash Twinsanity (SLES-52568) +gametitle=Crash Twinsanity (PAL-M) (SLES-52568) 1510E1D1 [Widescreen 16:9] gsaspectratio=16:9 diff --git a/patches/SLES-52569_6E51213C.pnach b/patches/SLES-52569_6E51213C.pnach index 0ecb9520..4547bc51 100644 --- a/patches/SLES-52569_6E51213C.pnach +++ b/patches/SLES-52569_6E51213C.pnach @@ -2,8 +2,8 @@ gametitle=Spyro: A Hero's Tail (SLES-52569) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen - -//Widescreen + Extra Perspective -patch=1,EE,003B28C8,extended,3C013F10 -patch=2,EE,003B28DC,extended,3C013F10 +author=CRASHARKI +description=Patches the game to run at 16:9 Widescreen Aspect Ratio. +patch=1,EE,003B2878,extended,3C013F40 //3C013F80 // Fix some 3D HUD elements +patch=1,EE,003B28C8,extended,3C013F10 //3C013F40 +patch=2,EE,003B28DC,extended,3C013F10 //3C013F40 \ No newline at end of file diff --git a/patches/SLES-52570_180F5C36.pnach b/patches/SLES-52570_180F5C36.pnach index 658e1db8..ace9535a 100644 --- a/patches/SLES-52570_180F5C36.pnach +++ b/patches/SLES-52570_180F5C36.pnach @@ -1,18 +1,19 @@ -gametitle=Area 51 [PAL-M] SLES-52570 180F5C36 +gametitle=Area 51 (PAL-M) SLES-52570 180F5C36 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Ported from the other version PAL by ElHecht -patch=1,EE,00392730,word,3c193f40 // 00000000 hor fov ok -patch=1,EE,00392748,word,4499f000 // 00000000 -patch=1,EE,0039274C,word,461ea502 // 00000000 -patch=1,EE,00392E18,word,461ebb03 // 00000000 renderfix calculation -patch=1,EE,00392E04,word,461eab83 // 00000000 renderfix calculation +description=Renders the game in 16:9 aspect ratio +//Ported from SLES-53075 by ElHecht +patch=1,EE,00392730,word,3c193f40 //00000000 hor fov ok +patch=1,EE,00392748,word,4499f000 //00000000 +patch=1,EE,0039274C,word,461ea502 //00000000 +patch=1,EE,00392E18,word,461ebb03 //00000000 renderfix calculation +patch=1,EE,00392E04,word,461eab83 //00000000 renderfix calculation [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,00382AD8,word,28620001 //28620002 slti v0,v1,0x0002 +description=Might need EE Overclock at 180%. +patch=1,EE,00382AD8,word,28620001 //28620002 patch=1,EE,E0010001,extended,005BE984 -patch=1,EE,20382AD8,extended,28620002 +patch=1,EE,20382AD8,extended,28620002 \ No newline at end of file diff --git a/patches/SLES-52571_8B61D18D.pnach b/patches/SLES-52571_8B61D18D.pnach index 73d5e40f..bd8eae27 100644 --- a/patches/SLES-52571_8B61D18D.pnach +++ b/patches/SLES-52571_8B61D18D.pnach @@ -2,7 +2,7 @@ gametitle=Pacific Warriors II - Dogfight! (E)(SLES-52571) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52572_5E2DA75C.pnach b/patches/SLES-52572_5E2DA75C.pnach index 9fc13bf0..0bb89876 100644 --- a/patches/SLES-52572_5E2DA75C.pnach +++ b/patches/SLES-52572_5E2DA75C.pnach @@ -2,7 +2,7 @@ gametitle=Offroad Extreme! (E)(SLES-52751) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52572_6A58CA53.pnach b/patches/SLES-52572_6A58CA53.pnach index 0a572da0..c167cc32 100644 --- a/patches/SLES-52572_6A58CA53.pnach +++ b/patches/SLES-52572_6A58CA53.pnach @@ -2,7 +2,7 @@ gametitle=Operation Air Assault (E)(SLES-52572) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52573_73973370.pnach b/patches/SLES-52573_73973370.pnach index 74036b13..f4f485ec 100644 --- a/patches/SLES-52573_73973370.pnach +++ b/patches/SLES-52573_73973370.pnach @@ -1,12 +1,9 @@ -gametitle=Conflict - Global Storm (E)(SLES-52573) +gametitle=Conflict - Global Storm (PAL-M) (SLES-52573) 73973370 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen Hack - -//Widescreen hack 16:9 - +description=Renders the game in 16:9 aspect ratio //X-Fov 4:3 Screen //aa3f013c 93a92134 00888144 patch=1,EE,003f028c,word,3c013fe3 //3c013faa @@ -25,8 +22,7 @@ patch=1,EE,003f02c4,word,00000000 //34215ffa //83a50046 003f013c 00608144 patch=1,EE,00407fdc,word,3c013f2b //3c013f00 - [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,003E76E8,word,2C420001 //2C420002 sltiu v0,0x0002 +description=Might need EE Overclock at 180%. +patch=1,EE,003E76E8,word,2C420001 //2C420002 \ No newline at end of file diff --git a/patches/SLES-52576_ECE1FA11.pnach b/patches/SLES-52576_ECE1FA11.pnach index a6e10261..93dbe7d0 100644 --- a/patches/SLES-52576_ECE1FA11.pnach +++ b/patches/SLES-52576_ECE1FA11.pnach @@ -2,7 +2,7 @@ gametitle=Yu-Gi-Oh! Capsule Monster Coliseum (E)(SLES-52576) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52584_75BECC18.pnach b/patches/SLES-52584_75BECC18.pnach index 1bd70620..2b554acc 100644 --- a/patches/SLES-52584_75BECC18.pnach +++ b/patches/SLES-52584_75BECC18.pnach @@ -2,25 +2,31 @@ gametitle=Burnout 3 - Takedown (Europe, Australia) (En,Es,Nl,Sv) SLES-52584 crc [Widescreen 16:9] gsaspectratio=16:9 -author=XxDEATHB3TCHxX -comment=Widescreen hack 16:9 -// For Burnout 3: Takedown, Changes Button prompts sizes, text, UI & in-game aspect ratio. -patch=1,EE,20666544,extended,3FE34000 // 3FAAAAAB // -patch=1,EE,20666540,extended,3FAAAAAB // 3F800000 // Camera zoom +author=PeterDelta +description=Widescreen fix +patch=1,EE,0066644D,extended,01 +patch=1,EE,204E0FB8,extended,3FAAAAAB +patch=1,EE,204E11FC,extended,3FE38E39 -//=========Notes:=======// -//204C9984 - Controls up arrow height button prompt (Value 1.15) -//204C999C - Controls bottom arrow height button prompt (Value 1.15) -//20666540 - Controls FOV/zoom of the camera (Value 1.10) -//21E909A0 - Controls below menu panel -//204E0C28 - Controls how italics the text is -//205175D4 - Controls the width but moves camera -//21E92DF8 - Controls width of Resume text +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock +patch=1,EE,E0051885,extended,0049B384 //50hz +patch=1,EE,004E1D5C,extended,00000001 +patch=1,EE,2051C024,extended,00000001 +patch=1,EE,204E2CC0,extended,3CA3D70A +patch=1,EE,204F561C,extended,3CA3D70A +patch=1,EE,2051AE34,extended,3CA3D70A +patch=1,EE,E005177A,extended,0049B384 //60hz +patch=1,EE,004E1D5C,extended,00000001 +patch=1,EE,2051C024,extended,00000001 +patch=1,EE,204E2CC0,extended,3C888889 +patch=1,EE,204F561C,extended,3C888889 +patch=1,EE,2051AE34,extended,3C88AB85 - -[Mode 480p] +[480p Mode] author=felixthecat1970 -comment=Forces progressive scan at startup +description=SDTV 480p mode at start patch=0,EE,2021B764,extended,0000182D patch=0,EE,20437118,extended,241B0003 patch=0,EE,20437120,extended,A07B09A4 diff --git a/patches/SLES-52587_95CFD603.pnach b/patches/SLES-52587_95CFD603.pnach index b38be774..5c365836 100644 --- a/patches/SLES-52587_95CFD603.pnach +++ b/patches/SLES-52587_95CFD603.pnach @@ -2,6 +2,6 @@ gametitle=Army Men - Sarge's War (PAL-M) SLES-52587 95CFD603 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,003FC680,word,04000001 //04000000 patch=1,EE,001A5C48,word,3C013F00 //3C013F80 camera \ No newline at end of file diff --git a/patches/SLES-52588_85931FDF.pnach b/patches/SLES-52588_85931FDF.pnach index 1a0df57b..6e989c6e 100644 --- a/patches/SLES-52588_85931FDF.pnach +++ b/patches/SLES-52588_85931FDF.pnach @@ -2,7 +2,7 @@ gametitle=Mercenaries - Playground of Destruction (PAL-E) (SLES-52588) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0033b038,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-52590_84930ED2.pnach b/patches/SLES-52590_84930ED2.pnach index e28c62ed..c62785bb 100644 --- a/patches/SLES-52590_84930ED2.pnach +++ b/patches/SLES-52590_84930ED2.pnach @@ -2,7 +2,7 @@ gametitle=Mercenaries - Playground of Destruction (PAL-G) (SLES-52590) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0033b038,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-52592_B7911069.pnach b/patches/SLES-52592_B7911069.pnach index 81925c8d..bc995c41 100644 --- a/patches/SLES-52592_B7911069.pnach +++ b/patches/SLES-52592_B7911069.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 4 - Empires (PAL-G) (SLES-52592) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,00139db8,word,3c0243b4 // 3c0243a0 hor fov value1 diff --git a/patches/SLES-52620_6149414E.pnach b/patches/SLES-52620_6149414E.pnach index 557e70d4..4d32fc80 100644 --- a/patches/SLES-52620_6149414E.pnach +++ b/patches/SLES-52620_6149414E.pnach @@ -2,7 +2,7 @@ gametitle=Guncom 2 (E)(SLES-52620) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,00299ac0,word,3f400000 //3f800000 diff --git a/patches/SLES-52625_6900A74B.pnach b/patches/SLES-52625_6900A74B.pnach index 5296808e..836de2df 100644 --- a/patches/SLES-52625_6900A74B.pnach +++ b/patches/SLES-52625_6900A74B.pnach @@ -2,7 +2,7 @@ gametitle=X-Men Legends (PAL-G) (SLES-52625) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00298cd4,word,3c033f40 // 3c033f80 hor fov diff --git a/patches/SLES-52630_F0206B09.pnach b/patches/SLES-52630_F0206B09.pnach index 6242e3d6..8eef9f78 100644 --- a/patches/SLES-52630_F0206B09.pnach +++ b/patches/SLES-52630_F0206B09.pnach @@ -2,7 +2,7 @@ gametitle=Conflict - Vietnam (E)(SLES-52630) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52641_A1FD63D6.pnach b/patches/SLES-52641_A1FD63D6.pnach index 4b3d2909..39fbe2a3 100644 --- a/patches/SLES-52641_A1FD63D6.pnach +++ b/patches/SLES-52641_A1FD63D6.pnach @@ -2,7 +2,7 @@ gametitle=Leisure Suit Larry - Magna Cum Laude - Uncut (PAL-E) (SLES-52641) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,002e5fd0,word,080fb7cc // 46020082 jump to code-inject 003edf30 diff --git a/patches/SLES-52646_CE64E328.pnach b/patches/SLES-52646_CE64E328.pnach index 9a80a21d..0f1ad4da 100644 --- a/patches/SLES-52646_CE64E328.pnach +++ b/patches/SLES-52646_CE64E328.pnach @@ -3,13 +3,13 @@ gametitle=Tom Clancy's Ghost Recon 2 (PAL-M) SLES-52646 CE64E328 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,E0010000,extended,00E966F8 patch=1,EE,20E966F8,extended,3F400000 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,205D8B50,extended,00000000 +description=Might need EE Overclock at 180%. +patch=1,EE,005D8B70,extended,00000000 patch=1,EE,E0010001,extended,00722870 -patch=1,EE,205D8B50,extended,1440FFF9 \ No newline at end of file +patch=1,EE,005D8B70,extended,24420002 \ No newline at end of file diff --git a/patches/SLES-52656_2F01CB32.pnach b/patches/SLES-52656_2F01CB32.pnach index eacbc74f..934384b5 100644 --- a/patches/SLES-52656_2F01CB32.pnach +++ b/patches/SLES-52656_2F01CB32.pnach @@ -2,7 +2,7 @@ gametitle=Club Football 2005 - AC Milan and Others (PAL)(SLES-52656) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Menu 3D Fov and ETC patch=1,EE,001b85a4,word,3c013fe3 //3c013faa diff --git a/patches/SLES-52669_7C7578F3.pnach b/patches/SLES-52669_7C7578F3.pnach index c17a21ff..7e4bd8e9 100644 --- a/patches/SLES-52669_7C7578F3.pnach +++ b/patches/SLES-52669_7C7578F3.pnach @@ -1,20 +1,21 @@ -gametitle=Demon Stone (SLES-52669) +gametitle=Forgotten Realms - Demon Stone (PAL-M) SLES-52669 7C7578F3 [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,001a50d0,word,3c013f40 patch=1,EE,001a50d4,word,44810000 patch=1,EE,001a50dc,word,46006b43 - patch=1,EE,0015632c,word,3c023fe3 patch=1,EE,00156330,word,34438e38 -//black border fix +[Remove Blackbars] +author=nemesis2000 +description=Removes black bars in cutscenes patch=1,EE,001d8460,word,24040001 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00322940,word,00000000 //00000001 \ No newline at end of file diff --git a/patches/SLES-52670_65087F31.pnach b/patches/SLES-52670_65087F31.pnach index 96b6537d..feffe45a 100644 --- a/patches/SLES-52670_65087F31.pnach +++ b/patches/SLES-52670_65087F31.pnach @@ -2,7 +2,7 @@ gametitle=Second Sight (PAL-M5) (SLES-52670) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,001a8da8,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-52671_17F324F4.pnach b/patches/SLES-52671_17F324F4.pnach index 557ce0be..19594df9 100644 --- a/patches/SLES-52671_17F324F4.pnach +++ b/patches/SLES-52671_17F324F4.pnach @@ -2,7 +2,7 @@ gametitle=Ghost Master - The Gravenville Chronicles (PAL-M5) (SLES-52671) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00105438,word,3c013f40 // 3c013f80 hor fov diff --git a/patches/SLES-52678_2429905B.pnach b/patches/SLES-52678_2429905B.pnach index d8c5ccfa..daa834c7 100644 --- a/patches/SLES-52678_2429905B.pnach +++ b/patches/SLES-52678_2429905B.pnach @@ -2,7 +2,7 @@ gametitle=Viewtiful Joe [PAL-M5] (SLES_526.78) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,002B8304,word,3C01BF27 //3C01BF00 Y-FOV diff --git a/patches/SLES-52684_D6AAB8A1.pnach b/patches/SLES-52684_D6AAB8A1.pnach index 1ebdaea2..032bc4b5 100644 --- a/patches/SLES-52684_D6AAB8A1.pnach +++ b/patches/SLES-52684_D6AAB8A1.pnach @@ -2,7 +2,7 @@ gametitle=Cyclone Circus (E)(SLES-52684) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52685_C72FEF17.pnach b/patches/SLES-52685_C72FEF17.pnach index 28845c59..6a12748d 100644 --- a/patches/SLES-52685_C72FEF17.pnach +++ b/patches/SLES-52685_C72FEF17.pnach @@ -1,8 +1,8 @@ -gametitle=The Polar Express (E)(SLES-52685) +gametitle=The Polar Express PAL-M SLES-52685 C72FEF17 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -17,4 +17,7 @@ patch=1,EE,002f15a0,word,461e0843 // 00000000 patch=1,EE,002f15a4,word,e6010068 // 00000000 patch=1,EE,002f15a8,word,080d1daa // 00000000 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,003528F8,word,24020002 //24020001 \ No newline at end of file diff --git a/patches/SLES-52686_E1D7F6E5.pnach b/patches/SLES-52686_E1D7F6E5.pnach index 804fe617..61a59dde 100644 --- a/patches/SLES-52686_E1D7F6E5.pnach +++ b/patches/SLES-52686_E1D7F6E5.pnach @@ -2,7 +2,7 @@ gametitle=Backyard Wrestling 2 - There Goes the Neighborhood (E)(SLES-52686) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52693_C5EBD545.pnach b/patches/SLES-52693_C5EBD545.pnach index 7143e86b..71247f96 100644 --- a/patches/SLES-52693_C5EBD545.pnach +++ b/patches/SLES-52693_C5EBD545.pnach @@ -2,7 +2,7 @@ gametitle=LMA Manager 2005 (E)(SLES-52693) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52694_619CD6C5.pnach b/patches/SLES-52694_619CD6C5.pnach index 5f7242b0..a7b5ec6b 100644 --- a/patches/SLES-52694_619CD6C5.pnach +++ b/patches/SLES-52694_619CD6C5.pnach @@ -2,7 +2,7 @@ gametitle=BDFL Manager 2005 (G)(SLES-52694) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52700_EA50B9F5.pnach b/patches/SLES-52700_EA50B9F5.pnach index 7e5f7492..88070b53 100644 --- a/patches/SLES-52700_EA50B9F5.pnach +++ b/patches/SLES-52700_EA50B9F5.pnach @@ -2,7 +2,7 @@ gametitle=The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies (E) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52701_5E4C44CF.pnach b/patches/SLES-52701_5E4C44CF.pnach index 434135b0..33a973c6 100644 --- a/patches/SLES-52701_5E4C44CF.pnach +++ b/patches/SLES-52701_5E4C44CF.pnach @@ -2,7 +2,7 @@ gametitle=Future Tactics: The Uprising [PAL] (SLES_527.01) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0013C2DC,word,3C013FE3 //3C013FAA (Increases hor. axis) diff --git a/patches/SLES-52702_5E7EB5E2.pnach b/patches/SLES-52702_5E7EB5E2.pnach index 7909c061..fdab7a6d 100644 --- a/patches/SLES-52702_5E7EB5E2.pnach +++ b/patches/SLES-52702_5E7EB5E2.pnach @@ -1,13 +1,19 @@ -gametitle=Psi-Ops: The Mindgate Conspiracy [PAL-M5] (SLES_527.02) +gametitle=Psi-Ops: The Mindgate Conspiracy [PAL-M5] (SLES_527.02) 5E7EB5E2 [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Gameplay 16:9 patch=1,EE,0047015C,word,241102AA //00000000 (Increases hor. axis) +[No-Interlacing] +gsinterlacemode=1 +author=PeterDelta +description=Enable progressive interlacing. +patch=1,EE,00568624,word,3C051000 + [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,0017ACD8,word,00000000 //1640FFE5 \ No newline at end of file +description=Might need EE Overclock at 180%. +patch=1,EE,0017AC9C,word,3C043F20 //3C043FA0 \ No newline at end of file diff --git a/patches/SLES-52707_6E8BAF03.pnach b/patches/SLES-52707_6E8BAF03.pnach index cfffefbf..9abab4e9 100644 --- a/patches/SLES-52707_6E8BAF03.pnach +++ b/patches/SLES-52707_6E8BAF03.pnach @@ -2,7 +2,7 @@ gametitle=Monster Hunter (PAL-M5) (SLES-52707) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0014076c,word,0c0501f1 // 0c0501f4 diff --git a/patches/SLES-52709_B9FDB9EE.pnach b/patches/SLES-52709_B9FDB9EE.pnach index 2d4380c0..66d8c887 100644 --- a/patches/SLES-52709_B9FDB9EE.pnach +++ b/patches/SLES-52709_B9FDB9EE.pnach @@ -1,8 +1,8 @@ gametitle=TY the Tasmanian Tiger 2 - Bush Rescue (PAL-M) SLES-52709 B9FDB9EE [50 FPS] -author=asasega and PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,2012AA1C,extended,28420002 +author=asasega & PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,0012AA1C,extended,28420002 patch=1,EE,E0010019,extended,0049A4D0 patch=1,EE,2012AA1C,extended,28420001 \ No newline at end of file diff --git a/patches/SLES-52713_39F26623.pnach b/patches/SLES-52713_39F26623.pnach index f77e70b5..249895af 100644 --- a/patches/SLES-52713_39F26623.pnach +++ b/patches/SLES-52713_39F26623.pnach @@ -2,7 +2,7 @@ gametitle=NBA Live 2005 (PAL)(SLES-52713) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52718_D974B1C5.pnach b/patches/SLES-52718_D974B1C5.pnach index 3092457a..b8b0870c 100644 --- a/patches/SLES-52718_D974B1C5.pnach +++ b/patches/SLES-52718_D974B1C5.pnach @@ -2,7 +2,7 @@ gametitle=Fight Club (E)(SLES-52718) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52722_88C51F7A.pnach b/patches/SLES-52722_88C51F7A.pnach index 6cfb937e..453237ad 100644 --- a/patches/SLES-52722_88C51F7A.pnach +++ b/patches/SLES-52722_88C51F7A.pnach @@ -2,7 +2,7 @@ gametitle=Kidz Sports Ice Hockey (E)(SLES-52722) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52725_CFB873AD.pnach b/patches/SLES-52725_CFB873AD.pnach index 39d28dcc..904aa284 100644 --- a/patches/SLES-52725_CFB873AD.pnach +++ b/patches/SLES-52725_CFB873AD.pnach @@ -1,15 +1,21 @@ gametitle=Need for Speed - Underground 2 (PAL-M) SLES-52725 CFB873AD -[50 FPS] +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Enable native widescreen +patch=1,EE,004F12DC,byte,01 + +[50/60 FPS] author=asasega -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,201D7FBC,extended,2C420001 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps +description=SDTV 480p mode at start. patch=1,EE,00421E54,word,24110000 -patch=1,EE,00421E58,word,24120052 +patch=1,EE,00421E58,word,24120050 patch=1,EE,00421E64,word,24130001 -patch=1,EE,00563214,word,3C888889 -patch=1,EE,004BBE14,word,0000001E \ No newline at end of file +patch=1,EE,00563214,word,3C888889 \ No newline at end of file diff --git a/patches/SLES-52727_3DF16621.pnach b/patches/SLES-52727_3DF16621.pnach new file mode 100644 index 00000000..9ee83063 --- /dev/null +++ b/patches/SLES-52727_3DF16621.pnach @@ -0,0 +1,16 @@ +gametitle=NBA Live 2005 (PAL-S) SLES-52727 3DF16621 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,20811428,extended,3FD55555 +patch=1,EE,0081505C,extended,00000000 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,005D12E4,word,24110000 +patch=1,EE,005D12E8,word,24120050 +patch=1,EE,005D12F4,word,24130001 \ No newline at end of file diff --git a/patches/SLES-52729_59A5C81C.pnach b/patches/SLES-52729_59A5C81C.pnach index e9afe1cc..f76837a2 100644 --- a/patches/SLES-52729_59A5C81C.pnach +++ b/patches/SLES-52729_59A5C81C.pnach @@ -1,15 +1,15 @@ -gametitle=Animaniacs - The Great Edgar Hunt (E)(SLES-52729) +gametitle=Animaniacs - The Great Edgar Hunt (PAL-M) (SLES-52729) 59A5C81C [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen hack +description=Widescreen hack //X-Fov patch=1,EE,203018E0,extended,3F891A2A //3fb6cb8f [50 FPS] -author=asasega and PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +author=asasega & PeterDelta +description=Might need EE Overclock (130%). patch=1,EE,00343668,extended,00000001 patch=1,EE,E0010000,extended,002DCE80 patch=1,EE,00343668,extended,00000002 \ No newline at end of file diff --git a/patches/SLES-52730_CD787D68.pnach b/patches/SLES-52730_CD787D68.pnach index 2f89cb5d..9a19c953 100644 --- a/patches/SLES-52730_CD787D68.pnach +++ b/patches/SLES-52730_CD787D68.pnach @@ -2,7 +2,7 @@ gametitle=DragonBall Z - Budokai 3 (PAL-M5) (SLES-52730) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 gui and gameplay patch=1,EE,001310c8,word,080c5137 // 46000803 jump to code-inject 003144dc @@ -15,4 +15,14 @@ patch=1,EE,003144e8,word,461e0002 // 00000000 patch=1,EE,003144ec,word,e7808744 // 00000000 patch=1,EE,003144f0,word,0804c433 // 00000000 jump back to function 001310cc - +[480p Mode] +author=felixthecat1970 +description=Forces progressive scan mode 480p at startup. +patch=0,EE,10404300,extended,00000150 +patch=0,EE,20404320,extended,01000001 +patch=0,EE,20148BA0,extended,00000000 +patch=0,EE,20404324,extended,02800000 +patch=0,EE,20404304,extended,02800101 +patch=0,EE,201481A8,extended,241B008C +patch=0,EE,20148228,extended,A2000038 +patch=0,EE,20148238,extended,A21B0010 diff --git a/patches/SLES-52731_3173E02A.pnach b/patches/SLES-52731_3173E02A.pnach index f48668bb..b0896efe 100644 --- a/patches/SLES-52731_3173E02A.pnach +++ b/patches/SLES-52731_3173E02A.pnach @@ -2,7 +2,7 @@ gametitle=One Piece - Round the Land! (PAL-M3) (SLES-52731) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0017b260,word,3c013fe3 // 3c013faa hor fov gameplay diff --git a/patches/SLES-52733_3F0D3C94.pnach b/patches/SLES-52733_3F0D3C94.pnach new file mode 100644 index 00000000..12a37ade --- /dev/null +++ b/patches/SLES-52733_3F0D3C94.pnach @@ -0,0 +1,15 @@ +gametitle=Driven to Destruction (PAL-M) SLES-52733 3F0D3C94 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Enable native widescreen +patch=1,EE,003DD54C,word,00000001 //00000000 +patch=1,EE,003DD558,word,3F400000 //3F800000 +patch=1,EE,003DD560,word,00000001 //00000000 +patch=1,EE,004A7F7C,word,00000001 //00000000 +patch=1,EE,004A7F84,word,00000001 //00000000 +patch=1,EE,00524078,word,00000001 //00000000 +patch=1,EE,0052407C,word,00000001 //00000000 +patch=1,EE,00524080,word,3F800000 //00000000 +patch=1,EE,00524084,word,E3E30031 //E3E30030 \ No newline at end of file diff --git a/patches/SLES-52734_38C8967A.pnach b/patches/SLES-52734_38C8967A.pnach index 2cb3c6f8..df10674b 100644 --- a/patches/SLES-52734_38C8967A.pnach +++ b/patches/SLES-52734_38C8967A.pnach @@ -1,8 +1,8 @@ -gametitle=Worms Forts - Under Siege (E)(SLES-52734) +gametitle=Worms Forts - Under Siege PAL-M SLES-52734 38C8967A [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -13,4 +13,7 @@ patch=1,EE,001bba04,word,34214000 //3421fa36 //Y-Fov patch=1,EE,001bba1c,word,3c013f10 //3c013f40 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0057378C,word,00000001 \ No newline at end of file diff --git a/patches/SLES-52738_860CC8F9.pnach b/patches/SLES-52738_860CC8F9.pnach index bb4b2494..1ae8dd24 100644 --- a/patches/SLES-52738_860CC8F9.pnach +++ b/patches/SLES-52738_860CC8F9.pnach @@ -2,7 +2,7 @@ gametitle=ObsCure [PAL-F-I] (SLES-52738) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Bigdemon +author=Bigdemon //Gameplay 16:9 patch=1,EE,00257C54,word,3C023F19 //3C023F00 Zoom diff --git a/patches/SLES-52750_5E837D57.pnach b/patches/SLES-52750_5E837D57.pnach index 1988d2b7..8077d089 100644 --- a/patches/SLES-52750_5E837D57.pnach +++ b/patches/SLES-52750_5E837D57.pnach @@ -2,7 +2,7 @@ gametitle=Monster Trux Extreme - Arena Edition (E)(SLES-52750) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52753_E98B1B2A.pnach b/patches/SLES-52753_E98B1B2A.pnach index c63c2d59..249ec52f 100644 --- a/patches/SLES-52753_E98B1B2A.pnach +++ b/patches/SLES-52753_E98B1B2A.pnach @@ -1,13 +1,19 @@ -gametitle=FlatOut [PAL-M4] (SLES_527.53) +gametitle=FlatOut [PAL-M4] (SLES_527.53) E98B1B2A [Widescreen 16:9] gsaspectratio=16:9 -author=El_Patas -comment=Widescreen Hack - -//Gameplay 16:9 -patch=1,EE,0019E924,word,3C013FAB //3C013F80 Y-FOV -patch=1,EE,00180CC0,word,3C013FAB //3C013F80 -patch=1,EE,002B2F74,word,3EE90000 //3F000000 Zoom - +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00191084,extended,3C013F40 +patch=1,EE,00191F34,extended,3C013F40 +patch=1,EE,001D8E20,extended,3C013F40 +patch=1,EE,00236510,extended,3C013F1C +[50/60 FPS] +author=FlatOut & PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,002D9608,extended,00000001 +patch=1,EE,E0010008,extended,0028C540 +patch=1,EE,002D9608,extended,00000002 +patch=1,EE,E0016310,extended,00315B64 +patch=1,EE,002EB510,extended,00000000 \ No newline at end of file diff --git a/patches/SLES-52755_D78D3D1F.pnach b/patches/SLES-52755_D78D3D1F.pnach index 7b4a8a59..dac2d48f 100644 --- a/patches/SLES-52755_D78D3D1F.pnach +++ b/patches/SLES-52755_D78D3D1F.pnach @@ -1,9 +1,19 @@ -gametitle=Blood Will Tell: Tezuka Osamu's Dororo SLES_527.55 +gametitle=Blood Will Tell - Tezuka Osamu's Dororo (PAL-M) SLES-52755 D78D3D1F [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack +author=sergx12 +description=Renders the game in 16:9 aspect ratio patch=1,EE,001b8e0c,word,3c023f06 patch=1,EE,001b8e14,word,34426666 - +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock at 180%. +patch=1,EE,203D79CC,extended,16400008 +patch=1,EE,E0010003,extended,00421A88 +patch=1,EE,203D79CC,extended,10400008 +patch=1,EE,01E5D620,extended,0000003C +patch=1,EE,001B4108,extended,3C033F00 +patch=1,EE,E0010003,extended,00446F60 //50 Hz +patch=1,EE,01E5D620,extended,00000032 \ No newline at end of file diff --git a/patches/SLES-52760_FB8BCB6D.pnach b/patches/SLES-52760_FB8BCB6D.pnach index d74e9e67..fa677b69 100644 --- a/patches/SLES-52760_FB8BCB6D.pnach +++ b/patches/SLES-52760_FB8BCB6D.pnach @@ -2,7 +2,7 @@ gametitle=Pro Evolution Soccer 4 [PAL-M4] (SLES_527.60) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,002D7F40,word,3FAAAAAB //3F800000 (Increases hor. axis) diff --git a/patches/SLES-52766_AA869E3B.pnach b/patches/SLES-52766_AA869E3B.pnach index 9e20b0cc..d9118055 100644 --- a/patches/SLES-52766_AA869E3B.pnach +++ b/patches/SLES-52766_AA869E3B.pnach @@ -2,7 +2,7 @@ gametitle=Godzilla - Save the Earth (PAL-M5) (SLES-52766) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00243dcc,word,0812ce2d // e6000124 diff --git a/patches/SLES-52768_5E1161DF.pnach b/patches/SLES-52768_5E1161DF.pnach index 8ae2e600..f71b88e3 100644 --- a/patches/SLES-52768_5E1161DF.pnach +++ b/patches/SLES-52768_5E1161DF.pnach @@ -1,11 +1,10 @@ gametitle=Commandos - Strike Force (PAL-M) SLES-52768 5E1161DF -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps -patch=1,EE,00100DA0,word,34050052 +description=SDTV 480p mode at start. +patch=1,EE,00100DA0,word,34050050 patch=1,EE,00100DA4,word,24030002 patch=1,EE,00100DA8,word,0000000C -patch=1,EE,00100DAC,word,03E00008 -patch=1,EE,0071E528,word,01852290 -patch=1,EE,0071E550,word,01852290 \ No newline at end of file +patch=1,EE,00100DAC,word,03E00008 \ No newline at end of file diff --git a/patches/SLES-52781_901F82B1.pnach b/patches/SLES-52781_901F82B1.pnach index 937d4447..d9b323a1 100644 --- a/patches/SLES-52781_901F82B1.pnach +++ b/patches/SLES-52781_901F82B1.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown vs. Raw (PAL-E) (SLES-52781) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0011a434,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-52782_0BC05D02.pnach b/patches/SLES-52782_0BC05D02.pnach index 531e2539..a8380458 100644 --- a/patches/SLES-52782_0BC05D02.pnach +++ b/patches/SLES-52782_0BC05D02.pnach @@ -2,7 +2,7 @@ gametitle=Call of Duty: Finest Hour (SLES-52782) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0024b57c,word,00000000 diff --git a/patches/SLES-52798_ED1F4177.pnach b/patches/SLES-52798_ED1F4177.pnach index 5ee0b3ad..fbf70afb 100644 --- a/patches/SLES-52798_ED1F4177.pnach +++ b/patches/SLES-52798_ED1F4177.pnach @@ -2,7 +2,7 @@ gametitle=Vietcong - Purple Haze (E)(SLES-52798) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52801_614F4CF4.pnach b/patches/SLES-52801_614F4CF4.pnach index b6d31192..c1754791 100644 --- a/patches/SLES-52801_614F4CF4.pnach +++ b/patches/SLES-52801_614F4CF4.pnach @@ -3,13 +3,13 @@ gametitle=The Lord of the Rings - The Third Age (PAL-M5) (SLES-52801) [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Widescreen hack 16:9 +description=Renders the game in 16:9 aspect ratio patch=1,EE,20C36980,word,3F400000 //3F800000 patch=1,EE,20C36990,word,3FB00000 //3F800000 patch=1,EE,20C36998,word,3FB00000 //3F800000 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,001C36DC,word,00000000 //4501FFF6 bc1t 0x001C36B8 -patch=1,EE,00279890,word,3C013f00 //3C013F80 camera \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,001C36DC,word,00000000 //4501FFF6 +patch=1,EE,00279890,word,3C013F00 //3C013F80 camera \ No newline at end of file diff --git a/patches/SLES-52805_614F4CF4.pnach b/patches/SLES-52805_614F4CF4.pnach index 8f48dcfa..1b2c3ca4 100644 --- a/patches/SLES-52805_614F4CF4.pnach +++ b/patches/SLES-52805_614F4CF4.pnach @@ -3,13 +3,13 @@ gametitle=Señor de Los Anillos, El - La Tercera Edad (PAL-S) SLES-52805 614F4CF [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Widescreen hack 16:9 +description=Renders the game in 16:9 aspect ratio patch=1,EE,20C36980,word,3F400000 //3F800000 patch=1,EE,20C36990,word,3FB00000 //3F800000 patch=1,EE,20C36998,word,3FB00000 //3F800000 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,001C36DC,word,00000000 //4501FFF6 bc1t 0x001C36B8 -patch=1,EE,00279890,word,3C013f00 //3C013F80 camera \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,001C36DC,word,00000000 //4501FFF6 +patch=1,EE,00279890,word,3C013F00 //3C013F80 camera \ No newline at end of file diff --git a/patches/SLES-52812_EBDB6E4B.pnach b/patches/SLES-52812_EBDB6E4B.pnach index 4d61b404..25d947c6 100644 --- a/patches/SLES-52812_EBDB6E4B.pnach +++ b/patches/SLES-52812_EBDB6E4B.pnach @@ -2,7 +2,7 @@ gametitle=The Incredibles [NTSC-U] (SLUS_209.05) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Sergx12 +author=sergx12 //Gameplay 16:9 patch=1,EE,001fe8e4,word,3c023f1C //3C023F00 Zoom diff --git a/patches/SLES-52816_197641AA.pnach b/patches/SLES-52816_197641AA.pnach index 14fb8380..181587dd 100644 --- a/patches/SLES-52816_197641AA.pnach +++ b/patches/SLES-52816_197641AA.pnach @@ -1,14 +1,25 @@ -gametitle=The Incredibles [PAL-Spain] (SLES_528.16) +gametitle=Increíbles, Los (PAL-S) SLES-52816 197641AA [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen Hack -//Gameplay 16:9 +description=Renders the game in 16:9 aspect ratio patch=1,EE,001FF744,word,3C023F1C //3C023F00 Zoom patch=1,EE,001FF770,word,3C023F10 //3C023F40 Y-FOV - //Hang fix by Prafull (Only needed for pcsx2, is not needed for the PS2) //patch=1,EE,0010EC20,word,00000000 //40036000 +[Remove Blackbars] +author=PeterDelta +description=Removes black bars in cutscenes +patch=1,EE,00631CAC,word,00000000 //4247FFFF +patch=1,EE,00631CB0,word,00000000 //4247FFFF +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,00104760,word,34050050 +patch=1,EE,00104764,word,24030002 +patch=1,EE,00104768,word,0000000C +patch=1,EE,0010476C,word,03E00008 \ No newline at end of file diff --git a/patches/SLES-52822_105CC366.pnach b/patches/SLES-52822_105CC366.pnach index 95325be9..8be2fc57 100644 --- a/patches/SLES-52822_105CC366.pnach +++ b/patches/SLES-52822_105CC366.pnach @@ -1,9 +1,9 @@ -gametitle=Prince of Persia - Warrior Within (PAL-M6) (SLES-52822) +gametitle=Prince of Persia - Warrior Within (PAL-M6) (SLES-52822) 105CC366 [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio // 16:9 patch=1,EE,005446d0,word,3c013f40 // 00000000 hor fov patch=1,EE,005446ec,word,34210000 // 00000000 hor fov @@ -23,5 +23,11 @@ patch=1,EE,0054470c,word,4600e8c6 // 44821800 [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,007B7554,word,00000001 //00000002 srl zero,0x00 +description=Might need EE Overclock at 180%. +patch=1,EE,007B7554,word,00000001 //00000002 + + +[Remove Blur/Bloom] +author=fobes +description=Removes the post-processing blur/bloom effect +patch=1,EE,00537344,word,00000000 diff --git a/patches/SLES-52824_AA91DEA8.pnach b/patches/SLES-52824_AA91DEA8.pnach index d223fe72..5c4f64b0 100644 --- a/patches/SLES-52824_AA91DEA8.pnach +++ b/patches/SLES-52824_AA91DEA8.pnach @@ -2,7 +2,7 @@ gametitle=Furry Tales (E)(SLES-52824) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52825_43A02228.pnach b/patches/SLES-52825_43A02228.pnach index b735823a..9094a51c 100644 --- a/patches/SLES-52825_43A02228.pnach +++ b/patches/SLES-52825_43A02228.pnach @@ -1,7 +1,32 @@ gametitle=Serie de Catastróficas Desdichas de Lemony Snicket, Una (PAL-S) SLES-52825 43A02228 -[50 FPS] +[Widescreen 16:9] +gsaspectratio=16:9 +author=Arapapa +description=Renders the game in 16:9 aspect ratio +patch=1,EE,0019c130,word,3c013f1b //3c013f00 Zoom +patch=1,EE,0019c17c,word,080eb428 //Y-Fov +patch=1,EE,003ad0a0,word,46001082 +patch=1,EE,003ad0a4,word,3c013f40 +patch=1,EE,003ad0a8,word,4481f000 +patch=1,EE,003ad0ac,word,461e1082 +patch=1,EE,003ad0b0,word,08067060 + +[Remove Blackbars] +author=Arapapa +description=Removes black bars in cutscenes +patch=1,EE,001c2e10,word,3c013a00 //3c013f80 + +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0047D2C0,word,42C80000 //42480000 -patch=1,EE,0047D2C4,word,3C23D70A //3CA3D70A \ No newline at end of file +patch=1,EE,0047D2C4,word,3C23D70A //3CA3D70A + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0036C26C,word,24110000 +patch=1,EE,0036C270,word,24120050 +patch=1,EE,0036C27C,word,24130001 \ No newline at end of file diff --git a/patches/SLES-52832_1E3EDB7E.pnach b/patches/SLES-52832_1E3EDB7E.pnach index f5b9cfbc..a35eebfc 100644 --- a/patches/SLES-52832_1E3EDB7E.pnach +++ b/patches/SLES-52832_1E3EDB7E.pnach @@ -2,7 +2,7 @@ gametitle=Mega Man X: Command Mission (SLES-52832) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0010f0a4,word,3c013f40 //hor value patch=1,EE,0010f0a8,word,44810000 diff --git a/patches/SLES-52835_40033F92.pnach b/patches/SLES-52835_40033F92.pnach new file mode 100644 index 00000000..dda38f7f --- /dev/null +++ b/patches/SLES-52835_40033F92.pnach @@ -0,0 +1,6 @@ +gametitle=The Mummy PAL-M SLES-52835 40033F92 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0021A59C,word,14600006 \ No newline at end of file diff --git a/patches/SLES-52836_37C182D7.pnach b/patches/SLES-52836_37C182D7.pnach index 555da0dd..80042305 100644 --- a/patches/SLES-52836_37C182D7.pnach +++ b/patches/SLES-52836_37C182D7.pnach @@ -43,5 +43,5 @@ patch=1,EE,004607B8,short,52D4 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. It is not recommended to enable overclock. +description=It is not recommended to enable overclock. patch=1,EE,004E77E8,word,24020001 //24020002 \ No newline at end of file diff --git a/patches/SLES-52843_F8F8CD47.pnach b/patches/SLES-52843_F8F8CD47.pnach index 91f74a17..ecf318a0 100644 --- a/patches/SLES-52843_F8F8CD47.pnach +++ b/patches/SLES-52843_F8F8CD47.pnach @@ -1,9 +1,9 @@ -gametitle=Garfield (E)(SLES-52843) +gametitle=Garfield (PAL-M) (SLES-52843) F8F8CD47 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Widescreen hack 16:9 //Zoom @@ -22,8 +22,7 @@ patch=1,EE,0020eedc,word,4481f000 patch=1,EE,0020eee0,word,461e0002 patch=1,EE,0020eee4,word,080c535f - [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,005C7D60,word,42700000 //41F00000 \ No newline at end of file diff --git a/patches/SLES-52857_38351989.pnach b/patches/SLES-52857_38351989.pnach index 698c1bbf..738efe43 100644 --- a/patches/SLES-52857_38351989.pnach +++ b/patches/SLES-52857_38351989.pnach @@ -1,6 +1,18 @@ -gametitle=Fairly OddParents, The - Shadow Showdown (PAL-M) SLES-52857 38351989 +gametitle=Fairly OddParents, The - Shadow Showdown (PAL-E) SLES-52857 38351989 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=Arapapa, ported by PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00361D8C,word,080F09E8 +patch=1,EE,003C27A0,word,46166302 +patch=1,EE,003C27A4,word,3C013F9D +patch=1,EE,003C27A8,word,3421AAAB +patch=1,EE,003C27AC,word,4481F000 +patch=1,EE,003C27B0,word,461E6302 +patch=1,EE,003C27B4,word,080D8764 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock (130%). patch=1,EE,004D1414,word,42700000 //41F00000 \ No newline at end of file diff --git a/patches/SLES-52858_6E69A06C.pnach b/patches/SLES-52858_6E69A06C.pnach index ef6e7e8c..75b4fe6b 100644 --- a/patches/SLES-52858_6E69A06C.pnach +++ b/patches/SLES-52858_6E69A06C.pnach @@ -2,7 +2,7 @@ gametitle=Cocoto Kart Racer (E)(SLES-52858) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52861_68E72016.pnach b/patches/SLES-52861_68E72016.pnach index 732d65e4..062563a4 100644 --- a/patches/SLES-52861_68E72016.pnach +++ b/patches/SLES-52861_68E72016.pnach @@ -2,7 +2,7 @@ gametitle=King Arthur (PAL-M) SLES-52861 68E72016 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00129ECC,word,28420002 patch=1,EE,E0010001,extended,00567034 patch=1,EE,00129ECC,extended,28420001 \ No newline at end of file diff --git a/patches/SLES-52864_01A1B7CD.pnach b/patches/SLES-52864_01A1B7CD.pnach index 03940024..e7c7eab0 100644 --- a/patches/SLES-52864_01A1B7CD.pnach +++ b/patches/SLES-52864_01A1B7CD.pnach @@ -2,7 +2,7 @@ gametitle=MX World Tour (E)(SLES-52864) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52867_D92510F2.pnach b/patches/SLES-52867_D92510F2.pnach index 6b8c2f84..666a28d7 100644 --- a/patches/SLES-52867_D92510F2.pnach +++ b/patches/SLES-52867_D92510F2.pnach @@ -2,7 +2,7 @@ gametitle=SpinDrive Ping Pong (E)(SLES-52867) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52868_5F2205B1.pnach b/patches/SLES-52868_5F2205B1.pnach index 47972ef6..521b8a37 100644 --- a/patches/SLES-52868_5F2205B1.pnach +++ b/patches/SLES-52868_5F2205B1.pnach @@ -2,7 +2,7 @@ gametitle=Viewtiful Joe 2 [PAL-M5] (SLES_528.68) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,002DFBD0,word,3C013FD3 //3C013FAA (Increases hor. axis) diff --git a/patches/SLES-52872_715AD5FD.pnach b/patches/SLES-52872_715AD5FD.pnach index d8663409..a9e3ed5c 100644 --- a/patches/SLES-52872_715AD5FD.pnach +++ b/patches/SLES-52872_715AD5FD.pnach @@ -1,15 +1,24 @@ -gametitle=Constantine (E)(SLES-52872) +gametitle=Constantine (PAL-M) (SLES-52872) 715AD5FD [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen Hack - +description=Renders the game in 16:9 aspect ratio //X-Fov - ELF hack //803f013c 00108144 0c00438e patch=1,EE,002b5118,word,3c013f40 //3c013f80 -[50 FPS] +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock at 180%. +patch=1,EE,004B70F8,word,00000000 //00000001 + +[NTSC Mode] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,004B70F8,word,00000000 //00000001 \ No newline at end of file +description=NTSC mode at start. +patch=1,EE,0040E3E0,word,34050002 +patch=1,EE,0040E3E4,word,24030002 +patch=1,EE,0040E3E8,word,0000000C +patch=1,EE,0040E3EC,word,03E00008 +patch=1,EE,002B505C,word,24050280 +patch=1,EE,002B5060,word,240601C0 \ No newline at end of file diff --git a/patches/SLES-52877_2CD5794C.pnach b/patches/SLES-52877_2CD5794C.pnach index cf15e8fc..f0d6a08c 100644 --- a/patches/SLES-52877_2CD5794C.pnach +++ b/patches/SLES-52877_2CD5794C.pnach @@ -2,7 +2,7 @@ gametitle=Haunting Ground (SLES-52877) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0010e31c,word,3c013f40 patch=1,EE,0010e320,word,44810000 patch=1,EE,0010e328,word,4600c602 diff --git a/patches/SLES-52882_BBAE448F.pnach b/patches/SLES-52882_BBAE448F.pnach index 42a82e37..6f1d301e 100644 --- a/patches/SLES-52882_BBAE448F.pnach +++ b/patches/SLES-52882_BBAE448F.pnach @@ -2,7 +2,7 @@ gametitle=Stolen (PAL-M5) SLES_528.82 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by dieSkaarj +author=dieSkaarj patch=1,EE,20aeadf0,extended,3f400000 //3f800000 diff --git a/patches/SLES-52884_28F92CA7.pnach b/patches/SLES-52884_28F92CA7.pnach index 5e748374..5bb15999 100644 --- a/patches/SLES-52884_28F92CA7.pnach +++ b/patches/SLES-52884_28F92CA7.pnach @@ -2,7 +2,7 @@ gametitle=Duel Masters (E)(SLES-52884) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52886_381F8A7B.pnach b/patches/SLES-52886_381F8A7B.pnach new file mode 100644 index 00000000..5c235341 --- /dev/null +++ b/patches/SLES-52886_381F8A7B.pnach @@ -0,0 +1,10 @@ +gametitle=Power Rangers - Dino Thunder PAL-E SLES-52886 381F8A7B + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,2052F510,extended,00000001 +patch=1,EE,E0010001,extended,003F66F8 +patch=1,EE,2052F510,extended,00000002 +patch=1,EE,E0010001,extended,00537E10 +patch=1,EE,2052F510,extended,00000002 \ No newline at end of file diff --git a/patches/SLES-52888_0B918E04.pnach b/patches/SLES-52888_0B918E04.pnach index 344bb037..c7d70d6b 100644 --- a/patches/SLES-52888_0B918E04.pnach +++ b/patches/SLES-52888_0B918E04.pnach @@ -2,7 +2,7 @@ gametitle=Brothers in Arms: Road to Hill 30 [PAL-M5] (SLES_528.88) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,003057EC,word,3C023F40 //3C023F80 (Increases hor. axis) diff --git a/patches/SLES-52898_20CEB0BC.pnach b/patches/SLES-52898_20CEB0BC.pnach index 1791fb04..b1be5afa 100644 --- a/patches/SLES-52898_20CEB0BC.pnach +++ b/patches/SLES-52898_20CEB0BC.pnach @@ -2,7 +2,7 @@ gametitle=The King of Fighters: Maximum Impact (SLES-52898) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,00381454,word,3c043f24 diff --git a/patches/SLES-52908_25C3948E.pnach b/patches/SLES-52908_25C3948E.pnach index 3c21b2fd..9d122d28 100644 --- a/patches/SLES-52908_25C3948E.pnach +++ b/patches/SLES-52908_25C3948E.pnach @@ -3,12 +3,12 @@ gametitle=The Urbz - Sims in the City (PAL-M) (SLES-52908) 25C3948E [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen hack +description=Renders the game in 16:9 aspect ratio //aa3f013c abaa2134 00008144 0800e003 00000000 00000000 0800e003 patch=1,EE,0039b3f0,word,3c013fe3 //3c013faa patch=1,EE,0039b3f4,word,34218e2a //3421aaab [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,003AE2F8,word,28820001 //28820002 \ No newline at end of file diff --git a/patches/SLES-52913_1ECA1475.pnach b/patches/SLES-52913_1ECA1475.pnach index a9d966d9..cca45430 100644 --- a/patches/SLES-52913_1ECA1475.pnach +++ b/patches/SLES-52913_1ECA1475.pnach @@ -2,7 +2,7 @@ gametitle=Suikoden IV [PAL-M5] (SLES-52913) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by nemesis2000 +author=nemesis2000 // Ported to PAL // // 16:9 diff --git a/patches/SLES-52917_E54D237D.pnach b/patches/SLES-52917_E54D237D.pnach index d476b6d0..9545f399 100644 --- a/patches/SLES-52917_E54D237D.pnach +++ b/patches/SLES-52917_E54D237D.pnach @@ -1,10 +1,9 @@ -gametitle=Scaler (PAL-M4) (SLES-52918) +gametitle=Scaler (PAL-M4) (SLES-52917) E54D237D [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht - -// 16:9 +author=ElHecht +description=Renders the game in 16:9 aspect ratio patch=1,EE,0021b9dc,word,080bd30c // e4a10000 patch=1,EE,0021b9e0,word,00000000 // aca00004 patch=1,EE,002f4c30,word,3c013f40 // 00000000 hor fov @@ -16,4 +15,10 @@ patch=1,EE,002f4c48,word,08086e78 // 00000000 patch=1,EE,0020b274,word,3c023f40 // 3c023f80 renderfix left patch=1,EE,0020b290,word,3c02bf40 // 3c02bf80 renderfix right - +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0011CDEC,word,24110000 +patch=1,EE,0011CDF0,word,24120050 +patch=1,EE,0011CDFC,word,24130001 \ No newline at end of file diff --git a/patches/SLES-52918_E54D237D.pnach b/patches/SLES-52918_E54D237D.pnach index b08c140a..023414a2 100644 --- a/patches/SLES-52918_E54D237D.pnach +++ b/patches/SLES-52918_E54D237D.pnach @@ -3,7 +3,7 @@ gametitle=Scaler (PAL-M) SLES-52918 E54D237D [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,0021b9dc,word,080bd30c // e4a10000 patch=1,EE,0021b9e0,word,00000000 // aca00004 patch=1,EE,002f4c30,word,3c013f40 // 00000000 hor fov @@ -13,4 +13,12 @@ patch=1,EE,002f4c40,word,e4a10000 // 00000000 patch=1,EE,002f4c44,word,aca00004 // 00000000 patch=1,EE,002f4c48,word,08086e78 // 00000000 patch=1,EE,0020b274,word,3c023f40 // 3c023f80 renderfix left -patch=1,EE,0020b290,word,3c02bf40 // 3c02bf80 renderfix right \ No newline at end of file +patch=1,EE,0020b290,word,3c02bf40 // 3c02bf80 renderfix right + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0011CDEC,word,24110000 +patch=1,EE,0011CDF0,word,24120050 +patch=1,EE,0011CDFC,word,24130001 \ No newline at end of file diff --git a/patches/SLES-52920_EBDDF618.pnach b/patches/SLES-52920_EBDDF618.pnach index c6625a56..99fae9e4 100644 --- a/patches/SLES-52920_EBDDF618.pnach +++ b/patches/SLES-52920_EBDDF618.pnach @@ -2,7 +2,7 @@ gametitle=Alarm for Cobra 11 - Vol. II (E)(SLES-52920) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-52921_03C8EA64.pnach b/patches/SLES-52921_03C8EA64.pnach index 32700bb9..2de0c717 100644 --- a/patches/SLES-52921_03C8EA64.pnach +++ b/patches/SLES-52921_03C8EA64.pnach @@ -1,17 +1,14 @@ -gametitle=Rogue Trooper (E)(SLES-52921) +gametitle=Rogue Trooper (PAL-M) SLES-52921 03C8EA64 [Widescreen 16:9] gsaspectratio=16:9 -author=Arapapa -comment=Widescreen Hack -//Widescreen hack 16:9 - -//X-Fov -//803f013c 00e08144 -patch=1,EE,001c88ec,word,3c013f40 //3c013f80 +author=Gabominated & PeterDelta +description=Widescreen fix +patch=1,EE,00112D80,extended,3C013F00 +patch=1,EE,E0010101,extended,00467464 +patch=1,EE,00112D80,extended,3C013F05 //zoom [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,003C8A04,word,00000000 //1040FFFA -patch=1,EE,001BE7AC,word,00000000 //1440FFFA \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,001BE788,word,1460000A //1060000A \ No newline at end of file diff --git a/patches/SLES-52939_07D1DC03.pnach b/patches/SLES-52939_07D1DC03.pnach index 1a518e33..1e5f6cb1 100644 --- a/patches/SLES-52939_07D1DC03.pnach +++ b/patches/SLES-52939_07D1DC03.pnach @@ -2,7 +2,7 @@ gametitle=Airborne Troops - Countdown to D-Day (E)(SLES-52939) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52940_BA246DD0.pnach b/patches/SLES-52940_BA246DD0.pnach index b55f583d..b76c79ee 100644 --- a/patches/SLES-52940_BA246DD0.pnach +++ b/patches/SLES-52940_BA246DD0.pnach @@ -2,7 +2,7 @@ gametitle=S.L.A.I.: Steel Lancer Arena International [PAL-M3] (SLES_529.40) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00269998,word,3C033F40 //3C033F80 (Increases hor. axis) diff --git a/patches/SLES-52941_80BB14B2.pnach b/patches/SLES-52941_80BB14B2.pnach index 7fb0c909..574d4fe2 100644 --- a/patches/SLES-52941_80BB14B2.pnach +++ b/patches/SLES-52941_80BB14B2.pnach @@ -2,7 +2,7 @@ gametitle=Gungrave: Overdose [PAL-M3] (SLES_529.41) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0028B6C4,word,3C013F40 //00000000 (Increases hor. axis) diff --git a/patches/SLES-52942_EBE1972D.pnach b/patches/SLES-52942_EBE1972D.pnach index 403b8d46..110f54cf 100644 --- a/patches/SLES-52942_EBE1972D.pnach +++ b/patches/SLES-52942_EBE1972D.pnach @@ -1,12 +1,12 @@ -gametitle=Midnight Club 3 - DUB Edition (E)(SLES-52942) EBE1972D +gametitle=Midnight Club 3 - DUB Edition (PAL-M) (SLES-52942) EBE1972D [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio -patch=1,EE,00617D30,word,3FC71CEB //3F955554 +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00617D30,word,3FC71C66 //3F955554 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,00617D34,word,00000001 //00000002 srl zero,0x00 \ No newline at end of file +description=Might need EE Overclock at 180%. +patch=1,EE,00617D34,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-52943_7D5403E1.pnach b/patches/SLES-52943_7D5403E1.pnach index 5f22c6af..d5345cd1 100644 --- a/patches/SLES-52943_7D5403E1.pnach +++ b/patches/SLES-52943_7D5403E1.pnach @@ -2,7 +2,7 @@ gametitle=ESPN NFL 2K5 (E)(SLES-52943) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52951_977116A5.pnach b/patches/SLES-52951_977116A5.pnach index f7db8813..2aa73651 100644 --- a/patches/SLES-52951_977116A5.pnach +++ b/patches/SLES-52951_977116A5.pnach @@ -2,7 +2,7 @@ gametitle=Phantom Brave [PAL] (SLES_529.51) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00105664,word,3C013F40 //00000000 (Increases hor. axis) diff --git a/patches/SLES-52954_511447B7.pnach b/patches/SLES-52954_511447B7.pnach index 8afbf640..0c88318e 100644 --- a/patches/SLES-52954_511447B7.pnach +++ b/patches/SLES-52954_511447B7.pnach @@ -2,7 +2,7 @@ gametitle=WWII - Tank Battles (E)(SLES-52954) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-52956_5E82A640.pnach b/patches/SLES-52956_5E82A640.pnach index df210f87..9235ea81 100644 --- a/patches/SLES-52956_5E82A640.pnach +++ b/patches/SLES-52956_5E82A640.pnach @@ -2,7 +2,7 @@ gametitle=Action Girlz Racing (E)(SLES-52956) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLES-52957_BAEEE480.pnach b/patches/SLES-52957_BAEEE480.pnach index 3ae7c512..e529b1d0 100644 --- a/patches/SLES-52957_BAEEE480.pnach +++ b/patches/SLES-52957_BAEEE480.pnach @@ -2,7 +2,7 @@ gametitle=Urban Extreme (E)(SLES-52957) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-52965_57115262.pnach b/patches/SLES-52965_57115262.pnach index 2ea0f39d..bfe8a8ea 100644 --- a/patches/SLES-52965_57115262.pnach +++ b/patches/SLES-52965_57115262.pnach @@ -2,7 +2,7 @@ gametitle=Outlaw Golf 2 (PAL-M5) (SLES-52965) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by sergx12 +author=sergx12 //Ported to PAL (ElHecht) // 16:9 diff --git a/patches/SLES-52966_EC301155.pnach b/patches/SLES-52966_EC301155.pnach index 525d5055..2f796988 100644 --- a/patches/SLES-52966_EC301155.pnach +++ b/patches/SLES-52966_EC301155.pnach @@ -2,7 +2,7 @@ gametitle=ESPN NHL 2K5 [PAL] (SLES_529.66) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Seems to work fine only in the emulator, in the PS2 causes some graphical glitches in some //cut-scenes and in the replays when is used the zoom very near to the puck. diff --git a/patches/SLES-52977_3BEBCCAC.pnach b/patches/SLES-52977_3BEBCCAC.pnach index fd5220f2..923076dd 100644 --- a/patches/SLES-52977_3BEBCCAC.pnach +++ b/patches/SLES-52977_3BEBCCAC.pnach @@ -2,6 +2,6 @@ gametitle=GoldenEye - Agente Corrupto (PAL-S) SLES-52977 3BEBCCAC [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,001223F4,word,2C420001 //2C420002 patch=1,EE,00100030,word,3E800000 //3F000000 \ No newline at end of file diff --git a/patches/SLES-52978_474EC389.pnach b/patches/SLES-52978_474EC389.pnach index a141f617..9793112d 100644 --- a/patches/SLES-52978_474EC389.pnach +++ b/patches/SLES-52978_474EC389.pnach @@ -2,7 +2,7 @@ gametitle=La Pucelle - Tactics [PAL] (SLES_529.78) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00108994,word,3C013F40 //00000000 (Increases hor. axis) diff --git a/patches/SLES-52980_27A0757B.pnach b/patches/SLES-52980_27A0757B.pnach index a724d1a4..6ca9ea52 100644 --- a/patches/SLES-52980_27A0757B.pnach +++ b/patches/SLES-52980_27A0757B.pnach @@ -2,7 +2,7 @@ gametitle=Big Mutha Truckers 2: Truck Me Harder [PAL] (SLES_529.80) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00480160,word,3F400000 //3F800000 Zoom diff --git a/patches/SLES-52988_AA3F4F82.pnach b/patches/SLES-52988_AA3F4F82.pnach index df9ff6f8..4ada543b 100644 --- a/patches/SLES-52988_AA3F4F82.pnach +++ b/patches/SLES-52988_AA3F4F82.pnach @@ -2,7 +2,7 @@ gametitle=Mega Man X8 (SLES-52988) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0010f10c,word,3c013f40 //hor value patch=1,EE,0010f110,word,44810000 diff --git a/patches/SLES-52989_0158297B.pnach b/patches/SLES-52989_0158297B.pnach index b4acfe68..b1be59e0 100644 --- a/patches/SLES-52989_0158297B.pnach +++ b/patches/SLES-52989_0158297B.pnach @@ -12,5 +12,5 @@ patch=1,EE,003B7E28,word,40222222 //3FF33333 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,002B13B8,word,28630001 //28630002 \ No newline at end of file diff --git a/patches/SLES-52999_409E55FF.pnach b/patches/SLES-52999_409E55FF.pnach index 853a4bf2..4eccfe72 100644 --- a/patches/SLES-52999_409E55FF.pnach +++ b/patches/SLES-52999_409E55FF.pnach @@ -2,7 +2,7 @@ gametitle=RC Toy Machines (E)(SLES-52999) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Devina and Arapapa +author=Devina and Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53004_95E985AA.pnach b/patches/SLES-53004_95E985AA.pnach index 676a94f9..505b32ae 100644 --- a/patches/SLES-53004_95E985AA.pnach +++ b/patches/SLES-53004_95E985AA.pnach @@ -2,7 +2,7 @@ gametitle=Samurai Warriors - Xtreme Legends (PAL-G) (SLES-53004) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,0013fa48,word,3c024328 // 3c024360 zoom diff --git a/patches/SLES-53005_084F6F93.pnach b/patches/SLES-53005_084F6F93.pnach index 63a449bc..c946fe85 100644 --- a/patches/SLES-53005_084F6F93.pnach +++ b/patches/SLES-53005_084F6F93.pnach @@ -2,7 +2,7 @@ gametitle=Monster Trux Extreme - Offroad Edition (E)(SLES-53005) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53008_CBA0623D.pnach b/patches/SLES-53008_CBA0623D.pnach index 6f37fe86..c4ff94da 100644 --- a/patches/SLES-53008_CBA0623D.pnach +++ b/patches/SLES-53008_CBA0623D.pnach @@ -1,9 +1,9 @@ -gametitle=Mercenaries: Playground of Destruction [PAL-M2-Spa-Ita] (SLES_530.08) +gametitle=Mercenaries: Playground of Destruction [PAL-M2-Spa-Ita] (SLES_530.08) CBA0623D [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio // 16:9 patch=1,EE,0033b098,word,3c013f40 //00000000 hor fov @@ -28,5 +28,5 @@ patch=1,EE,004f40c4,word,080ce663 //00000000 hud-identification fix [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,003ADF78,word,2C420001 //0043102B \ No newline at end of file diff --git a/patches/SLES-53011_46F3905A.pnach b/patches/SLES-53011_46F3905A.pnach index 58c2645e..1c6625a8 100644 --- a/patches/SLES-53011_46F3905A.pnach +++ b/patches/SLES-53011_46F3905A.pnach @@ -2,7 +2,7 @@ gametitle=Gallop Racer 2 (E)(SLES-53011) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53017_C7375C85.pnach b/patches/SLES-53017_C7375C85.pnach index ba9c9caa..eab7e78e 100644 --- a/patches/SLES-53017_C7375C85.pnach +++ b/patches/SLES-53017_C7375C85.pnach @@ -3,24 +3,26 @@ gametitle=TMNT Teenage Mutant Ninja Turtles 2 - Battle Nexus (PAL-M5) SLES-54478 [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen Hack 16:9 -// +description=Renders the game in 16:9 aspect ratio // 16:9 patch=1,EE,00234710,word,460d6302 patch=1,EE,00234714,word,460d6b42 [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,10557B6C,extended,04000001 //04000002 -patch=1,EE,E001D70A,extended,00558200 +patch=1,EE,E002D70A,extended,00558200 patch=1,EE,20558200,extended,3CA3D70A //3D23D70A 50hz -patch=1,EE,E0018889,extended,00558200 +patch=1,EE,205581FC,extended,42480000 +patch=1,EE,E0028889,extended,00558200 patch=1,EE,20558200,extended,3C888889 //3D088889 60hz +patch=1,EE,205581FC,extended,42700000 -[Mode 480p] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Force progressive scan when selecting 60hz +description=SDTV 480p mode when selecting 60 Hz patch=1,EE,E0030000,extended,00558788 patch=1,EE,201009B4,extended,24110000 patch=1,EE,201009B8,extended,24120050 diff --git a/patches/SLES-53022_CA37B42E.pnach b/patches/SLES-53022_CA37B42E.pnach index c9ab1b32..d23fb92e 100644 --- a/patches/SLES-53022_CA37B42E.pnach +++ b/patches/SLES-53022_CA37B42E.pnach @@ -2,7 +2,7 @@ gametitle=ESPN NBA 2K5 (E)(SLES-53022) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53032_72DC82B5.pnach b/patches/SLES-53032_72DC82B5.pnach index cb71e299..50c2aed8 100644 --- a/patches/SLES-53032_72DC82B5.pnach +++ b/patches/SLES-53032_72DC82B5.pnach @@ -1,9 +1,9 @@ -gametitle=Hitman - Blood Money (PAL-S) (SLES-53032) +gametitle=Hitman - Blood Money (PAL-S) (SLES-53032) 72DC82B5 [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio // 16:9 patch=1,EE,00178c2c,word,3c013f40 // 00000000 hor fov patch=1,EE,00178c30,word,4481f000 // 00000000 @@ -11,10 +11,15 @@ patch=1,EE,00178c6c,word,461e0003 // 00000000 patch=1,EE,002916e0,word,461ea502 // 00000000 patch=1,EE,002b28c4,word,461ea302 // 4600a306 - [50/60 FPS] author=PeterDelta & Gabominated -comment=Unlocked at 50/60 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,0061C020,word,00000001 patch=1,EE,E0010000,extended,01FECCF4 -patch=1,EE,0061C020,extended,00000002 \ No newline at end of file +patch=1,EE,0061C020,extended,00000002 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=Any Hz selection will output in 480p. +patch=1,EE,0049AF94,word,00000003 \ No newline at end of file diff --git a/patches/SLES-53035_492DFF9C.pnach b/patches/SLES-53035_492DFF9C.pnach index 2842bf5b..604031b8 100644 --- a/patches/SLES-53035_492DFF9C.pnach +++ b/patches/SLES-53035_492DFF9C.pnach @@ -2,7 +2,7 @@ gametitle=Masters of the Universe - He-Man - Defender of Grayskull (E)(SLES-5303 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53036_F1A69850.pnach b/patches/SLES-53036_F1A69850.pnach index 48deb135..6f7c9ae4 100644 --- a/patches/SLES-53036_F1A69850.pnach +++ b/patches/SLES-53036_F1A69850.pnach @@ -1,12 +1,12 @@ -gametitle=Tak 2: The Staff of Dreams [PAL] (SLES_530.36) +gametitle=Tak 2: The Staff of Dreams [PAL] (SLES_530.36) F1A69850 [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,205CF4EC,extended,3FE38E38 //3FAAAAAB (Increases hor. axis) [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0055D0E8,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-53045_18C101A7.pnach b/patches/SLES-53045_18C101A7.pnach index ce471853..276c40e7 100644 --- a/patches/SLES-53045_18C101A7.pnach +++ b/patches/SLES-53045_18C101A7.pnach @@ -2,7 +2,7 @@ gametitle=Street Racing Syndicate (E)(SLES-53045) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53046_EDE9DD5C.pnach b/patches/SLES-53046_EDE9DD5C.pnach new file mode 100644 index 00000000..b9f3f541 --- /dev/null +++ b/patches/SLES-53046_EDE9DD5C.pnach @@ -0,0 +1,6 @@ +gametitle=Counter Terrorist Special Forces - Fire for Effect PAL-M SLES-53046 EDE9DD5C + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0021A53C,word,14600006 //10600006 \ No newline at end of file diff --git a/patches/SLES-53047_5686034D.pnach b/patches/SLES-53047_5686034D.pnach index 29bd5a44..96308ed4 100644 --- a/patches/SLES-53047_5686034D.pnach +++ b/patches/SLES-53047_5686034D.pnach @@ -2,7 +2,7 @@ gametitle=The Punisher (PAL-M2) (SLES-53047) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,00192a7c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-53049_5AC5D875.pnach b/patches/SLES-53049_5AC5D875.pnach new file mode 100644 index 00000000..d503d6bd --- /dev/null +++ b/patches/SLES-53049_5AC5D875.pnach @@ -0,0 +1,9 @@ +gametitle=The Punisher (PAL-S-I) SLES-53049 5AC5D875 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,001A0C14,word,3C050000 +patch=1,EE,001A0C1C,word,3C060050 +patch=1,EE,001A0C24,word,3C070001 \ No newline at end of file diff --git a/patches/SLES-53052_B860F5B6.pnach b/patches/SLES-53052_B860F5B6.pnach index 0514fc85..20b3e8a3 100644 --- a/patches/SLES-53052_B860F5B6.pnach +++ b/patches/SLES-53052_B860F5B6.pnach @@ -1,9 +1,9 @@ -gametitle=Robots (E)(SLES-53052) +gametitle=Robots (PAL-M) (SLES-53052) B860F5B6 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Widescreen hack 16:9 //Y-Fov @@ -14,11 +14,10 @@ patch=1,EE,0029936c,word,3c013f40 //3c013f80 //803f013c 00608144 4000a827 patch=1,EE,00299574,word,3c013f40 //3c013f80 - [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,0037B6A8,word,00000019 //00000032 tlt zero,zero -patch=1,EE,0037B6E0,word,3F99999A //4019999A mfc0 t9,C0r19 speed npc -patch=1,EE,0037B6C4,word,3F99999A //4019999A mfc0 t9,C0r19 speed jump -patch=1,EE,0037B6CC,word,3F99999A //4019999A mfc0 t9,C0r19 speed subtitles +description=Might need EE Overclock at 130%. +patch=1,EE,0037B6A8,word,00000019 //00000032 +patch=1,EE,0037B6E0,word,3F99999A //4019999A npc +patch=1,EE,0037B6C4,word,3F99999A //4019999A jump +patch=1,EE,0037B6CC,word,3F99999A //4019999A subtitles \ No newline at end of file diff --git a/patches/SLES-53060_70C6047D.pnach b/patches/SLES-53060_70C6047D.pnach index 27ad84b5..d7db7dcc 100644 --- a/patches/SLES-53060_70C6047D.pnach +++ b/patches/SLES-53060_70C6047D.pnach @@ -2,7 +2,7 @@ gametitle=Asterix & Obelix XXL 2 (PAL-M3) (SLES-53060) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa/ElHecht +author=Arapapa/ElHecht // 16:9 patch=1,EE,001298a8,word,081165c0 // 3c023f40 jump to code-inject 00459700 diff --git a/patches/SLES-53062_866DA672.pnach b/patches/SLES-53062_866DA672.pnach index 22e44b27..4711e6f8 100644 --- a/patches/SLES-53062_866DA672.pnach +++ b/patches/SLES-53062_866DA672.pnach @@ -2,7 +2,7 @@ gametitle=Yu Yu Hakusho - Dark Tournament (E)(SLES-53062) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant patch=1,EE,00119018,word,3c0240ab //3c024080 patch=1,EE,00118990,word,3c023f2b //3c023f00 diff --git a/patches/SLES-53070_180F5C36.pnach b/patches/SLES-53070_180F5C36.pnach deleted file mode 100644 index 19031b97..00000000 --- a/patches/SLES-53070_180F5C36.pnach +++ /dev/null @@ -1,18 +0,0 @@ -gametitle=Area 51 (PAL-M) (SLES-53070) 180F5C36 - -[Widescreen 16:9] -gsaspectratio=16:9 -author=PeterDelta -comment=Ported from the other version PAL by ElHecht -patch=1,EE,00392730,word,3c193f40 // 00000000 hor fov -patch=1,EE,00392748,word,4499f000 // 00000000 -patch=1,EE,0039274C,word,461ea502 // 00000000 -patch=1,EE,00392E18,word,461ebb03 // 00000000 renderfix calculation -patch=1,EE,00392E04,word,461eab83 // 00000000 renderfix calculation - -[50 FPS] -author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,00382AD8,word,28620001 //28620002 slti v0,v1,0x0002 -patch=1,EE,E0010001,extended,005BE984 -patch=1,EE,20382AD8,extended,28620002 diff --git a/patches/SLES-53073_DCD7104E.pnach b/patches/SLES-53073_DCD7104E.pnach index b929ab75..de7b4e9d 100644 --- a/patches/SLES-53073_DCD7104E.pnach +++ b/patches/SLES-53073_DCD7104E.pnach @@ -2,7 +2,7 @@ gametitle=Michigan - Report from Hell (PAL-M4) (SLES-53073) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 +author=nemesis2000 // Added conditions for PAL50 and PAL60 (ElHecht) // 16:9 diff --git a/patches/SLES-53075_C4ACBCF0.pnach b/patches/SLES-53075_C4ACBCF0.pnach index 09474574..4967c42f 100644 --- a/patches/SLES-53075_C4ACBCF0.pnach +++ b/patches/SLES-53075_C4ACBCF0.pnach @@ -1,8 +1,8 @@ -gametitle=Area 51 (PAL-M5) (SLES-53075) +gametitle=Area 51 (PAL-M5) (SLES-53075) C4ACBCF0 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00392a10,word,3c193f40 // 00000000 hor fov @@ -19,10 +19,9 @@ patch=1,EE,003930e4,word,461eab83 // 00000000 renderfix calculation //patch=1,EE,003930f8,word,461ebb03 // 00000000 renderfix calculation //patch=1,EE,003930e4,word,461eab83 // 00000000 renderfix calculation - [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,00382DB8,word,28620001 //28620002 slti v0,v1,0x0002 +description=Might need EE Overclock at 180%. +patch=1,EE,00382DB8,extended,28620001 patch=1,EE,E0010001,extended,005BF0C4 -patch=1,EE,20382DB8,extended,28620002 +patch=1,EE,00382DB8,extended,28620002 \ No newline at end of file diff --git a/patches/SLES-53076_C92321FF.pnach b/patches/SLES-53076_C92321FF.pnach index b86f7b24..7628cb0a 100644 --- a/patches/SLES-53076_C92321FF.pnach +++ b/patches/SLES-53076_C92321FF.pnach @@ -1,15 +1,15 @@ -gametitle=Trigger Man (E)(SLES-53076) +gametitle=Trigger Man (PAL-M) (SLES-53076)C92321FF [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen hack +description=Renders the game in 16:9 aspect ratio //X-Fov patch=1,EE,00132cf8,word,3c013f40 //3c013f80 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00116108,word,00000000 //14620011 patch=1,EE,001FCE50,word,00000000 //46010840 patch=1,EE,001FCE34,word,00000000 //10000007 \ No newline at end of file diff --git a/patches/SLES-53079_3ED09CF5.pnach b/patches/SLES-53079_3ED09CF5.pnach index 23291d20..f1797c8b 100644 --- a/patches/SLES-53079_3ED09CF5.pnach +++ b/patches/SLES-53079_3ED09CF5.pnach @@ -2,7 +2,7 @@ gametitle=Ys - The Ark of Napishtim (PAL-M5) (SLES-53079) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,00102e34,word,3c013f40 // 00000000 hor fov patch=1,EE,00102e38,word,44810000 // 00000000 diff --git a/patches/SLES-53079_3EFD508C.pnach b/patches/SLES-53079_3EFD508C.pnach index 5f40dd40..84a1e147 100644 --- a/patches/SLES-53079_3EFD508C.pnach +++ b/patches/SLES-53079_3EFD508C.pnach @@ -2,7 +2,7 @@ gametitle=Gallop Racer 2003 - A New Breed (U)(SLUS-20662) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53080_1634FB4A.pnach b/patches/SLES-53080_1634FB4A.pnach index 88ddef82..de374acf 100644 --- a/patches/SLES-53080_1634FB4A.pnach +++ b/patches/SLES-53080_1634FB4A.pnach @@ -2,7 +2,7 @@ gametitle=Extreme Sprint 3010 (E)(SLES-53080) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53087_EE0618ED.pnach b/patches/SLES-53087_EE0618ED.pnach new file mode 100644 index 00000000..164149ce --- /dev/null +++ b/patches/SLES-53087_EE0618ED.pnach @@ -0,0 +1,8 @@ +gametitle=TOCA Race Driver 3 (PAL-M) SLES-53087 EE0618ED + +[480p Mode] +gsinterlacemode=1 +author=Gabominated +description=SDTV 480p mode at start. Might need enable EE overclock to be stable +patch=1,EE,204BA9A4,extended,3C888889 //3CA3D70A +patch=1,EE,20465c10,extended,24120050 diff --git a/patches/SLES-53090_4D412DD3.pnach b/patches/SLES-53090_4D412DD3.pnach index 35dd61a8..f7622733 100644 --- a/patches/SLES-53090_4D412DD3.pnach +++ b/patches/SLES-53090_4D412DD3.pnach @@ -2,7 +2,7 @@ gametitle=Circuit Blasters (E)(SLES-53090) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53092_D536E4BA.pnach b/patches/SLES-53092_D536E4BA.pnach index 87e66a16..0753a1c0 100644 --- a/patches/SLES-53092_D536E4BA.pnach +++ b/patches/SLES-53092_D536E4BA.pnach @@ -2,5 +2,5 @@ gametitle=Motocross Mania 3 (PAL-M) SLES-53092 D536E4BA [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,003219EC,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-53094_7250EB43.pnach b/patches/SLES-53094_7250EB43.pnach index e7feee77..a0b031b6 100644 --- a/patches/SLES-53094_7250EB43.pnach +++ b/patches/SLES-53094_7250EB43.pnach @@ -2,7 +2,7 @@ gametitle=Rugby 2005 (E)(SLES-53094) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53099_53BB63A0.pnach b/patches/SLES-53099_53BB63A0.pnach new file mode 100644 index 00000000..237fff1b --- /dev/null +++ b/patches/SLES-53099_53BB63A0.pnach @@ -0,0 +1,16 @@ +gametitle=Pilot Down - Behind Enemy Lines (PAL-M) SLES-53099 53BB63A0 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,0041CAA8,word,3C023F1D +patch=1,EE,0021BD68,word,3C033F22 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0010281C,word,24110000 +patch=1,EE,00102820,word,24120050 +patch=1,EE,0010282C,word,24130001 \ No newline at end of file diff --git a/patches/SLES-53100_FE0030D6.pnach b/patches/SLES-53100_FE0030D6.pnach index 9c4d1cc1..bff1bff9 100644 --- a/patches/SLES-53100_FE0030D6.pnach +++ b/patches/SLES-53100_FE0030D6.pnach @@ -2,7 +2,7 @@ gametitle=Scooby-Doo! Unmasked (U)(SLUS-21091) and (E)(SLES-53100) //[Widescreen 16:9] //gsaspectratio=16:9 -//comment=Widescreen hack by Arapapa +//author=Arapapa //Widescreen hack 16:9 //Disabled as it causes SPS in the intro and the sewer levels (possibly more). diff --git a/patches/SLES-53106_D7AE31F4.pnach b/patches/SLES-53106_D7AE31F4.pnach index 0baba0e9..7b19033c 100644 --- a/patches/SLES-53106_D7AE31F4.pnach +++ b/patches/SLES-53106_D7AE31F4.pnach @@ -2,7 +2,7 @@ gametitle=MX vs ATV Unleashed [PAL] (SLES_531.06) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00111F70,word,3C033CAA //3C033C8E Zoom diff --git a/patches/SLES-53107_839E5E84.pnach b/patches/SLES-53107_839E5E84.pnach index c12a2ac4..0a016ea9 100644 --- a/patches/SLES-53107_839E5E84.pnach +++ b/patches/SLES-53107_839E5E84.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's Big Game Hunter 2005 Adventures (E)(SLES-53107) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53108_2B4BD0E0.pnach b/patches/SLES-53108_2B4BD0E0.pnach index cde3741a..96c5fffd 100644 --- a/patches/SLES-53108_2B4BD0E0.pnach +++ b/patches/SLES-53108_2B4BD0E0.pnach @@ -2,7 +2,7 @@ gametitle=American Chopper (E)(SLES-53108) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53124_821A0C40.pnach b/patches/SLES-53124_821A0C40.pnach index 000231ea..d665a7d9 100644 --- a/patches/SLES-53124_821A0C40.pnach +++ b/patches/SLES-53124_821A0C40.pnach @@ -3,11 +3,11 @@ gametitle=Project - Snowblind (PAL-M4) SLES-53124 821A0C40 (BO3GM.ELF) single-pl [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,20332BB8,extended,3C013FE3 //3C013FAA hor fov patch=1,EE,20332BBC,extended,34218E39 //3421AAAB hor fov [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,002D4D94,word,2C620000 //0062102B \ No newline at end of file diff --git a/patches/SLES-53124_CD9DAA4C.pnach b/patches/SLES-53124_CD9DAA4C.pnach index a28d8429..b7aaa899 100644 --- a/patches/SLES-53124_CD9DAA4C.pnach +++ b/patches/SLES-53124_CD9DAA4C.pnach @@ -3,6 +3,6 @@ gametitle=Project - Snowblind (PAL-M4) SLES-53124 CD9DAA4C (BO3NETGM.ELF) LAN/mu [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,20418700,extended,3C013FE3 //3C013FAA hor fov patch=1,EE,20418704,extended,34218E39 //3421AAAB hor fov \ No newline at end of file diff --git a/patches/SLES-53124_F00CA82B.pnach b/patches/SLES-53124_F00CA82B.pnach index 8933f9c1..107bf0cb 100644 --- a/patches/SLES-53124_F00CA82B.pnach +++ b/patches/SLES-53124_F00CA82B.pnach @@ -3,11 +3,11 @@ gametitle=Project - Snowblind (PAL-M4) (SLES-53124) F00CA82B [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,201D98A0,extended,3C013FE3 //3C013FAA hor fov patch=1,EE,201D98A4,extended,34218E39 //3421AAAB hor fov [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. //Used to activate crc 821A0C40 BO3GM.ELF for single player. \ No newline at end of file diff --git a/patches/SLES-53127_33E15E16.pnach b/patches/SLES-53127_33E15E16.pnach index 705d6e9c..2bdfb4b2 100644 --- a/patches/SLES-53127_33E15E16.pnach +++ b/patches/SLES-53127_33E15E16.pnach @@ -2,7 +2,7 @@ gametitle=Teenage Mutant Ninja Turtles - Mutant Melee (PAL-M5) (SLES-53127) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // // 16:9 patch=1,EE,0016c938,word,3c013fe3 // 3c013faa hor fov diff --git a/patches/SLES-53130_386645F6.pnach b/patches/SLES-53130_386645F6.pnach index 70cf38ab..10d03f53 100644 --- a/patches/SLES-53130_386645F6.pnach +++ b/patches/SLES-53130_386645F6.pnach @@ -2,7 +2,7 @@ gametitle=World Championship Poker (E)(SLES-53130) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53138_5E6AF003.pnach b/patches/SLES-53138_5E6AF003.pnach index 27b63046..69a7455a 100644 --- a/patches/SLES-53138_5E6AF003.pnach +++ b/patches/SLES-53138_5E6AF003.pnach @@ -2,7 +2,7 @@ gametitle=Outlaw Volleyball (PAL-M4) (SLES-53138) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0020b00c,word,0818ac24 // e7a00038 diff --git a/patches/SLES-53139_14274DC3.pnach b/patches/SLES-53139_14274DC3.pnach index 034d5c01..bb90edee 100644 --- a/patches/SLES-53139_14274DC3.pnach +++ b/patches/SLES-53139_14274DC3.pnach @@ -1,8 +1,9 @@ gametitle=Alien Hominid (PAL-M) SLES-53139 14274DC3 -[Mode 480p] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode 480p at startup +description=SDTV 480p mode at start. patch=1,EE,00199C34,word,24110000 patch=1,EE,00199C38,word,24120050 patch=1,EE,00199C44,word,24130001 \ No newline at end of file diff --git a/patches/SLES-53140_FCF4C7D8.pnach b/patches/SLES-53140_FCF4C7D8.pnach index cbbf5370..3a15601b 100644 --- a/patches/SLES-53140_FCF4C7D8.pnach +++ b/patches/SLES-53140_FCF4C7D8.pnach @@ -2,7 +2,7 @@ gametitle=Choro Q (PAL-E) (SLES-53140) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001f1d74,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-53141_DB49EA17.pnach b/patches/SLES-53141_DB49EA17.pnach index 1a7d957e..3adfb584 100644 --- a/patches/SLES-53141_DB49EA17.pnach +++ b/patches/SLES-53141_DB49EA17.pnach @@ -2,7 +2,7 @@ gametitle=X-treme Quads (E)(SLES-53141) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53142_7F762742.pnach b/patches/SLES-53142_7F762742.pnach index 57fce58c..aeff7e80 100644 --- a/patches/SLES-53142_7F762742.pnach +++ b/patches/SLES-53142_7F762742.pnach @@ -2,7 +2,7 @@ gametitle=Doomsday Racers (E)(SLES-53142) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53147_F67E4351.pnach b/patches/SLES-53147_F67E4351.pnach index 65efa92d..0073f99e 100644 --- a/patches/SLES-53147_F67E4351.pnach +++ b/patches/SLES-53147_F67E4351.pnach @@ -1,12 +1,20 @@ -gametitle=4 Fantásticos, Los [PAL-S] SLES-53147 F67E4351 +gametitle=4 Fantásticos, Los (PAL-S) SLES-53147 F67E4351 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Widescreen Hack 16:9 +description=Renders the game in 16:9 aspect ratio patch=1,EE,0031DA70,word,3FB8E369 -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,00177A70,word,1000000C //1462000C bne v1,v0,0x00177AA4 \ No newline at end of file +description=Might need EE Overclock at 180%. +patch=1,EE,00177A6C,word,24020000 //24020001 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0026ACEC,word,24110000 +patch=1,EE,0026ACF0,word,24120050 +patch=1,EE,0026ACFC,word,24130001 \ No newline at end of file diff --git a/patches/SLES-53148_1601F9D1.pnach b/patches/SLES-53148_1601F9D1.pnach index 2a24d3ab..78a25b25 100644 --- a/patches/SLES-53148_1601F9D1.pnach +++ b/patches/SLES-53148_1601F9D1.pnach @@ -2,7 +2,7 @@ gametitle=Fruitfall (E)(SLES-53148) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53155_99AD19EE.pnach b/patches/SLES-53155_99AD19EE.pnach index e016eae4..03d1da86 100644 --- a/patches/SLES-53155_99AD19EE.pnach +++ b/patches/SLES-53155_99AD19EE.pnach @@ -3,7 +3,7 @@ gametitle=Star Wars - Episode III - Revenge of the Sith (PAL-M3) (SLES-53155) 99 [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio // 16:9 patch=1,EE,004dbd44,word,3c023f40 // 3c023f80 hor fov patch=1,EE,0051bca0,word,3c013f40 // 00000000 renderfix @@ -20,9 +20,17 @@ patch=1,EE,0051bcf0,word,461e4a42 // 00000000 //patch=1,EE,0051bcac,word,4481f000 // 00000000 //patch=1,EE,0051bcf0,word,461e4a42 // 00000000 -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,001AF538,word,00000002 //00000002 patch=1,EE,E0010002,extended,001B4344 -patch=1,EE,201AF538,extended,00000001 \ No newline at end of file +patch=1,EE,201AF538,extended,00000001 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,00110704,word,24110000 +patch=1,EE,00110708,word,24120050 +patch=1,EE,00110714,word,24130001 \ No newline at end of file diff --git a/patches/SLES-53157_9A03A3DB.pnach b/patches/SLES-53157_9A03A3DB.pnach index 2c379328..ff7432d9 100644 --- a/patches/SLES-53157_9A03A3DB.pnach +++ b/patches/SLES-53157_9A03A3DB.pnach @@ -2,7 +2,7 @@ gametitle=Star Wars - Episode III - Revenge of the Sith (PAL-G) (SLES-53157) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,004dbd44,word,3c023f40 // 3c023f80 hor fov diff --git a/patches/SLES-53172_2F7573E5.pnach b/patches/SLES-53172_2F7573E5.pnach index c03cbb74..fcfadb5f 100644 --- a/patches/SLES-53172_2F7573E5.pnach +++ b/patches/SLES-53172_2F7573E5.pnach @@ -2,7 +2,7 @@ gametitle=Strike Force Bowling (E)(SLES-53172) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53175_126B46EB.pnach b/patches/SLES-53175_126B46EB.pnach index 72047b4f..aa45ca13 100644 --- a/patches/SLES-53175_126B46EB.pnach +++ b/patches/SLES-53175_126B46EB.pnach @@ -2,7 +2,7 @@ gametitle=Top Spin (E)(SLES-53175) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53186_FA02D9DB.pnach b/patches/SLES-53186_FA02D9DB.pnach index cc978704..9880f686 100644 --- a/patches/SLES-53186_FA02D9DB.pnach +++ b/patches/SLES-53186_FA02D9DB.pnach @@ -2,7 +2,7 @@ gametitle=International Super Karts (E)(SLES-53186) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53192_C02E2360.pnach b/patches/SLES-53192_C02E2360.pnach index ead7fe23..6ce32ec1 100644 --- a/patches/SLES-53192_C02E2360.pnach +++ b/patches/SLES-53192_C02E2360.pnach @@ -2,7 +2,7 @@ gametitle=Tim Burton's The Nightmare Before Christmas: Oogie's Revenge [PAL-M5] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00368C38,word,3F206D2F //3EF0A3D7 (Increases hor. axis) diff --git a/patches/SLES-53194_B2408080.pnach b/patches/SLES-53194_B2408080.pnach index 1a86dbf5..5b1d7670 100644 --- a/patches/SLES-53194_B2408080.pnach +++ b/patches/SLES-53194_B2408080.pnach @@ -2,7 +2,7 @@ gametitle=LEGO Star Wars: The Videogame [PAL] (SLES_531.94) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 (Memory hack) patch=1,EE,21F25E74,extended,3F100000 //3F400000 (Increases hor. axis) diff --git a/patches/SLES-53196_E3E8E893.pnach b/patches/SLES-53196_E3E8E893.pnach index e5f334ad..c270d1c4 100644 --- a/patches/SLES-53196_E3E8E893.pnach +++ b/patches/SLES-53196_E3E8E893.pnach @@ -1,6 +1,13 @@ gametitle=Destroy All Humans (PAL-M) SLES-53196 E3E8E893 -[50 FPS] +[Widescreen 16:9] +gsaspectratio=16:9 author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Enable native widescreen +patch=1,EE,003F0404,word,3FE38E38 //3FAAAAAA +patch=1,EE,003F0408,word,00000002 //00000000 + +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. patch=1,EE,003F048C,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-53199_A6786A05.pnach b/patches/SLES-53199_A6786A05.pnach index adf513ff..00e35a19 100644 --- a/patches/SLES-53199_A6786A05.pnach +++ b/patches/SLES-53199_A6786A05.pnach @@ -3,7 +3,7 @@ gametitle=25 to Life (PAL-E) SLES-53199 A6786A05 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,00319794,word,3c013f40 //X-Fov patch=1,EE,00319798,word,4481f000 patch=1,EE,003197bc,word,461e6b43 @@ -16,5 +16,5 @@ patch=1,EE,0026a120,word,0808b008 //00000000 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,005F787C,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-53200_92EA9EF0.pnach b/patches/SLES-53200_92EA9EF0.pnach index 1132259d..aaa71159 100644 --- a/patches/SLES-53200_92EA9EF0.pnach +++ b/patches/SLES-53200_92EA9EF0.pnach @@ -2,7 +2,7 @@ gametitle=DragonBall Z - Budokai Tenkaichi (PAL-M6) (SLES-53200) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by sergx12/ElHecht +author=sergx12/ElHecht // 16:9 menu patch=1,EE,0020b2d4,word,3F600000 // 3f490fda sky/background fix diff --git a/patches/SLES-53203_C493D552.pnach b/patches/SLES-53203_C493D552.pnach new file mode 100644 index 00000000..920644b9 --- /dev/null +++ b/patches/SLES-53203_C493D552.pnach @@ -0,0 +1,19 @@ +gametitle=The Punisher (PAL-R) SLES-53203 C493D552 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +//Ported from SLES-53049 by sergx12 +patch=1,EE,00192A6C,word,3C013F40 //00000000 X-FoV +patch=1,EE,00192A78,word,4481F000 //00000000 +patch=1,EE,00192CE4,word,461EA783 //00000000 +patch=1,EE,00192D40,word,461E0083 //46140083 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,001A0BE4,word,3C050000 +patch=1,EE,001A0BEC,word,3C060050 +patch=1,EE,001A0BF4,word,3C070001 \ No newline at end of file diff --git a/patches/SLES-53219_0FECA8E8.pnach b/patches/SLES-53219_0FECA8E8.pnach index 4c4ec49a..31b4c13b 100644 --- a/patches/SLES-53219_0FECA8E8.pnach +++ b/patches/SLES-53219_0FECA8E8.pnach @@ -2,7 +2,7 @@ gametitle=Winx Club (PAL-M5) (SLES-53219) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001b2200,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-53225_D3051E54.pnach b/patches/SLES-53225_D3051E54.pnach index a72fe967..ad0bdbd3 100644 --- a/patches/SLES-53225_D3051E54.pnach +++ b/patches/SLES-53225_D3051E54.pnach @@ -1,20 +1,36 @@ -gametitle=Madagascar (PAL-E) SLES-53225 D3051E54 +gametitle=DreamWorks Madagascar (PAL-E) SLES-53225 D3051E54 -[50 FPS] +[Widescreen 16:9] +gsaspectratio=16:9 +author=Arapapa, ported by PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,0014A0E0,word,3C013F1F +patch=1,EE,00288500,word,08045CA0 +patch=1,EE,00117280,word,46010043 +patch=1,EE,00117284,word,3C013F40 +patch=1,EE,00117288,word,4481F000 +patch=1,EE,0011728C,word,461E1082 +patch=1,EE,00117290,word,080A2141 + +[Remove Blackbars] +author=PeterDelta +description=Removes black bars in cutscenes +patch=1,EE,00C77F3C,word,00000000 + +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock (130%). patch=1,EE,004B0604,byte,01 //02 patch=1,EE,00346D24,byte,64 //32 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode at startup -patch=1,EE,002F8AE0,word,34050052 +description=SDTV 480p mode at start. +patch=1,EE,002F8AE0,word,34050050 patch=1,EE,002F8AE4,word,24030002 patch=1,EE,002F8AE8,word,0000000C patch=1,EE,002F8AEC,word,03E00008 -patch=1,EE,004DF4C8,word,02051290 -patch=1,EE,004DF4F0,word,02051290 patch=1,EE,00346D24,byte,38 patch=1,EE,E0010001,extended,004B0604 patch=1,EE,00346D24,extended,76 \ No newline at end of file diff --git a/patches/SLES-53242_7B94480C.pnach b/patches/SLES-53242_7B94480C.pnach deleted file mode 100644 index faaf8daf..00000000 --- a/patches/SLES-53242_7B94480C.pnach +++ /dev/null @@ -1,10 +0,0 @@ -gametitle=Shadow the Hedgehog SLES_532.42 - -[Widescreen 16:9] -gsaspectratio=16:9 -comment=Widescreen Hack -//Ported to PAL by Nik1895 -patch=1,EE,207D1088,extended,3F199999 // 3F9DA591 chaos control fov -patch=1,EE,20847E98,extended,3FAAAAAA // 3F800000 main fov - - diff --git a/patches/SLES-53246_D3051E54.pnach b/patches/SLES-53246_D3051E54.pnach index 585fd284..f2d75f5a 100644 --- a/patches/SLES-53246_D3051E54.pnach +++ b/patches/SLES-53246_D3051E54.pnach @@ -1,20 +1,36 @@ -gametitle=Madagascar (PAL-S) SLES-53246 D3051E54 +gametitle=DreamWorks Madagascar (PAL-S) SLES-53246 D3051E54 -[50 FPS] +[Widescreen 16:9] +gsaspectratio=16:9 +author=Arapapa, ported by PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,0014A0E0,word,3C013F1F +patch=1,EE,00288500,word,08045CA0 +patch=1,EE,00117280,word,46010043 +patch=1,EE,00117284,word,3C013F40 +patch=1,EE,00117288,word,4481F000 +patch=1,EE,0011728C,word,461E1082 +patch=1,EE,00117290,word,080A2141 + +[Remove Blackbars] +author=PeterDelta +description=Removes black bars in cutscenes +patch=1,EE,00C77F3C,word,00000000 + +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock (130%). patch=1,EE,004B0604,byte,01 //02 patch=1,EE,00346D24,byte,64 //32 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode at startup -patch=1,EE,002F8AE0,word,34050052 +description=SDTV 480p mode at start. +patch=1,EE,002F8AE0,word,34050050 patch=1,EE,002F8AE4,word,24030002 patch=1,EE,002F8AE8,word,0000000C patch=1,EE,002F8AEC,word,03E00008 -patch=1,EE,004DF4C8,word,02051290 -patch=1,EE,004DF4F0,word,02051290 patch=1,EE,00346D24,byte,38 patch=1,EE,E0010001,extended,004B0604 patch=1,EE,00346D24,extended,76 \ No newline at end of file diff --git a/patches/SLES-53280_52DEB87B.pnach b/patches/SLES-53280_52DEB87B.pnach index cfb92254..d7937ed9 100644 --- a/patches/SLES-53280_52DEB87B.pnach +++ b/patches/SLES-53280_52DEB87B.pnach @@ -1,4 +1,4 @@ -gametitle=7 Sins (Pal-M3)(SLES-53280) +gametitle=7 Sins PAL-M SLES-53280 52DEB87B [Widescreen 16:9] gsaspectratio=16:9 @@ -23,3 +23,13 @@ patch=1,EE,002fd714,word,3c013f40 //00000000 patch=1,EE,002fd718,word,4481f000 //00000000 patch=1,EE,002fd71c,word,461e0002 //00000000 patch=1,EE,002fd720,word,08089aba //00000000 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00428390,word,24020002 //24020001 + +[NTSC Mode] +author=Gabominated +description=NTSC mode at start. +patch=1,EE,001008f4,word,240201c0 //24020200 \ No newline at end of file diff --git a/patches/SLES-53287_4C4D7873.pnach b/patches/SLES-53287_4C4D7873.pnach new file mode 100644 index 00000000..a1315313 --- /dev/null +++ b/patches/SLES-53287_4C4D7873.pnach @@ -0,0 +1,6 @@ +gametitle=Tom Clancy's Splinter Cell - Chaos Theory (PAL-M) SLES-53287 4C4D7873 +//Corresponds to the main crc to activate the secondary crc DDAEB7A6 called SC3_OFF.ELF + +[480p Mode] +author=PeterDelta +description=SDTV 480p mode at start. \ No newline at end of file diff --git a/patches/SLES-53287_DDAEB7A6.pnach b/patches/SLES-53287_DDAEB7A6.pnach new file mode 100644 index 00000000..b5a22970 --- /dev/null +++ b/patches/SLES-53287_DDAEB7A6.pnach @@ -0,0 +1,9 @@ +gametitle=Tom Clancy's Splinter Cell - Chaos Theory (PAL-M) SLES-53287 4C4D7873 (DDAEB7A6 SC3_OFF.ELF) + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,00110014,word,24110000 +patch=1,EE,00110018,word,24120050 +patch=1,EE,00110024,word,24130001 \ No newline at end of file diff --git a/patches/SLES-53297_211736A2.pnach b/patches/SLES-53297_211736A2.pnach index 2b98f840..733e99bb 100644 --- a/patches/SLES-53297_211736A2.pnach +++ b/patches/SLES-53297_211736A2.pnach @@ -2,7 +2,7 @@ gametitle=7 Sins (E)(SLES-53297) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLES-53299_3524C3B8.pnach b/patches/SLES-53299_3524C3B8.pnach new file mode 100644 index 00000000..1233fccb --- /dev/null +++ b/patches/SLES-53299_3524C3B8.pnach @@ -0,0 +1,18 @@ +gametitle=Delta Force - Black Hawk Down (PAL-M) SLES-53299 3524C3B8 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=Arapapa +description=Widescreen fix +patch=1,EE,0043A3E0,word,3FE38E39 //3FAAAAAB Y-Fov +patch=1,EE,001A8744,word,080C5798 //Zoom Fix +patch=1,EE,00315E60,word,3C013F52 +patch=1,EE,00315E64,word,4481F000 +patch=1,EE,00315E68,word,461E6303 +patch=1,EE,00315E6C,word,E7AC0000 +patch=1,EE,00315E70,word,0806A1D2 + +[50 FPS] +author=PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,001C52C0,word,1460000A \ No newline at end of file diff --git a/patches/SLES-53318_3EB41444.pnach b/patches/SLES-53318_3EB41444.pnach new file mode 100644 index 00000000..d2035f25 --- /dev/null +++ b/patches/SLES-53318_3EB41444.pnach @@ -0,0 +1,6 @@ +gametitle=Crazy Golf - World Tour PAL-M SLES-53318 3EB41444 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock (180%). +patch=1,EE,0015A28C,word,14600009 //10600009 \ No newline at end of file diff --git a/patches/SLES-53320_22BE5057.pnach b/patches/SLES-53320_22BE5057.pnach index f2fea38d..7943ede4 100644 --- a/patches/SLES-53320_22BE5057.pnach +++ b/patches/SLES-53320_22BE5057.pnach @@ -2,7 +2,7 @@ gametitle=SCAR - Squadra Corse Alfa Romeo (PAL-M5) (SLES-53320) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0021694c,word,081afd5a // e7a00048 diff --git a/patches/SLES-53338_8B1353FA.pnach b/patches/SLES-53338_8B1353FA.pnach index 39e35d08..16146083 100644 --- a/patches/SLES-53338_8B1353FA.pnach +++ b/patches/SLES-53338_8B1353FA.pnach @@ -2,7 +2,7 @@ gametitle=Victorious Boxers 2: Fighting Spirit [PAL] (SLES_533.38) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //X-FOV (In Squared Ring) patch=1,EE,001939DC,word,3C063FAB //3C063F80 diff --git a/patches/SLES-53340_D9A3B30E.pnach b/patches/SLES-53340_D9A3B30E.pnach index 67a387f1..36a5b132 100644 --- a/patches/SLES-53340_D9A3B30E.pnach +++ b/patches/SLES-53340_D9A3B30E.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 5 (SLES-53340) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Machiavel Dhy'v (converted from nemesis2000 ntsc-u) +author=Machiavel Dhy'v (converted from nemesis2000 ntsc-u) patch=1,EE,00146cc8,word,3c0243d6 patch=1,EE,0018249c,word,3c023f2b patch=1,EE,00146a14,word,3c023e40 //cutscenes zoom (fixes Battle of Bai Di Castle - Wu crash) diff --git a/patches/SLES-53341_55AC5DA3.pnach b/patches/SLES-53341_55AC5DA3.pnach index 5770950b..fa68dba0 100644 --- a/patches/SLES-53341_55AC5DA3.pnach +++ b/patches/SLES-53341_55AC5DA3.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 5 (PAL-G) (SLES-53341) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // // 16:9 patch=1,EE,00146c18,word,3c0243b4 // 3c0243a0 hor fov value1 diff --git a/patches/SLES-53343_F4283A99.pnach b/patches/SLES-53343_F4283A99.pnach index 3576ca40..2ee66147 100644 --- a/patches/SLES-53343_F4283A99.pnach +++ b/patches/SLES-53343_F4283A99.pnach @@ -2,7 +2,7 @@ gametitle=City Soccer Challenge (E)(SLES-53343) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53350_4A198252.pnach b/patches/SLES-53350_4A198252.pnach index 1c19a9b6..b6617216 100644 --- a/patches/SLES-53350_4A198252.pnach +++ b/patches/SLES-53350_4A198252.pnach @@ -2,5 +2,5 @@ gametitle=Sonic Gems Collection (PAL-M) SLES-53350 4A198252 Main CRC [Sonic CD 60 FPS] author=PeterDelta -comment=Forces progressive scan mode when starting Sonic CD +description=SDTV 480p mode when starting Sonic CD //Used to enable SLES-53350_82DB1E89.pnach elf: S1.DAT Sonic CD \ No newline at end of file diff --git a/patches/SLES-53350_82DB1E89.pnach b/patches/SLES-53350_82DB1E89.pnach index 67b6135a..9ec373c3 100644 --- a/patches/SLES-53350_82DB1E89.pnach +++ b/patches/SLES-53350_82DB1E89.pnach @@ -1,9 +1,9 @@ gametitle=Sonic Gems Collection (PAL-M) SLES-53350 82DB1E89 elf: S1.DAT Sonic CD [Sonic CD 60 FPS] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode when starting Sonic CD +description=SDTV 480p mode when starting Sonic CD patch=1,EE,001025DC,word,3C050000 -patch=1,EE,001025E4,word,3C060052 -patch=1,EE,001025EC,word,3C070001 -patch=1,EE,1054F918,extended,01E0 \ No newline at end of file +patch=1,EE,001025E4,word,3C060050 +patch=1,EE,001025EC,word,3C070001 \ No newline at end of file diff --git a/patches/SLES-53353_12D57B4F.pnach b/patches/SLES-53353_12D57B4F.pnach index 5db00521..4dc85f28 100644 --- a/patches/SLES-53353_12D57B4F.pnach +++ b/patches/SLES-53353_12D57B4F.pnach @@ -2,7 +2,7 @@ gametitle=Shaman King: Power of Spirit [PAL] (SLES_533.53) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001DCFD4,word,3C023FAB //3C023F80 (Increases hor. axis) diff --git a/patches/SLES-53356_29CA91F1.pnach b/patches/SLES-53356_29CA91F1.pnach index 6aa5ce9f..bd46f710 100644 --- a/patches/SLES-53356_29CA91F1.pnach +++ b/patches/SLES-53356_29CA91F1.pnach @@ -2,7 +2,7 @@ gametitle=Colosseum: Road to Freedom [PAL] (SLES_533.56) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00474D20,word,3C013F40 //3C013F80 (Increases hor. axis) diff --git a/patches/SLES-53360_12117804.pnach b/patches/SLES-53360_12117804.pnach index ef1a4574..cecbbd74 100644 --- a/patches/SLES-53360_12117804.pnach +++ b/patches/SLES-53360_12117804.pnach @@ -1,4 +1,4 @@ -gametitle=Alarm for Cobra 11 - Vol. 2 - Hot Pursuit(E)(SLES-53360) +gametitle=Alarm for Cobra 11 Vol.2 - Hot Pursuit PAL-E SLES-53360 12117804 [Widescreen 16:9] gsaspectratio=16:9 @@ -10,4 +10,7 @@ comment=Widescreen hack conversion //X-Fov patch=1,EE,003934c0,word,3c07bf55 //3c07bf00 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00136430,word,24020000 //24020001 \ No newline at end of file diff --git a/patches/SLES-53366_54EF429A.pnach b/patches/SLES-53366_54EF429A.pnach index 8aac5799..6e7cf9bd 100644 --- a/patches/SLES-53366_54EF429A.pnach +++ b/patches/SLES-53366_54EF429A.pnach @@ -2,7 +2,7 @@ gametitle=Killer 7 (PAL-M3) (SLES-53366) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00281450,word,3c023fe3 // 3c023faa hor fov diff --git a/patches/SLES-53368_1D8EE3CF.pnach b/patches/SLES-53368_1D8EE3CF.pnach index 45064c02..4989dd05 100644 --- a/patches/SLES-53368_1D8EE3CF.pnach +++ b/patches/SLES-53368_1D8EE3CF.pnach @@ -2,7 +2,7 @@ gametitle=Splatter Master (E)(SLES-53368) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53386_A3ED2B3D.pnach b/patches/SLES-53386_A3ED2B3D.pnach index f5c2f2ce..a4e5bb77 100644 --- a/patches/SLES-53386_A3ED2B3D.pnach +++ b/patches/SLES-53386_A3ED2B3D.pnach @@ -2,7 +2,7 @@ gametitle=Charlie and the Chocolate Factory [PAL](SLES-53386) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas and Arapapa +author=El_Patas and Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53390_FDD12792.pnach b/patches/SLES-53390_FDD12792.pnach index 9b79074c..f2fe86b6 100644 --- a/patches/SLES-53390_FDD12792.pnach +++ b/patches/SLES-53390_FDD12792.pnach @@ -18,7 +18,7 @@ gametitle=Ultimate Spider-Man (E)(SLES-53390) [50 FPS] author=PeterDelta and asasega -description=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00311F18,word,00000000 patch=1,EE,0069FE20,word,00000001 patch=1,EE,E0020001,extended,01C83460 diff --git a/patches/SLES-53391_FDD12792.pnach b/patches/SLES-53391_FDD12792.pnach index be43a659..0936d982 100644 --- a/patches/SLES-53391_FDD12792.pnach +++ b/patches/SLES-53391_FDD12792.pnach @@ -18,7 +18,7 @@ gametitle=Ultimate Spider-Man (E)(SLES-53391) [50 FPS] author=PeterDelta and asasega -description=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00311F18,word,00000000 patch=1,EE,0069FE20,word,00000001 patch=1,EE,E0020001,extended,01C83460 diff --git a/patches/SLES-53398_A2316D03.pnach b/patches/SLES-53398_A2316D03.pnach index 8ca3e76f..d7c18092 100644 --- a/patches/SLES-53398_A2316D03.pnach +++ b/patches/SLES-53398_A2316D03.pnach @@ -2,7 +2,7 @@ gametitle=Zombie Zone (PAL-E) (SLES-53398) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,001d0104,word,3c013f40 // 3c013f80 @@ -10,7 +10,7 @@ patch=1,EE,001d0104,word,3c013f40 // 3c013f80 [No-Interlacing] gsinterlacemode=1 -comment=Disable interlacing hack by ElHecht +author=ElHecht // disable interlacing patch=1,EE,001c83b0,word,24040000 // 8f84aed8 diff --git a/patches/SLES-53399_A5DA4B36.pnach b/patches/SLES-53399_A5DA4B36.pnach index 21ecb9c2..b1dfd1ba 100644 --- a/patches/SLES-53399_A5DA4B36.pnach +++ b/patches/SLES-53399_A5DA4B36.pnach @@ -2,7 +2,7 @@ gametitle=Yakuza Fury (E)(SLES-53399) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53405_2CEFF37C.pnach b/patches/SLES-53405_2CEFF37C.pnach index 0cb55570..e1a4d1da 100644 --- a/patches/SLES-53405_2CEFF37C.pnach +++ b/patches/SLES-53405_2CEFF37C.pnach @@ -2,7 +2,7 @@ gametitle=Digimon World 4 (PAL-M4) (SLES-53405) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001b6de8,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-53407_BA568F6B.pnach b/patches/SLES-53407_BA568F6B.pnach index e886bf01..3a0fff65 100644 --- a/patches/SLES-53407_BA568F6B.pnach +++ b/patches/SLES-53407_BA568F6B.pnach @@ -2,7 +2,7 @@ gametitle=Street Boyz (E)(SLES-53407) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53408_B0621C55.pnach b/patches/SLES-53408_B0621C55.pnach index c61be4a6..226d928f 100644 --- a/patches/SLES-53408_B0621C55.pnach +++ b/patches/SLES-53408_B0621C55.pnach @@ -2,7 +2,7 @@ gametitle=Fighting Angels [PAL] (SLES_534.08) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0019135c,word,3c013f40 //00000000 (Increases hor. axis) diff --git a/patches/SLES-53411_09B4F5F9.pnach b/patches/SLES-53411_09B4F5F9.pnach index 11d89aae..842dc0cb 100644 --- a/patches/SLES-53411_09B4F5F9.pnach +++ b/patches/SLES-53411_09B4F5F9.pnach @@ -2,7 +2,7 @@ gametitle=Kuon (PAL-M3) (SLES-53411) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // // 16:9 patch=1,EE,001382c4,word,3c023f19 // 3c023f4c hor fov diff --git a/patches/SLES-53411_B3589D67.pnach b/patches/SLES-53411_B3589D67.pnach new file mode 100644 index 00000000..49ddf343 --- /dev/null +++ b/patches/SLES-53411_B3589D67.pnach @@ -0,0 +1,9 @@ +gametitle=Kuon (PAL-M3) SLES-53411 B3589D67 (Spanish Fan Translation) + +[Widescreen 16:9] +gsaspectratio=16:9 +author=ElHecht + +// 16:9 +patch=1,EE,001382c4,word,3c023f19 // 3c023f4c hor fov +patch=1,EE,001382c8,word,3443999a // 3443999a hor fov \ No newline at end of file diff --git a/patches/SLES-53413_05855832.pnach b/patches/SLES-53413_05855832.pnach index dd5eec41..19b163be 100644 --- a/patches/SLES-53413_05855832.pnach +++ b/patches/SLES-53413_05855832.pnach @@ -2,7 +2,7 @@ gametitle=Rebel Raiders - Operation Nighthawk (E)(SLES-53413) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53414_BBF8C3D6.pnach b/patches/SLES-53414_BBF8C3D6.pnach index 53c9d125..c5af0dfa 100644 --- a/patches/SLES-53414_BBF8C3D6.pnach +++ b/patches/SLES-53414_BBF8C3D6.pnach @@ -3,7 +3,7 @@ gametitle=Echo Night: Beyond [PAL] (SLES_534.14) BBF8C3D6 [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas and Arapapa -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio //Force turn on Internal Widescreen //01 00 00 00 00 00 00 3F patch=1,EE,202b4001,byte,00000001 @@ -12,11 +12,11 @@ patch=1,EE,00146EA4,word,3C023F1F //3C023F00 Zoom [60 FPS] author=PeterDelta -comment=Select 60 Hz to unlock fps. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. Select 60 Hz patch=1,EE,E001001E,extended,0028A348 patch=1,EE,0028A348,extended,0000003C [Performance Fix] author=PeterDelta -comment=Remove flashlight shadows improving performance. +description=Remove flashlight shadows improving performance. patch=1,EE,001471C4,word,3C020000 //3C023F80 \ No newline at end of file diff --git a/patches/SLES-53414_E078914A.pnach b/patches/SLES-53414_E078914A.pnach index 1d372927..312cdadf 100644 --- a/patches/SLES-53414_E078914A.pnach +++ b/patches/SLES-53414_E078914A.pnach @@ -3,17 +3,17 @@ gametitle=Echo Night - Beyond (PAL-E) SLES-53414 E078914A (spanish 1.0.1) [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas and Arapapa -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,002b4001,byte,01 //Force turn on Internal Widescreen patch=1,EE,00146EA4,word,3C023F1F //3C023F00 Zoom [60 FPS] author=PeterDelta -comment=Select 60 Hz to unlock fps. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. Select 60 Hz patch=1,EE,E001001E,extended,0028A348 patch=1,EE,0028A348,extended,0000003C [Performance Fix] author=PeterDelta -comment=Remove flashlight shadows improving performance. +description=Remove flashlight shadows improving performance. patch=1,EE,001471C4,word,3C020000 //3C023F80 \ No newline at end of file diff --git a/patches/SLES-53416_DFB26142.pnach b/patches/SLES-53416_DFB26142.pnach index 434feb4c..f5d3384f 100644 --- a/patches/SLES-53416_DFB26142.pnach +++ b/patches/SLES-53416_DFB26142.pnach @@ -2,7 +2,7 @@ gametitle=Call of Duty 2 - Big Red One (PAL-M3) SLES-53416 DFB26142 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,004080A0,extended,00000002 patch=1,EE,E0010001,extended,004D8DB0 patch=1,EE,204080A0,extended,00000001 \ No newline at end of file diff --git a/patches/SLES-53430_6B3D50A5.pnach b/patches/SLES-53430_6B3D50A5.pnach index 7ca40f39..b8431987 100644 --- a/patches/SLES-53430_6B3D50A5.pnach +++ b/patches/SLES-53430_6B3D50A5.pnach @@ -2,5 +2,5 @@ gametitle=Incredible Hulk, The - Ultimate Destruction (PAL-M) SLES-53430 6B3D50A [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,0046F3D0,word,24020001 //24020002 \ No newline at end of file diff --git a/patches/SLES-53439_E2FF6D3D.pnach b/patches/SLES-53439_E2FF6D3D.pnach index de733259..767e4ae9 100644 --- a/patches/SLES-53439_E2FF6D3D.pnach +++ b/patches/SLES-53439_E2FF6D3D.pnach @@ -1,17 +1,29 @@ -gametitle=Crash Tag Team Racing (E)(SLES-53439) +gametitle=Crash Tag Team Racing (PAL-M) (SLES-53439) E2FF6D3D [Widescreen 16:9] gsaspectratio=16:9 -author=Arapapa -comment=Patches the game to run at 16:9 Widescreen Aspect Ratio. -//X-FOV -patch=1,EE,002DA664,word,3C013FAB //3c013f80 -//Render Fix -patch=1,EE,002DA688,word,3C013FAB //3c013f80 +author=Arapapa, nemesis2000, PeterDelta +description=Patches the game to run at 16:9 Widescreen Aspect Ratio. +patch=1,EE,002DA664,word,3C013FAB //3C013F80 X-FOV +patch=1,EE,002DA688,word,3C013FAB //3C013F80 Render Fix +patch=1,EE,002DAF90,word,00000000 //46000346 turbo fix +patch=1,EE,002DAF94,word,00000000 //4600A306 +patch=1,EE,002DAF98,word,00000000 //0040F809 - -[50 FPS] -//02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 C1 03 00 00 01 00 00 00 01 00 00 00 30 95 57 00 +[50/60 FPS] author=PeterDelta -description=Patches the game to run at 50 FPS (Might need 180% EE Overclock to be stable). +description=Might need EE Overclock at 180%. patch=1,EE,007B3ADC,word,00000001 //00000002 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0049529C,word,24110000 +patch=1,EE,004952A0,word,24120050 +patch=1,EE,004952AC,word,24130001 + +[Unlock PSP Exclusive Content] +author=CRASHARKI +description=Unlocks the PSP Exclusive Content (Cars, Battle Arenas and Co-op mode). +patch=1,EE,209DFB8C,byte,1 //0 \ No newline at end of file diff --git a/patches/SLES-53441_F8E600FC.pnach b/patches/SLES-53441_F8E600FC.pnach index cd96660c..ca3a153c 100644 --- a/patches/SLES-53441_F8E600FC.pnach +++ b/patches/SLES-53441_F8E600FC.pnach @@ -2,7 +2,7 @@ gametitle=Heroes of the Pacific (E)(SLES-53441) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -21,10 +21,13 @@ patch=1,EE,00148778,word,0806ede4 // 00000000 author=Gabominated description=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. patch=1,EE,201CADD4,extended,10000007 //10400007 fps -patch=1,EE,201F51AC,extended,0C03FF90 //0C0D0B10 jal 0x00342C40 -patch=1,EE,200FFE44,extended,44816000 //00000000 -patch=1,EE,200FFE48,extended,080D0B10 //00000000 -patch=1,EE,E001d70a,extended,0067F2B8 //condition 50herz -patch=1,EE,200FFE40,extended,3C013ca3 //00000000 speed 50 -patch=1,EE,E0018889,extended,0067F2B8 //condition 60herz -patch=1,EE,200FFE40,extended,3C013C88 //00000000 speed 60 \ No newline at end of file +patch=1,EE,E0043D23,extended,0067F2BA //condition 50herz +patch=1,EE,1067F2B2,extended,00003CA3 +patch=1,EE,1067F2B6,extended,00003CA3 +patch=1,EE,1067F2BA,extended,00003CA3 +patch=1,EE,1067F2BE,extended,00003CA3 +patch=1,EE,E0043D08,extended,0067F2BA //condition 60herz +patch=1,EE,1067F2B2,extended,00003C88 +patch=1,EE,1067F2B6,extended,00003C88 +patch=1,EE,1067F2BA,extended,00003C88 +patch=1,EE,1067F2BE,extended,00003C88 \ No newline at end of file diff --git a/patches/SLES-53443_FA3C1346.pnach b/patches/SLES-53443_FA3C1346.pnach index e78c935c..301b6ead 100644 --- a/patches/SLES-53443_FA3C1346.pnach +++ b/patches/SLES-53443_FA3C1346.pnach @@ -1,16 +1,15 @@ gametitle=Warriors, The (PAL-M) SLES-53443 FA3C1346 -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00596D70,byte,01 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps -patch=1,EE,0043CCA0,word,34050052 +description=SDTV 480p mode at start. +patch=1,EE,0043CCA0,word,34050050 patch=1,EE,0043CCA4,word,24030002 patch=1,EE,0043CCA8,word,0000000C -patch=1,EE,0043CCAC,word,03E00008 -patch=1,EE,0070F978,word,02058290 -patch=1,EE,0070F9A0,word,02058290 \ No newline at end of file +patch=1,EE,0043CCAC,word,03E00008 \ No newline at end of file diff --git a/patches/SLES-53444_349AA2CB.pnach b/patches/SLES-53444_349AA2CB.pnach index 2cb3dbde..0dcd3f46 100644 --- a/patches/SLES-53444_349AA2CB.pnach +++ b/patches/SLES-53444_349AA2CB.pnach @@ -2,7 +2,7 @@ gametitle=Panzer Elite Action - Fields of Glory (PAL-M5) (SLES-53444) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,003d2ce4,word,3c0143c0 // 00000000 patch=1,EE,003d2ce8,word,44810800 // c4a10008 diff --git a/patches/SLES-53452_881B4780.pnach b/patches/SLES-53452_881B4780.pnach index b3f6bdf0..b7ad86a5 100644 --- a/patches/SLES-53452_881B4780.pnach +++ b/patches/SLES-53452_881B4780.pnach @@ -2,7 +2,7 @@ gametitle=Myth Makers - Trixie in Toyland (E)(SLES-53452) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53459_F73AC0A0.pnach b/patches/SLES-53459_F73AC0A0.pnach index feb932bb..dcfa2a7a 100644 --- a/patches/SLES-53459_F73AC0A0.pnach +++ b/patches/SLES-53459_F73AC0A0.pnach @@ -8,5 +8,5 @@ patch=1,EE,0056768c,word,3c023f40 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,001CC7A8,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-53471_04246737.pnach b/patches/SLES-53471_04246737.pnach index b329435c..3b655f00 100644 --- a/patches/SLES-53471_04246737.pnach +++ b/patches/SLES-53471_04246737.pnach @@ -2,7 +2,7 @@ gametitle=LMA Manager 2006 (E)(SLES-53471) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53474_F3AE68FC.pnach b/patches/SLES-53474_F3AE68FC.pnach index 86c00bb3..b85f4c89 100644 --- a/patches/SLES-53474_F3AE68FC.pnach +++ b/patches/SLES-53474_F3AE68FC.pnach @@ -1,14 +1,19 @@ -gametitle=The Incredibles: Rise of the Underminer [PAL-M3] (SLES_534.74) +gametitle=The Incredibles - Rise of the Underminer (PAL-M) SLES-53474 F3AE68FC [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas - -//Gameplay 16:9 +author=El_Patas +description=Renders the game in 16:9 aspect ratio patch=1,EE,00218F24,word,3C023F1C //3C023F00 Zoom patch=1,EE,00218F50,word,3C023F10 //3C023F40 Y-FOV - //Hang fix by Prafull (Only needed for pcsx2, is not needed for the PS2) //patch=1,EE,001110E0,word,00000000 //40036000 - +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,00106C20,word,34050050 +patch=1,EE,00106C24,word,24030002 +patch=1,EE,00106C28,word,0000000C +patch=1,EE,00106C2C,word,03E00008 \ No newline at end of file diff --git a/patches/SLES-53480_8AF9A6A5.pnach b/patches/SLES-53480_8AF9A6A5.pnach index 4ec90888..488a7193 100644 --- a/patches/SLES-53480_8AF9A6A5.pnach +++ b/patches/SLES-53480_8AF9A6A5.pnach @@ -2,7 +2,7 @@ gametitle=Harvest Moon - A Wonderful Life - Special Edition (PAL-E) (SLES-53480) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0043c8ec,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-53483_49F78F24.pnach b/patches/SLES-53483_49F78F24.pnach index 32473628..db50c5df 100644 --- a/patches/SLES-53483_49F78F24.pnach +++ b/patches/SLES-53483_49F78F24.pnach @@ -1,9 +1,12 @@ -gametitle=Magna Carta - Tears of Blood (PAL-E) (SLES-53483) +gametitle=Magna Carta - Tears of Blood PAL-E SLES-53483 49F78F24 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,002bd698,word,3c023f40 // 3c023f80 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,001C6884,word,28410001 //28410002 \ No newline at end of file diff --git a/patches/SLES-53485_6C694919.pnach b/patches/SLES-53485_6C694919.pnach index 71c62bb5..a26035c8 100644 --- a/patches/SLES-53485_6C694919.pnach +++ b/patches/SLES-53485_6C694919.pnach @@ -2,7 +2,7 @@ gametitle=Car Racing Challenge (E)(SLES-53485) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53490_38E5C48B.pnach b/patches/SLES-53490_38E5C48B.pnach index 895ddbd5..4b642375 100644 --- a/patches/SLES-53490_38E5C48B.pnach +++ b/patches/SLES-53490_38E5C48B.pnach @@ -2,7 +2,7 @@ gametitle=Outlaw Tennis (PAL-M5) (SLES-53490) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by sergx12 +author=sergx12 //Ported to PAL (ElHecht) // 16:9 diff --git a/patches/SLES-53492_4C380F8B.pnach b/patches/SLES-53492_4C380F8B.pnach index f761d6c9..70d8f5c3 100644 --- a/patches/SLES-53492_4C380F8B.pnach +++ b/patches/SLES-53492_4C380F8B.pnach @@ -1,18 +1,21 @@ -gametitle=Total Overdose (E)(SLES-53492) +gametitle=Total Overdose (PAL-M) (SLES-53492) 4C380F8B [Widescreen 16:9] gsaspectratio=16:9 -author=koozka -comment=Widescreen Hack - -//00 00 80 3F 83 F9 22 3F DB 0F C9 3F 00 00 00 BF +author=Arapapa +description=Renders the game in 16:9 aspect ratio patch=1,EE,20692A2C,word,3F47AE14 // Zoom - -//00 00 80 3F 00 00 00 00 00 00 00 00 2F 00 00 00 patch=1,EE,206C64C4,word,3F400000 // Vert fov +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,01B71FC0,word,00000001 //00000002 -[50 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,01B71FC0,word,00000001 //00000002 \ No newline at end of file +description=SDTV 480p mode at start. +patch=1,EE,005F5F14,word,24110000 +patch=1,EE,005F5F18,word,24120050 +patch=1,EE,005F5F24,word,24130001 \ No newline at end of file diff --git a/patches/SLES-53494_CBDD9686.pnach b/patches/SLES-53494_CBDD9686.pnach index b05530bb..4628961e 100644 --- a/patches/SLES-53494_CBDD9686.pnach +++ b/patches/SLES-53494_CBDD9686.pnach @@ -2,7 +2,7 @@ gametitle=SpongeBob SquarePants - Lights, Camera, Pants! (E)(SLES-53494) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-53501_02F4B541.pnach b/patches/SLES-53501_02F4B541.pnach index f35042d7..ad8b9b13 100644 --- a/patches/SLES-53501_02F4B541.pnach +++ b/patches/SLES-53501_02F4B541.pnach @@ -1,11 +1,11 @@ -gametitle=Star Wars - Battlefront 2 (PAL-M) SLES-53501 02F4B541 secondary SWBFRNT2.ELF=B68D35CA +gametitle=Star Wars - Battlefront 2 (PAL-M) SLES-53501 02F4B541 //Corresponds to the main crc to activate the secondary crc B68D35CA called SWBFRNT2.ELF [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 and Arapapa -comment=Widescreen Hack 16:9 +description=Renders the game in 16:9 aspect ratio [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. \ No newline at end of file +description=Might need EE Overclock at 130%. \ No newline at end of file diff --git a/patches/SLES-53501_B68D35CA.pnach b/patches/SLES-53501_B68D35CA.pnach index bc61f0b5..55c4ff2a 100644 --- a/patches/SLES-53501_B68D35CA.pnach +++ b/patches/SLES-53501_B68D35CA.pnach @@ -1,7 +1,9 @@ -gametitle=Star Wars: Battlefront 2 (E)(SLES-53501) -comment=Widescreen Hack by nemesis2000 and Arapapa +gametitle=Star Wars: Battlefront 2 (PAL-M) (SLES-53501) B68D35CA + [Widescreen 16:9] gsaspectratio=16:9 +author=nemesis2000 and Arapapa +description=Renders the game in 16:9 aspect ratio //Game changes ELF on boot to SWBFRNT2.ELF with active CRC B68D35CA //Widescreen hack 16:9 @@ -19,7 +21,7 @@ patch=1,EE,005b074c,word,3c013f2b //3c013f00 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00602D1C,extended,00000001 patch=1,EE,E0010001,extended,0060EABC patch=1,EE,00602D1C,extended,00000002 \ No newline at end of file diff --git a/patches/SLES-53503_EAC52C47.pnach b/patches/SLES-53503_EAC52C47.pnach index dbd04be4..6b64e756 100644 --- a/patches/SLES-53503_EAC52C47.pnach +++ b/patches/SLES-53503_EAC52C47.pnach @@ -1,5 +1,5 @@ gametitle=Star Wars: Battlefront 2 (G)(SLES-53503) -comment=Widescreen Hack by nemesis2000 and Arapapa +author=nemesis2000 and Arapapa [Widescreen 16:9] gsaspectratio=16:9 diff --git a/patches/SLES-53504_063DFB74.pnach b/patches/SLES-53504_063DFB74.pnach index 86639f0b..e15aded3 100644 --- a/patches/SLES-53504_063DFB74.pnach +++ b/patches/SLES-53504_063DFB74.pnach @@ -2,7 +2,7 @@ gametitle=Agent Hugo (E)(SLES-53504) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53506_2CAC3DBC.pnach b/patches/SLES-53506_2CAC3DBC.pnach index f2651a4a..548c6f85 100644 --- a/patches/SLES-53506_2CAC3DBC.pnach +++ b/patches/SLES-53506_2CAC3DBC.pnach @@ -2,7 +2,7 @@ gametitle=Burnout Revenge (E)(SLES-53506) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by Dread and Arapapa +author=Dread and Arapapa ////Force turn on Internal Widescreen (Full boot bypassing) patch=1,EE,003a64a8,word,24020002 //30420003 diff --git a/patches/SLES-53507_7E83CC5B.pnach b/patches/SLES-53507_7E83CC5B.pnach index 1c26619a..354459b2 100644 --- a/patches/SLES-53507_7E83CC5B.pnach +++ b/patches/SLES-53507_7E83CC5B.pnach @@ -2,7 +2,7 @@ gametitle=Burnout Revenge (E)(SLES-53507) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by Dread and Arapapa +author=Dread and Arapapa ////Force turn on Internal Widescreen (Full boot bypassing) patch=1,EE,003a64a8,word,24020002 //30420003 diff --git a/patches/SLES-53523_98D7BF5E.pnach b/patches/SLES-53523_98D7BF5E.pnach index cf0b34a1..e02b7dcd 100644 --- a/patches/SLES-53523_98D7BF5E.pnach +++ b/patches/SLES-53523_98D7BF5E.pnach @@ -2,5 +2,5 @@ gametitle=Gun [PAL-M] SLES-53523 98D7BF5E [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,0028E9E8,word,1000000B //1040000B beqz v0,0x0028EA18 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,0028E9C4,word,16000019 //12000019 \ No newline at end of file diff --git a/patches/SLES-53527_AC4B758C.pnach b/patches/SLES-53527_AC4B758C.pnach index f95ae70c..92d25710 100644 --- a/patches/SLES-53527_AC4B758C.pnach +++ b/patches/SLES-53527_AC4B758C.pnach @@ -1,9 +1,9 @@ -gametitle=The Suffering: Ties That Bind PAL (SLES_535.27) +gametitle=The Suffering: Ties That Bind (PAL-M) (SLES_535.27) AC4B758C [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,002069CC,word,E7B40010 //14E00004 patch=1,EE,002069D0,word,8E020348 //E7B40010 patch=1,EE,002069D4,word,AE020340 //8E020348 @@ -66,7 +66,7 @@ patch=1,EE,00220c70,word,3c013f40 //3c013f80 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00220250,extended,28420002 patch=1,EE,00220270,extended,28420002 patch=1,EE,E0020000,extended,00526394 diff --git a/patches/SLES-53536_84BFD6D4.pnach b/patches/SLES-53536_84BFD6D4.pnach new file mode 100644 index 00000000..75af10a4 --- /dev/null +++ b/patches/SLES-53536_84BFD6D4.pnach @@ -0,0 +1,6 @@ +gametitle=London Racer - Police Madness PAL-M SLES-53536 84BFD6D4 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00144BD0,word,24020000 //24020001 \ No newline at end of file diff --git a/patches/SLES-53540_8191D10A.pnach b/patches/SLES-53540_8191D10A.pnach index e1b8d14a..790328aa 100644 --- a/patches/SLES-53540_8191D10A.pnach +++ b/patches/SLES-53540_8191D10A.pnach @@ -1,4 +1,4 @@ -gametitle=Fahrenheit (PAL-M) SLES-53540 8191D10A +gametitle=Fahrenheit PAL-M SLES-53540 8191D10A [Widescreen 16:9] gsaspectratio=16:9 @@ -8,5 +8,5 @@ patch=1,EE,20836500,extended,3FE38E38 //3FAAAAAB [50/60 FPS] author=Gabominated -description=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,20836F04,extended,00000001 //00000002 \ No newline at end of file +description=Might need EE Overclock (130%). +patch=1,EE,00209688,word,10400004 //14400004 \ No newline at end of file diff --git a/patches/SLES-53542_7B94480C.pnach b/patches/SLES-53542_7B94480C.pnach new file mode 100644 index 00000000..f91786ec --- /dev/null +++ b/patches/SLES-53542_7B94480C.pnach @@ -0,0 +1,9 @@ +gametitle=Shadow the Hedgehog (PAL-M) SLES-53542 7B94480C + +[Widescreen 16:9] +gsaspectratio=16:9 +author=Nik1895 +description=Widescreen Hack +//Ported to PAL by Nik1895 +patch=1,EE,207D1088,extended,3F1DA58F // 3F9DA591 chaos control fov +patch=1,EE,20847E98,extended,3FAAAAAA // 3F800000 main fov \ No newline at end of file diff --git a/patches/SLES-53544_BFDF7C5A.pnach b/patches/SLES-53544_BFDF7C5A.pnach index 95764184..ffc54161 100644 --- a/patches/SLES-53544_BFDF7C5A.pnach +++ b/patches/SLES-53544_BFDF7C5A.pnach @@ -2,7 +2,7 @@ gametitle= Pro Evolution Soccer 5 PAL Spain (SLES_535.44) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by El_Patas +author=El_Patas //Gameplay patch=1,EE,0036AAE0,word,3FAAAAAB //3F800000 (increases hor. axis) diff --git a/patches/SLES-53546_BAC92C25.pnach b/patches/SLES-53546_BAC92C25.pnach index 3e19d5fa..4a3b4726 100644 --- a/patches/SLES-53546_BAC92C25.pnach +++ b/patches/SLES-53546_BAC92C25.pnach @@ -2,7 +2,7 @@ gametitle=NBA Live 06 (PAL)(SLES-53546) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53548_15DA51A0.pnach b/patches/SLES-53548_15DA51A0.pnach index d37315a4..b05c77b7 100644 --- a/patches/SLES-53548_15DA51A0.pnach +++ b/patches/SLES-53548_15DA51A0.pnach @@ -2,7 +2,7 @@ gametitle=Gigawing Generations (DVD Convert)(E)(SLES-53548) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53556_D720770D.pnach b/patches/SLES-53556_D720770D.pnach index c25c966d..f6860fbb 100644 --- a/patches/SLES-53556_D720770D.pnach +++ b/patches/SLES-53556_D720770D.pnach @@ -1,6 +1,14 @@ -gametitle=Driver - Parallel Lines [PAL-M] SLES-53556 D720770D +gametitle=Driver - Parallel Lines (PAL-M) SLES-53556 D720770D [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,00324704,word,50400000 //50400006 beqzl v0,0x00324720 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,003246EC,word,24440002 //24440001 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,004B5790,word,00000002 //00000001 +patch=1,EE,004B03C8,word,00000003 //00000001 +patch=1,EE,00403588,word,00000000 //00000008 \ No newline at end of file diff --git a/patches/SLES-53559_CA2A1B04.pnach b/patches/SLES-53559_CA2A1B04.pnach index 400de15b..befec0b7 100644 --- a/patches/SLES-53559_CA2A1B04.pnach +++ b/patches/SLES-53559_CA2A1B04.pnach @@ -1,14 +1,20 @@ -gametitle=Need for Speed - Most Wanted [PAL-M] [SLES-53559] +gametitle=Need for Speed - Most Wanted [PAL-M] [SLES-53559] CA2A1B04 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Enable native widescreen +patch=1,EE,00AAF954,byte,01 [Remove Brown Filter] author=fobes description=Disables the brownish yellow post processing filter patch=1,EE,00551058,extended,20000001 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps +description=SDTV 480p mode at start. patch=1,EE,004938DC,word,24110000 -patch=1,EE,004938E0,word,24120052 -patch=1,EE,004938EC,word,24130001 -patch=1,EE,00AAF950,word,40A00000 \ No newline at end of file +patch=1,EE,004938E0,word,24120050 +patch=1,EE,004938EC,word,24130001 \ No newline at end of file diff --git a/patches/SLES-53560_F881CD68.pnach b/patches/SLES-53560_F881CD68.pnach index 129702cf..afa687b9 100644 --- a/patches/SLES-53560_F881CD68.pnach +++ b/patches/SLES-53560_F881CD68.pnach @@ -2,7 +2,7 @@ gametitle=Sonic Riders (PAL-M5) (SLES-53560) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0044eab8,word,43700000 // 43a00000 hor fov diff --git a/patches/SLES-53561_C78A495D.pnach b/patches/SLES-53561_C78A495D.pnach index bafb1cce..60099b74 100644 --- a/patches/SLES-53561_C78A495D.pnach +++ b/patches/SLES-53561_C78A495D.pnach @@ -1,46 +1,55 @@ -gametitle=Canis Canem Edit (Bully) PAL (SLES-53561) CRC C78A495D - -[Widescreen 16:9] -gsaspectratio=16:9 -author=nemesis2000 -description=Widescreen fix - -//Widescreen fix -patch=1,EE,004720d0,word,14640007 -patch=1,EE,004720d4,word,3c030022 -patch=1,EE,004720d8,word,2404bec0 -patch=1,EE,004720dc,word,a4642dec -patch=1,EE,004720e0,word,24043fc0 -patch=1,EE,004720e4,word,3c03001d -patch=1,EE,004720e8,word,a4645124 -patch=1,EE,004720ec,word,10000007 -patch=1,EE,004720f0,word,2404bf00 -patch=1,EE,004720f4,word,a4642dec -patch=1,EE,004720f8,word,24044000 -patch=1,EE,004720fc,word,3c03001d -patch=1,EE,00472100,word,a4645124 -patch=1,EE,00472104,word,00000000 -patch=1,EE,00472108,word,00000000 - -patch=1,EE,e0010000,extended,005e1638 -patch=1,EE,2072a3c8,extended,435c0000 - -patch=1,EE,e0010000,extended,005e1638 -patch=1,EE,2072a3cc,extended,435c0000 - -patch=1,EE,e001aaab,extended,005e1638 -patch=1,EE,2072a3c8,extended,432b0000 - -patch=1,EE,e001aaab,extended,005e1638 -patch=1,EE,2072a3cc,extended,432b0000 - -[Disable Depth of Field] -author=refraction -description=Removes depth of field effect - -patch=1,EE,003DA2D4,word,5000021A //Skips DoF code block. - -[50 FPS] -author=Gabominated -description=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,201F3EF8,extended,28420001 //28420002 +gametitle=Canis Canem Edit (Bully) PAL (SLES-53561) CRC C78A495D + +[Widescreen 16:9] +gsaspectratio=16:9 +author=nemesis2000 +description=Widescreen fix + +//Widescreen fix +patch=1,EE,004720d0,word,14640007 +patch=1,EE,004720d4,word,3c030022 +patch=1,EE,004720d8,word,2404bec0 +patch=1,EE,004720dc,word,a4642dec +patch=1,EE,004720e0,word,24043fc0 +patch=1,EE,004720e4,word,3c03001d +patch=1,EE,004720e8,word,a4645124 +patch=1,EE,004720ec,word,10000007 +patch=1,EE,004720f0,word,2404bf00 +patch=1,EE,004720f4,word,a4642dec +patch=1,EE,004720f8,word,24044000 +patch=1,EE,004720fc,word,3c03001d +patch=1,EE,00472100,word,a4645124 +patch=1,EE,00472104,word,00000000 +patch=1,EE,00472108,word,00000000 + +patch=1,EE,e0010000,extended,005e1638 +patch=1,EE,2072a3c8,extended,435c0000 + +patch=1,EE,e0010000,extended,005e1638 +patch=1,EE,2072a3cc,extended,435c0000 + +patch=1,EE,e001aaab,extended,005e1638 +patch=1,EE,2072a3c8,extended,432b0000 + +patch=1,EE,e001aaab,extended,005e1638 +patch=1,EE,2072a3cc,extended,432b0000 + +[Disable Depth of Field] +author=refraction +description=Removes depth of field effect + +patch=1,EE,003DA2D4,word,5000021A //Skips DoF code block. + +[50 FPS] +author=Gabominated +description=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,201F3EF8,extended,28420001 //28420002 + +[480p Mode] +gsinterlacemode=1 +author=Gabominated +description=SDTV 480p mode at start, use Software renderer for FMVs. Might need enable EE Overclock to be stable. +patch=1,EE,D1C9C84E,extended,00000002 +patch=1,EE,20112320,extended,24120050 +patch=1,EE,D1C9C84E,extended,00000001 +patch=1,EE,20112320,extended,00069403 diff --git a/patches/SLES-53570_C488EC04.pnach b/patches/SLES-53570_C488EC04.pnach index 7da0fea8..47b95417 100644 --- a/patches/SLES-53570_C488EC04.pnach +++ b/patches/SLES-53570_C488EC04.pnach @@ -2,7 +2,7 @@ gametitle=Ninjabread Man (E)(SLES-53570) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53571_6D70F0E0.pnach b/patches/SLES-53571_6D70F0E0.pnach index 2e97e4f0..016ff913 100644 --- a/patches/SLES-53571_6D70F0E0.pnach +++ b/patches/SLES-53571_6D70F0E0.pnach @@ -2,7 +2,7 @@ gametitle=Anubis II (E)(SLES-53571) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-53574_A6CF1D2B.pnach b/patches/SLES-53574_A6CF1D2B.pnach index 4c00479d..b35be4a7 100644 --- a/patches/SLES-53574_A6CF1D2B.pnach +++ b/patches/SLES-53574_A6CF1D2B.pnach @@ -2,7 +2,7 @@ gametitle=Bratz - Rock Angelz (E)(SLES-53574) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53575_82CA3505.pnach b/patches/SLES-53575_82CA3505.pnach index 36b55713..87030d7f 100644 --- a/patches/SLES-53575_82CA3505.pnach +++ b/patches/SLES-53575_82CA3505.pnach @@ -3,7 +3,7 @@ gametitle=Bratz - Rock Angelz (PAL-S) SLES-53575 82CA3505 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,002FAF64,word,3C013F40 patch=1,EE,002FAF68,word,4481F000 patch=1,EE,002FAF70,word,461EB582 @@ -11,9 +11,9 @@ patch=1,EE,0035BFD4,word,3C013F2B [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0031C7D4,extended,03E00004 patch=1,EE,0034C5B4,extended,3C013F00 patch=1,EE,E0020001,extended,003E3F50 patch=1,EE,0031C7D4,extended,03E00008 -patch=1,EE,0034C5B4,extended,3C013F80 \ No newline at end of file +patch=1,EE,0034C5B4,extended,3C013F80 \ No newline at end of file diff --git a/patches/SLES-53579_E1674F57.pnach b/patches/SLES-53579_E1674F57.pnach index 5b940bf7..2e51d0eb 100644 --- a/patches/SLES-53579_E1674F57.pnach +++ b/patches/SLES-53579_E1674F57.pnach @@ -2,7 +2,7 @@ gametitle=One Piece - Grand Battle (PAL-E) (SLES-53579) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00429590,word,3f366666 // 3f733333 hor fov diff --git a/patches/SLES-53581_3FA0F2FB.pnach b/patches/SLES-53581_3FA0F2FB.pnach new file mode 100644 index 00000000..cd05fadf --- /dev/null +++ b/patches/SLES-53581_3FA0F2FB.pnach @@ -0,0 +1,16 @@ +gametitle=NBA Live 06 (PAL-S) SLES-53581 3FA0F2FB + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00818828,word,3FD55555 +patch=1,EE,0081E45C,word,00000000 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,004730AC,word,24110000 +patch=1,EE,004730B0,word,24120050 +patch=1,EE,004730BC,word,24130001 \ No newline at end of file diff --git a/patches/SLES-53592_1CB1FCDA.pnach b/patches/SLES-53592_1CB1FCDA.pnach index e4212859..fa0a3cab 100644 --- a/patches/SLES-53592_1CB1FCDA.pnach +++ b/patches/SLES-53592_1CB1FCDA.pnach @@ -2,7 +2,7 @@ gametitle=Zombie Attack (E)(SLES-53592) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53594_961A5702.pnach b/patches/SLES-53594_961A5702.pnach index 61eb206b..d4121834 100644 --- a/patches/SLES-53594_961A5702.pnach +++ b/patches/SLES-53594_961A5702.pnach @@ -2,7 +2,7 @@ gametitle=Living World Racing (E)(SLES-53594) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53595_B194D815.pnach b/patches/SLES-53595_B194D815.pnach index be6699fe..11fdaa32 100644 --- a/patches/SLES-53595_B194D815.pnach +++ b/patches/SLES-53595_B194D815.pnach @@ -2,7 +2,7 @@ gametitle=Wild Water Adrenaline featuring Salomon (E)(SLES-53595) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-53614_0AB8ED51.pnach b/patches/SLES-53614_0AB8ED51.pnach index a58e6421..3fe5428a 100644 --- a/patches/SLES-53614_0AB8ED51.pnach +++ b/patches/SLES-53614_0AB8ED51.pnach @@ -2,7 +2,7 @@ gametitle=Classic British Motor Racing (E)(SLES-53614) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53618_B1AC3BEB.pnach b/patches/SLES-53618_B1AC3BEB.pnach index 568237db..d1647e10 100644 --- a/patches/SLES-53618_B1AC3BEB.pnach +++ b/patches/SLES-53618_B1AC3BEB.pnach @@ -1,6 +1,6 @@ -gametitle=True Crime - New York City [PAL-S] SLES-53618 B1AC3BEB. elf secondary B2D44C6C +gametitle=True Crime - New York City (PAL-S) SLES-53618 B1AC3BEB //Corresponds to the main crc to activate the secondary crc B2D44C6C called TC2.ELF [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS indoors. Might need enable 180% EE Overclock to be stable. \ No newline at end of file +description=Might need EE Overclock at 180%. Unlocked indoors \ No newline at end of file diff --git a/patches/SLES-53618_B2D44C6C.pnach b/patches/SLES-53618_B2D44C6C.pnach index c306258d..96cc4666 100644 --- a/patches/SLES-53618_B2D44C6C.pnach +++ b/patches/SLES-53618_B2D44C6C.pnach @@ -1,8 +1,8 @@ -gametitle=True Crime - New York City [PAL-S] SLES-53618 B1AC3BEB. elf secondary B2D44C6C +gametitle=True Crime - New York City (PAL-S) SLES-53618 B2D44C6C TC2.ELF [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS indoors. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. Unlocked indoors patch=1,EE,004A1AE4,extended,24040002 patch=1,EE,2050549C,extended,3F800000 patch=1,EE,E0020000,extended,00500338 diff --git a/patches/SLES-53621_7C211BF9.pnach b/patches/SLES-53621_7C211BF9.pnach index 4b591ac2..a5caee1e 100644 --- a/patches/SLES-53621_7C211BF9.pnach +++ b/patches/SLES-53621_7C211BF9.pnach @@ -9,5 +9,5 @@ patch=1,EE,0011a598,word,3c014080 //3c014040 Y-Fov [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,004349D5,word,00000000 //4500004D \ No newline at end of file diff --git a/patches/SLES-53635_CF3A1D37.pnach b/patches/SLES-53635_CF3A1D37.pnach index a6d7de02..5266714e 100644 --- a/patches/SLES-53635_CF3A1D37.pnach +++ b/patches/SLES-53635_CF3A1D37.pnach @@ -3,10 +3,10 @@ gametitle=NASCAR '06 - Total Team Control (PAL-E) SLES-53635 CF3A1D37 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,003C1598,word,3F400000 //3F800000 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,002BBE7C,word,28420001 //28420002 \ No newline at end of file diff --git a/patches/SLES-53636_64E8F1DC.pnach b/patches/SLES-53636_64E8F1DC.pnach index c527e3e3..b8d2e858 100644 --- a/patches/SLES-53636_64E8F1DC.pnach +++ b/patches/SLES-53636_64E8F1DC.pnach @@ -2,7 +2,7 @@ gametitle=TY the Tasmanian Tiger 3 - Night of the Quinkan (PAL-M) SLES-53636 64E [50 FPS] author=PeterDelta and asasega -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0012C85C,extended,28420001 patch=1,EE,E0010000,extended,00516110 patch=1,EE,2012C85C,extended,28420002 \ No newline at end of file diff --git a/patches/SLES-53645_9637D496.pnach b/patches/SLES-53645_9637D496.pnach index c4e09492..0bc2f6ff 100644 --- a/patches/SLES-53645_9637D496.pnach +++ b/patches/SLES-53645_9637D496.pnach @@ -1,8 +1,8 @@ -gametitle=Knights Of The Temple II (PAL-M5) (SLES-53645) +gametitle=Knights of the Temple II PAL-M SLES-53645 9637D496 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001034e4,word,3c013f40 // 00000000 hor fov @@ -21,4 +21,7 @@ patch=1,EE,006c4984,word,3faaaaab // 00000000 inventory screen fix1 patch=1,EE,0018a254,word,3c013faa // c4730000 inventory screen fix2 patch=1,EE,0018a274,word,afa10000 // e7b30000 - +[50 FPS] +author=Gabominated & PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,0010AF04,word,2C620001 //2C620002 \ No newline at end of file diff --git a/patches/SLES-53646_2A4A9916.pnach b/patches/SLES-53646_2A4A9916.pnach index d706ddc0..c6c94725 100644 --- a/patches/SLES-53646_2A4A9916.pnach +++ b/patches/SLES-53646_2A4A9916.pnach @@ -1,8 +1,8 @@ -gametitle=World Racing 2 (E)(SLES-53646) +gametitle=World Racing 2 PAL-M SLES-53646 2A4A9916 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -14,4 +14,7 @@ patch=1,EE,00297460,word,4600c602 //00000000 //Render fix patch=1,EE,0028bc14,word,3c013f2b //3c013f00 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0028724C,word,14400008 //10400008 \ No newline at end of file diff --git a/patches/SLES-53653_83C2D4D1.pnach b/patches/SLES-53653_83C2D4D1.pnach index 97e3fd57..0f1c6499 100644 --- a/patches/SLES-53653_83C2D4D1.pnach +++ b/patches/SLES-53653_83C2D4D1.pnach @@ -2,7 +2,7 @@ gametitle=WWII - Battle Over Europe (E)(SLES-53653) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53654_2E66AAEA.pnach b/patches/SLES-53654_2E66AAEA.pnach index 535ddc96..da744569 100644 --- a/patches/SLES-53654_2E66AAEA.pnach +++ b/patches/SLES-53654_2E66AAEA.pnach @@ -2,5 +2,5 @@ gametitle=London Racer - Destruction Madness (PAL-M) SLES-53654 2E66AAEA [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0021C828,word,44020000 //44820800 \ No newline at end of file diff --git a/patches/SLES-53657_797ABFFF.pnach b/patches/SLES-53657_797ABFFF.pnach new file mode 100644 index 00000000..1bcafe36 --- /dev/null +++ b/patches/SLES-53657_797ABFFF.pnach @@ -0,0 +1,8 @@ +gametitle=DreamWorks Shrek - SuperSlam (PAL) 797ABFFF + +[Widescreen 16:9] +gsaspectratio=16:9 +author=CRASHARKI +description=Patches the game to run at 16:9 Widescreen Aspect Ratio. +//Original NTSC-U patch by xMichael +patch=1,EE,21C8109C,extended,3FE38E39 // 3FAAAAAB \ No newline at end of file diff --git a/patches/SLES-53659_DD0273E8.pnach b/patches/SLES-53659_DD0273E8.pnach index 8e9c8864..9436bb7f 100644 --- a/patches/SLES-53659_DD0273E8.pnach +++ b/patches/SLES-53659_DD0273E8.pnach @@ -2,7 +2,7 @@ gametitle=Brothers in Arms: Earned in Blood [PAL-M5] (SLES_536.59) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,002F19DC,word,3C023F40 //3C023F80 (Increases hor. axis) diff --git a/patches/SLES-53667_BBB8392E.pnach b/patches/SLES-53667_BBB8392E.pnach index 7a6bf500..4998b25e 100644 --- a/patches/SLES-53667_BBB8392E.pnach +++ b/patches/SLES-53667_BBB8392E.pnach @@ -9,7 +9,7 @@ gsaspectratio=16:9 // ========== comment= Gauntlet - Seven Sorrows * SLES-53667 * PAL-M5 * BBB8392E -comment=- Widescreen hack by nemesis2000. +author=nemesis2000 patch=1,EE,00446620,word,24020002 // 8C4206EC // ========== diff --git a/patches/SLES-53676_0B05A5BD.pnach b/patches/SLES-53676_0B05A5BD.pnach index 57436cf8..bdb447b5 100644 --- a/patches/SLES-53676_0B05A5BD.pnach +++ b/patches/SLES-53676_0B05A5BD.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown vs. Raw 2006 (PAL-E) (SLES-53676) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 +author=nemesis2000 // Ported to PAL, added 16:10 support (ElHecht) // 16:9 diff --git a/patches/SLES-53689_CA14550C.pnach b/patches/SLES-53689_CA14550C.pnach index ebca4e59..81505661 100644 --- a/patches/SLES-53689_CA14550C.pnach +++ b/patches/SLES-53689_CA14550C.pnach @@ -2,7 +2,7 @@ gametitle=World Poker Tour (E)(SLES-53689) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53690_C97A17F8.pnach b/patches/SLES-53690_C97A17F8.pnach index 56745343..8c64c8bc 100644 --- a/patches/SLES-53690_C97A17F8.pnach +++ b/patches/SLES-53690_C97A17F8.pnach @@ -2,7 +2,7 @@ gametitle=Makai Kingdom: Chronicles of the Sacred Tome [PAL] (SLES_536.90) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 (ELF hack) patch=1,EE,00104DE4,word,3C013F40 //00000000 (Increases hor. axis) diff --git a/patches/SLES-53695_CED08066.pnach b/patches/SLES-53695_CED08066.pnach index 46ff83b7..8b25f98d 100644 --- a/patches/SLES-53695_CED08066.pnach +++ b/patches/SLES-53695_CED08066.pnach @@ -1,11 +1,14 @@ -gametitle=Tak: The Great Juju Challenge [PAL] (SLES_536.95) +gametitle=Tak: The Great Juju Challenge (PAL-E-G) SLES-53695 CED08066 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,003E3C20,word,3C013FE3 //3C013FAA patch=1,EE,003E3C24,word,3421388E //3421AAAB - +[50 FPS] +author=PeterDelta +description=Might need EE Overclock +patch=1,EE,005AE718,extended,01 \ No newline at end of file diff --git a/patches/SLES-53702_6BA2F6B9.pnach b/patches/SLES-53702_6BA2F6B9.pnach new file mode 100644 index 00000000..7e0b2856 --- /dev/null +++ b/patches/SLES-53702_6BA2F6B9.pnach @@ -0,0 +1,24 @@ +gametitle=Resident Evil 4 SLES-53702 6BA2F6B9 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=Gabominated & PeterDelta +description=Widescreen improvement. +patch=1,EE,20326FF8,extended,3F5CED91 //x-fov 3F25B22D +patch=1,EE,202506DC,extended,3C013F5C +patch=1,EE,202506E0,extended,3421ED91 +patch=1,EE,20326ffc,extended,3faaaaab //y-fov +patch=1,EE,202506EC,extended,3C013FAA +patch=1,EE,202506F0,extended,3421aaab +patch=1,EE,2021d354,extended,3c013f00 +patch=1,EE,20281268,extended,3c013f80 +patch=1,EE,204311E0,extended,48000000 //forces native widescreen by PeterDelta +patch=1,EE,E0080000,extended,0041782C +patch=1,EE,20326FF8,extended,3F25B22D //3F5CED91 x-fov +patch=1,EE,202506DC,extended,3C013F25 //3C013F5C +patch=1,EE,202506E0,extended,3421b22d //3421ED91 +patch=1,EE,20326ffc,extended,3f800000 //3faaaaab y-fov +patch=1,EE,202506EC,extended,3C013F80 //3C013FAA +patch=1,EE,202506F0,extended,34210000 //3421aaab +patch=1,EE,2021d354,extended,3c013f25 //3c013f00 inventory background +patch=1,EE,20281268,extended,3c013f80 //3c013f00 render fix diff --git a/patches/SLES-53703_2D0F72D6.pnach b/patches/SLES-53703_2D0F72D6.pnach index 6203db14..973bc1fe 100644 --- a/patches/SLES-53703_2D0F72D6.pnach +++ b/patches/SLES-53703_2D0F72D6.pnach @@ -2,7 +2,7 @@ gametitle=Peter Jackson's King Kong - The Official Game of the Movie (E)(SLES-53 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53706_41094602.pnach b/patches/SLES-53706_41094602.pnach index e5634f0f..37b7943e 100644 --- a/patches/SLES-53706_41094602.pnach +++ b/patches/SLES-53706_41094602.pnach @@ -2,5 +2,5 @@ gametitle=The Chronicles of Narnia The Lion Witch and The Wardrobe (PAL-E) SLES- [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,001721DC,word,00000000 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,001721D8,word,28420001 //28420002 \ No newline at end of file diff --git a/patches/SLES-53707_F29FA505.pnach b/patches/SLES-53707_F29FA505.pnach index 34ece01e..f6e25abb 100644 --- a/patches/SLES-53707_F29FA505.pnach +++ b/patches/SLES-53707_F29FA505.pnach @@ -2,5 +2,5 @@ gametitle=Chroniken von Narnia, Die - Der König von Narnia (PAL-G) SLES-53707 F [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,001721DC,word,00000000 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,001721D8,word,28420001 //28420002 \ No newline at end of file diff --git a/patches/SLES-53710_F59EA4FB.pnach b/patches/SLES-53710_F59EA4FB.pnach index 4cbab8c8..5f292463 100644 --- a/patches/SLES-53710_F59EA4FB.pnach +++ b/patches/SLES-53710_F59EA4FB.pnach @@ -1,6 +1,19 @@ gametitle=Crónicas de Narnia, Las - El León, La Bruja y El Armario (PAL-S) SLES-53710 F59EA4FB +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Widescreen fix +patch=1,EE,006337A8,word,00010100 +patch=1,EE,006337C4,word,00010100 +patch=1,EE,0033B0C4,word,3C013F40 //3C013F80 zoom fix + +[Remove Blackbars] +author=PeterDelta +description=Removes black bars in cutscenes +patch=1,EE,004032A8,word,00000000 //black bands + [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,001721DC,word,00000000 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,001721D8,word,28420001 //28420002 \ No newline at end of file diff --git a/patches/SLES-53712_37718361.pnach b/patches/SLES-53712_37718361.pnach index 5eba0d66..ac757729 100644 --- a/patches/SLES-53712_37718361.pnach +++ b/patches/SLES-53712_37718361.pnach @@ -2,5 +2,5 @@ gametitle=The Chronicles of Narnia The Lion Witch and The Wardrobe (PAL-M) SLES- [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,001721DC,word,00000000 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,001721D8,word,28420001 //28420002 \ No newline at end of file diff --git a/patches/SLES-53716_D9D96321.pnach b/patches/SLES-53716_D9D96321.pnach index af9da03d..452d38cf 100644 --- a/patches/SLES-53716_D9D96321.pnach +++ b/patches/SLES-53716_D9D96321.pnach @@ -1,9 +1,9 @@ -gametitle=Without Warning (SLES-53716) D9D96321 +gametitle=Without Warning (PAL-M) (SLES-53716) D9D96321 [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -comment=Widescreen hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,001486ac,word,3c013f40 patch=1,EE,001486b0,word,44810800 patch=1,EE,001486b4,word,27bdffe0 @@ -15,12 +15,15 @@ patch=1,EE,001486c8,word,46016303 patch=1,EE,00148318,word,0c0521ab patch=1,EE,00197d6c,word,0c0521ab patch=1,EE,00197d88,word,0c0521ab -//black borders fix + +[Remove Blackbars] +author=nemesis2000 +description=Removes black bars in cutscenes patch=1,EE,0017f6ec,word,3c013f80 [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,004A739C,extended,00000001 patch=1,EE,E0010000,extended,004A5868 patch=1,EE,004A739C,extended,00000002 \ No newline at end of file diff --git a/patches/SLES-53718_E626181E.pnach b/patches/SLES-53718_E626181E.pnach index 3107b87b..99ccc578 100644 --- a/patches/SLES-53718_E626181E.pnach +++ b/patches/SLES-53718_E626181E.pnach @@ -3,12 +3,12 @@ gametitle=The Sims 2 (PAL-M) (SLES-53718) E626181E [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //aa3f013c abaa2134 00008144 0800e003 00000000 00000000 0800e003 patch=1,EE,003db168,word,3c013fe3 //3c013faa patch=1,EE,003db16c,word,34218e2a //3421aaab [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,003EAEF4,word,28820001 //28820002 \ No newline at end of file diff --git a/patches/SLES-53724_5A138DFF.pnach b/patches/SLES-53724_5A138DFF.pnach index 777ab0f4..0bdf69f6 100644 --- a/patches/SLES-53724_5A138DFF.pnach +++ b/patches/SLES-53724_5A138DFF.pnach @@ -2,7 +2,7 @@ gametitle=World Series of Poker (E)(SLES-53724) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53725_040345C2.pnach b/patches/SLES-53725_040345C2.pnach index 379d87cc..fd523004 100644 --- a/patches/SLES-53725_040345C2.pnach +++ b/patches/SLES-53725_040345C2.pnach @@ -2,7 +2,7 @@ gametitle=Asterix & Obelix XXL 2 (PAL-M5) (SLES-53725) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa/ElHecht +author=Arapapa/ElHecht // 16:9 patch=1,EE,0012a268,word,0811687c // 3c023f40 jump to code-inject 0045a1f0 diff --git a/patches/SLES-53729_0BC3B265.pnach b/patches/SLES-53729_0BC3B265.pnach index 32f6b163..e6b24a79 100644 --- a/patches/SLES-53729_0BC3B265.pnach +++ b/patches/SLES-53729_0BC3B265.pnach @@ -2,5 +2,5 @@ gametitle=Battlefield 2 - Modern Combat (PAL-M) SLES-53729 0BC3B265 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0022D9DC,word,24630001 //24630002 \ No newline at end of file diff --git a/patches/SLES-53730_186B0D8A.pnach b/patches/SLES-53730_186B0D8A.pnach index 42cbf90a..40f8750e 100644 --- a/patches/SLES-53730_186B0D8A.pnach +++ b/patches/SLES-53730_186B0D8A.pnach @@ -2,7 +2,7 @@ gametitle=Battlefield 2 - Modern Combat (PAL-M3) (SLES-53730) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,003bfaf8,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-53734_E3F32982.pnach b/patches/SLES-53734_E3F32982.pnach index 7a4d8fbe..a1117219 100644 --- a/patches/SLES-53734_E3F32982.pnach +++ b/patches/SLES-53734_E3F32982.pnach @@ -105,6 +105,6 @@ patch=1,EE,204F9380,extended,3f400000 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,001B3CE8,word,3C014270 //3C0141F0 patch=1,EE,00427FA4,word,3F000000 //3F800000 \ No newline at end of file diff --git a/patches/SLES-53736_78A76766.pnach b/patches/SLES-53736_78A76766.pnach index 99d187ac..d15f1e0c 100644 --- a/patches/SLES-53736_78A76766.pnach +++ b/patches/SLES-53736_78A76766.pnach @@ -2,7 +2,7 @@ gametitle=Billy the Wizard - Rocket Broomstick Racing (E)(SLES-53736) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53739_AB75D540.pnach b/patches/SLES-53739_AB75D540.pnach index fc34c939..402a0587 100644 --- a/patches/SLES-53739_AB75D540.pnach +++ b/patches/SLES-53739_AB75D540.pnach @@ -1,9 +1,9 @@ -gametitle=Disney's: Chicken Little [PAL] (SLES_537.39) +gametitle=Disney's: Chicken Little [PAL] (SLES_537.39) AB75D540 [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Gameplay 16:9 (Memory Hack) patch=1,EE,205D27AC,extended,3FE38E32 //3FAAAAAB (Increases hor. axis) @@ -13,5 +13,5 @@ patch=1,EE,00287DE0,word,3C014455 //3C014420 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,005294A8,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-53744_5AD63F56.pnach b/patches/SLES-53744_5AD63F56.pnach index 2e23b339..3b087e4b 100644 --- a/patches/SLES-53744_5AD63F56.pnach +++ b/patches/SLES-53744_5AD63F56.pnach @@ -2,7 +2,7 @@ gametitle=Disney's: Chicken Little [PAL-UK] (SLES_537.44) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 (Memory Hack) patch=1,EE,205C9CFC,extended,3FE38E32 //3FAAAAAB (Increases hor. axis) diff --git a/patches/SLES-53751_797ABFFF.pnach b/patches/SLES-53751_797ABFFF.pnach new file mode 100644 index 00000000..1bcafe36 --- /dev/null +++ b/patches/SLES-53751_797ABFFF.pnach @@ -0,0 +1,8 @@ +gametitle=DreamWorks Shrek - SuperSlam (PAL) 797ABFFF + +[Widescreen 16:9] +gsaspectratio=16:9 +author=CRASHARKI +description=Patches the game to run at 16:9 Widescreen Aspect Ratio. +//Original NTSC-U patch by xMichael +patch=1,EE,21C8109C,extended,3FE38E39 // 3FAAAAAB \ No newline at end of file diff --git a/patches/SLES-53752_797ABFFF.pnach b/patches/SLES-53752_797ABFFF.pnach new file mode 100644 index 00000000..1bcafe36 --- /dev/null +++ b/patches/SLES-53752_797ABFFF.pnach @@ -0,0 +1,8 @@ +gametitle=DreamWorks Shrek - SuperSlam (PAL) 797ABFFF + +[Widescreen 16:9] +gsaspectratio=16:9 +author=CRASHARKI +description=Patches the game to run at 16:9 Widescreen Aspect Ratio. +//Original NTSC-U patch by xMichael +patch=1,EE,21C8109C,extended,3FE38E39 // 3FAAAAAB \ No newline at end of file diff --git a/patches/SLES-53765_2A246A0D.pnach b/patches/SLES-53765_2A246A0D.pnach index 78ae354e..fdcd1fb0 100644 --- a/patches/SLES-53765_2A246A0D.pnach +++ b/patches/SLES-53765_2A246A0D.pnach @@ -2,7 +2,7 @@ gametitle=Stella Deus: The Gate of Eternity [PAL] (SLES_537.65) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,20306B90,extended,44C00000 //45000000 (Increases hor. axis) diff --git a/patches/SLES-53768_88E95888.pnach b/patches/SLES-53768_88E95888.pnach index b672f87c..c32da9ca 100644 --- a/patches/SLES-53768_88E95888.pnach +++ b/patches/SLES-53768_88E95888.pnach @@ -47,8 +47,7 @@ patch=1,EE,00516594,word,e7a20068 //patch=1,EE,006d4c34,word,0c1b5aa0 //patch=1,EE,0051ab64,word,3c023faa // HUD correction - [50/60 FPS] -author=Gabominated +author=asasega comment=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. patch=1,EE,00511F14,word,24020001 //24020002 \ No newline at end of file diff --git a/patches/SLES-53769_3E205556.pnach b/patches/SLES-53769_3E205556.pnach index b54b7c11..2c7946d8 100644 --- a/patches/SLES-53769_3E205556.pnach +++ b/patches/SLES-53769_3E205556.pnach @@ -2,7 +2,7 @@ gametitle=Suikoden Tactics PAL (SLES_537.69) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0038130C,word,3C013F40 //00000000 (Increases hor. axis) diff --git a/patches/SLES-53775_36C11474.pnach b/patches/SLES-53775_36C11474.pnach new file mode 100644 index 00000000..ef9d4baa --- /dev/null +++ b/patches/SLES-53775_36C11474.pnach @@ -0,0 +1,28 @@ +gametitle=Reservoir Dogs (PAL-M) SLES-53775 36C11474 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Widescreen fix +patch=1,EE,00396EF8,extended,3C013F00 +patch=1,EE,003767B8,extended,3C013F00 +patch=1,EE,E0010001,extended,004F11EC +patch=1,EE,00396EF8,extended,3C013F25 +patch=1,EE,003767B8,extended,3C013F25 + +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,003A8E7C,extended,3C02000A //3C02004A +patch=1,EE,00310734,extended,3C013F00 //3C013F80 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,20444EA0,extended,34050050 +patch=1,EE,20444EA4,extended,24030002 +patch=1,EE,20444EA8,extended,0000000C +patch=1,EE,20444EAC,extended,03E00008 +patch=1,EE,E001000A,extended,003A8E7C +patch=1,EE,20310734,extended,3C013EA0 \ No newline at end of file diff --git a/patches/SLES-53777_6FC40BAA.pnach b/patches/SLES-53777_6FC40BAA.pnach index 8e5d3597..87bceaa3 100644 --- a/patches/SLES-53777_6FC40BAA.pnach +++ b/patches/SLES-53777_6FC40BAA.pnach @@ -1,9 +1,9 @@ -gametitle=Prince of Persia - The Two Thrones (PAL-M5) (SLES-53777) +gametitle=Prince of Persia - The Two Thrones (PAL-M5) (SLES-53777) 6FC40BAA [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio // 16:9 patch=1,EE,005b8cd0,word,3c013f40 // 00000000 hor fov patch=1,EE,005b8cec,word,34210000 // 00000000 hor fov @@ -23,5 +23,11 @@ patch=1,EE,005b8d0c,word,4600e8c6 // 44821800 [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,00A90CF8,word,00000001 //00000002 srl zero,0x00 +description=Might need EE Overclock at 180%. +patch=1,EE,00A90CF8,word,00000001 //00000002 + + +[Remove Blur/Bloom] +author=fobes +description=Removes the post-processing blur/bloom effect +patch=1,EE,005AAF54,word,00000000 diff --git a/patches/SLES-53778_D7F36BB4.pnach b/patches/SLES-53778_D7F36BB4.pnach index 8654cd84..2d9b61af 100644 --- a/patches/SLES-53778_D7F36BB4.pnach +++ b/patches/SLES-53778_D7F36BB4.pnach @@ -1,8 +1,8 @@ -gametitle=Jacked (PAL)(SLES-53778) +gametitle=Jacked PAL-M SLES-53778 D7F36BB4 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -14,4 +14,7 @@ patch=1,EE,002fe580,word,3c013f97 //3c013f80 //00bf013c 00388144 2000b07f 1000bfff (1st) patch=1,EE,00302974,word,3c01bec0 //3c01bf00 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,004BCF60,word,00000032 //00000019 \ No newline at end of file diff --git a/patches/SLES-53779_0FAA1865.pnach b/patches/SLES-53779_0FAA1865.pnach index 17daf1f0..5cedbd0a 100644 --- a/patches/SLES-53779_0FAA1865.pnach +++ b/patches/SLES-53779_0FAA1865.pnach @@ -2,7 +2,7 @@ gametitle=American Chopper 2 - Full Throttle (E)(SLES-53779) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53794_EC432B24.pnach b/patches/SLES-53794_EC432B24.pnach index 38398c4c..e22d61d9 100644 --- a/patches/SLES-53794_EC432B24.pnach +++ b/patches/SLES-53794_EC432B24.pnach @@ -2,7 +2,7 @@ gametitle=Drakengard 2 (PAL-M3) (SLES-53794) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht patch=1,EE,204D0D58,extended,3FE38E32 // 3Faaaaaa patch=1,EE,20562794,extended,44550000 // 44200000 diff --git a/patches/SLES-53800_E389B921.pnach b/patches/SLES-53800_E389B921.pnach index 2a898348..3d85f853 100644 --- a/patches/SLES-53800_E389B921.pnach +++ b/patches/SLES-53800_E389B921.pnach @@ -2,7 +2,7 @@ gametitle=Rampage - Total Destruction (NTSC-U & PAL)(SLUS-21323 & SLES-53800) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53805_CF4094BD.pnach b/patches/SLES-53805_CF4094BD.pnach index 36982dc1..8b6012c1 100644 --- a/patches/SLES-53805_CF4094BD.pnach +++ b/patches/SLES-53805_CF4094BD.pnach @@ -2,7 +2,7 @@ gametitle=Cocoto Funfair (E)(SLES-53805) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53810_A1B752C7.pnach b/patches/SLES-53810_A1B752C7.pnach index 1a409437..1422a2ff 100644 --- a/patches/SLES-53810_A1B752C7.pnach +++ b/patches/SLES-53810_A1B752C7.pnach @@ -2,7 +2,7 @@ gametitle=Sensible Soccer 2006 (PAL-M5) (SLES-53810) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,000ee2cc,word,3c1b3f40 // 3c013f80 hor fov diff --git a/patches/SLES-53812_A38C6B77.pnach b/patches/SLES-53812_A38C6B77.pnach index d34d38c6..ca31777a 100644 --- a/patches/SLES-53812_A38C6B77.pnach +++ b/patches/SLES-53812_A38C6B77.pnach @@ -1,14 +1,14 @@ -gametitle=Codename - Kids Next Door - Operation V.I.D.E.O.G.A.M.E. [PAL-M4] (SLES_538.12) +gametitle=Codename - Kids Next Door - Operation V.I.D.E.O.G.A.M.E. [PAL-M4] (SLES_538.12) A38C6B77 [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Gameplay 16:9 patch=1,EE,20C156A4,extended,3F400000 //3F800000 (Increases hor. axis) [50 FPS] author=PeterDelta -comment=Unlocked at 50FPS +description=Might need EE Overclock at 130%. patch=1,EE,00755C20,byte,01 //02 \ No newline at end of file diff --git a/patches/SLES-53820_B1A38C05.pnach b/patches/SLES-53820_B1A38C05.pnach index 2b85ecbe..aadf5018 100644 --- a/patches/SLES-53820_B1A38C05.pnach +++ b/patches/SLES-53820_B1A38C05.pnach @@ -2,7 +2,7 @@ gametitle=Armored Core - Last Raven (PAL-E) (SLES-53820) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00174dd4,word,3c094455 // 3c024420 hor fov diff --git a/patches/SLES-53825_23B754F4.pnach b/patches/SLES-53825_23B754F4.pnach index c2fd5f30..40557b42 100644 --- a/patches/SLES-53825_23B754F4.pnach +++ b/patches/SLES-53825_23B754F4.pnach @@ -1,59 +1,86 @@ -gametitle=Project Zero 3 - The Tormented +gametitle=Project Zero 3: The Tormented * SLES-53825 * PAL-M5 * 23B754F4 +// Fatal Frame III: The Tormented + +// Widescreen & HD pnach by pgert. +// Credits to ElHecht, Little giant and nemesis2000. [Widescreen 16:9] gsaspectratio=16:9 -author=ElHecht, nemesis2000 and pgert -comment=Widescreen Hack -// ========== -// pgert@180218 -// http://forums.pcsx2.net/Thread-PCSX2-Widescreen-Game-Patches?pid=240786#pid240786 -// ========== -// This game has a sound-distortion when using the Spu2-X plug-in. -// Therefore (as a suggestion) use this special version of the plug-in: -// "https://forums.pcsx2.net/attachment.php?aid=65729". -// ========== -comment= Project Zero 3 - The Tormented * SLES-53825 * PAL-M5 * 23B754F4 -comment=- Widescreen & HD pnach by pgert. -comment=- Credits to ElHecht, Little giant and nemesis2000. -// ========== +author=pgert -// ========== -// HD-fixes for GSdx in HW-mode - makes no difference with Native Resolution or in SW-mode. -patch=1,EE,001573FC,word,00000000 // 0C055DD2 - disable Bloom for Cutscenes (originally by nemesis2000). -patch=1,EE,0036E268,word,43A30000 // 43A00000 - TC X-offset - without this patch set "TC Offset X" to 395 for HD-support (GSdx). -patch=1,EE,0036E26C,word,43660000 // 43600000 - TC Y-offset - without this patch set "TC Offset Y" to 790 for HD-support (GSdx). -patch=1,EE,0037098C,word,439F8000 // 43A00000 - fixes an imperfection with the MenuZoom in HD. -patch=1,EE,00370990,word,435F8000 // 43600000 - fixes an imperfection with the MenuZoom in HD. -// ========== -patch=1,EE,0032885C,word,3F400000 // 3F800000 - X-axis of GamePlay - 16:9. -// patch=1,EE,0032885C,word,3F400000 // - 16:10. -// ========== -// patch=1,EE,00370508,word,3F400000 // 3F800000 - CameraCircle-display modification (optional). -// patch=1,EE,00370524,word,3F400000 // 3F800000 - CameraCircle-display modification (optional). -// patch=1,EE,00370538,word,3F400000 // 3F800000 - CameraCircle-display modification (optional). -// ========== -patch=1,EE,003705A8,word,3F400000 // 3F800000 - Camera TextDisplay - 16:9. -patch=1,EE,003705B4,word,3F400000 // 3F800000 - Camera PointDisplay - 16:9. -// patch=1,EE,003705A8,word,3F555555 // - 16:10. -// patch=1,EE,003705B4,word,3F555555 // - 16:10. -// ========== +patch=1,EE,0032885C,word,3F400000 // 3F800000 - X-axis of GamePlay -// ========== -// 16:9 Cinematics hacks by pgert (thanks to nemesis2000). +// CameraCircle-display modification +patch=1,EE,00370508,word,3F400000 // 3F800000 +patch=1,EE,00370524,word,3F400000 // 3F800000 +patch=1,EE,00370538,word,3F400000 // 3F800000 + +patch=1,EE,003705A8,word,3F400000 // 3F800000 - Camera TextDisplay +patch=1,EE,003705B4,word,3F400000 // 3F800000 - Camera PointDisplay + +// Cinematics hacks by pgert (thanks to nemesis2000). +// Side-effect: The "Game Over" sign is displayed wrongly. patch=1,EE,003713A0,word,43F00000 // 44200000 - width of Cinematics. // 44200000h = 640f : 640 * 0,75 = 480 : 480f = 43F00000h patch=1,EE,003713A8,word,42D40000 // 3F800000 - X-axis placement of Cinematics. -// ========== -// 16:10 Cinematics hacks by pgert (thanks to nemesis2000). -// patch=1,EE,003713A0,word,44048000 // 44200000 - width of Cinematics. -// 44200000h = 640f : 640 * 0,828125 = 530 : 530f = 44048000h -// patch=1,EE,003713A8,word,42830000 // 3F800000 - X-axis placement of Cinematics. // 42400000h appears to be the reference point here. + // ========== -// Problem on both 16:9 & 16:10 because of the Cinematics hacks: -// - The "Game Over" sign is displayed wrongly. + +[Widescreen/16:10] +gsaspectratio=Stretch +author=pgert + +patch=1,EE,0032885C,word,3F555555 + +patch=1,EE,00370508,word,3F555555 +patch=1,EE,00370524,word,3F555555 +patch=1,EE,00370538,word,3F555555 + +patch=1,EE,003705A8,word,3F555555 +patch=1,EE,003705B4,word,3F555555 + +patch=1,EE,003713A0,word,44055555 +patch=1,EE,003713A8,word,42830000 + +// ========== + +[Widescreen/15:10] +gsaspectratio=Stretch +author=pgert + +patch=1,EE,0032885C,word,3F638E39 + +patch=1,EE,00370508,word,3F638E39 +patch=1,EE,00370524,word,3F638E39 +patch=1,EE,00370538,word,3F638E39 + +patch=1,EE,003705A8,word,3F638E39 +patch=1,EE,003705B4,word,3F638E39 + +patch=1,EE,003713A0,word,440E38E4 +patch=1,EE,003713A8,word,42830000 // same as 16:10 - might need proper porting. + // ========== +[Disable Overbloom on Cutscenes] +author=nemesis2000 & pgert +patch=1,EE,001573FC,word,00000000 // 0C055DD2 + +[Upscaling offset fix] +author=pgert +description=Fixes offset glitch +patch=1,EE,0036E268,word,43A30000 // 43A00000 - TC X-offset +// - corresponds to having "TC Offset X" set to 395 (GSdx). +patch=1,EE,0036E26C,word,43660000 // 43600000 - TC Y-offset +// - corresponds to having "TC Offset Y" set to 790 (GSdx). + +[Upscaling MenuZoom fix] +author=pgert +description=Fixes MenuZoom glitch +patch=1,EE,0037098C,word,439F8000 // 43A00000 +patch=1,EE,00370990,word,435F8000 // 43600000 + // ========== // Notes (by pgert). // ========== @@ -72,5 +99,3 @@ patch=1,EE,003713A8,word,42D40000 // 3F800000 - X-axis placement of Cinematics. // patch=1,EE,003709CC,word,44C00000 // 45000000 // - Corrects the darkening caused by 0036F2D4, but darkens photos and causes minor corruptions in scene-transitions. // ========== - - diff --git a/patches/SLES-53827_6BD0E9C2.pnach b/patches/SLES-53827_6BD0E9C2.pnach new file mode 100644 index 00000000..27ccc182 --- /dev/null +++ b/patches/SLES-53827_6BD0E9C2.pnach @@ -0,0 +1,14 @@ +gametitle=Tom Clancy's Splinter Cell - Double Agent PAL-M SLES-53827 ABE2FDE9 secundary CRC +//Game changes ELF when select single player to SC4_OFF.ELF with active CRC 6BD0E9C2 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=ElHecht +comment=16:9 Widescreen hack for Solo/Coop mode by ElHecht. +patch=1,EE,001F483C,word,3C0D3F40 // 3C0D3F80 - X-axis + +[480p Mode] +gsinterlacemode=1 +author=Gabominated +description=SDTV 480p mode at start. Might need enable EE Overclock to be stable. +patch=1,EE,00114938,word,24120050 //00069403 diff --git a/patches/SLES-53827_ABE2FDE9.pnach b/patches/SLES-53827_ABE2FDE9.pnach new file mode 100644 index 00000000..64dbff95 --- /dev/null +++ b/patches/SLES-53827_ABE2FDE9.pnach @@ -0,0 +1,11 @@ +gametitle=Tom Clancy's Splinter Cell - Double Agent PAL-M SLES-53827 ABE2FDE9 secundary CRC 6BD0E9C2 +//Corresponds to the main crc to activate the secondary crc 6BD0E9C2 called SC4_OFF.ELF + +[Widescreen 16:9] +gsaspectratio=16:9 +author=ElHecht +comment=16:9 Widescreen hack for Solo/Coop mode by ElHecht. + +[480p Mode] +author=Gabominated +description=SDTV 480p mode at start. Might need enable EE Overclock to be stable. diff --git a/patches/SLES-53828_C5FD7217.pnach b/patches/SLES-53828_C5FD7217.pnach index a113665e..af60e767 100644 --- a/patches/SLES-53828_C5FD7217.pnach +++ b/patches/SLES-53828_C5FD7217.pnach @@ -2,7 +2,7 @@ gametitle=We Love Katamari (SLES-53828) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,00108400,word,3c0143d6 diff --git a/patches/SLES-53830_6B97BBC8.pnach b/patches/SLES-53830_6B97BBC8.pnach index 29aa8c98..26340f7f 100644 --- a/patches/SLES-53830_6B97BBC8.pnach +++ b/patches/SLES-53830_6B97BBC8.pnach @@ -1,9 +1,9 @@ -gametitle=Psychonauts (E)(SLES-53830) +gametitle=Psychonauts (PAL-M) (SLES-53830) 6B97BBC8 [Widescreen 16:9] gsaspectratio=16:9 author=pelvicthrustman -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Widescreen patch=1,EE,001ea96c,word,3c013f40 //00000000 (horizontal fov) patch=1,EE,001ea970,word,4481f800 //00000000 @@ -14,9 +14,8 @@ patch=1,EE,001ea98c,word,46061983 //00000000 patch=1,EE,001e90c4,word,340f02ab //962f0038 patch=1,EE,001292d8,word,240e02ab //240e0200 - [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,00367E6C,word,00000000 //00000001 -patch=1,EE,01172F90,word,3F000000 //3F800000 +patch=1,EE,01172F90,word,3F000000 //3F800000 \ No newline at end of file diff --git a/patches/SLES-53831_78EF5FF7.pnach b/patches/SLES-53831_78EF5FF7.pnach index 8ec07f05..81791f0d 100644 --- a/patches/SLES-53831_78EF5FF7.pnach +++ b/patches/SLES-53831_78EF5FF7.pnach @@ -2,5 +2,5 @@ gametitle=BloodRayne 2 (PAL-M) SLES-53831 78EF5FF7 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0033E760,word,28630001 //28630002 \ No newline at end of file diff --git a/patches/SLES-53848_40893E32.pnach b/patches/SLES-53848_40893E32.pnach index f4f3443b..c635158e 100644 --- a/patches/SLES-53848_40893E32.pnach +++ b/patches/SLES-53848_40893E32.pnach @@ -2,7 +2,7 @@ gametitle=Flow - Urban Dance Uprising (E)(SLES-53848) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53850_3692A951.pnach b/patches/SLES-53850_3692A951.pnach index 229594f5..2e4a559d 100644 --- a/patches/SLES-53850_3692A951.pnach +++ b/patches/SLES-53850_3692A951.pnach @@ -1,30 +1,30 @@ -gametitle=Teenage Mutant Ninja Turtles 3 - Mutant Nightmare (PAL-M5) (SLES-53850) +gametitle=Teenage Mutant Ninja Turtles 3 - Mutant Nightmare (PAL-M5) (SLES-53850) 3692A951 [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen Hack 16:9 -// -// 16:9 +description=Renders the game in 16:9 aspect ratio patch=1,EE,0028ff90,word,3c023fe3 // 3c023faa ver fov patch=1,EE,0028ff98,word,34428e38 // 3442aaab ver fov patch=1,EE,0028fe50,word,3c013f40 // 00000000 zoom patch=1,EE,0028fe54,word,44810000 // 00000000 patch=1,EE,0028fe58,word,46006303 // 00000000 - [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,10750C44,extended,04000001 //04000002 -patch=1,EE,E001D70A,extended,005B3190 +patch=1,EE,E002D70A,extended,005B3190 patch=1,EE,205B3190,extended,3CA3D70A //3D23D70A 50hz -patch=1,EE,E0018889,extended,005B3190 +patch=1,EE,205B3188,extended,42480000 +patch=1,EE,E0028889,extended,005B3190 patch=1,EE,205B3190,extended,3C888889 //3D088889 60hz +patch=1,EE,205B3188,extended,42700000 -[Mode 480p] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Force progressive scan when selecting 60hz +description=SDTV 480p mode when selecting 60 Hz patch=1,EE,E0030000,extended,005B30C0 patch=1,EE,201009F4,extended,24110000 patch=1,EE,201009F8,extended,24120050 diff --git a/patches/SLES-53853_73C560BA.pnach b/patches/SLES-53853_73C560BA.pnach index 52251125..1a94076b 100644 --- a/patches/SLES-53853_73C560BA.pnach +++ b/patches/SLES-53853_73C560BA.pnach @@ -2,7 +2,7 @@ gametitle=Final Fight: Streetwise (SLES-53853) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,00180308,word,3c043f71 patch=1,EE,0018030c,word,3489d5a2 patch=1,EE,00180310,word,3c03bf71 diff --git a/patches/SLES-53862_5A631627.pnach b/patches/SLES-53862_5A631627.pnach index 474c3577..bee79f92 100644 --- a/patches/SLES-53862_5A631627.pnach +++ b/patches/SLES-53862_5A631627.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 5 - Xtreme Legends (PAL-G) (SLES-53862) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // // 16:9 patch=1,EE,00146d28,word,3c0243b4 // 3c0243a0 hor fov value1 diff --git a/patches/SLES-53866_290C8D74.pnach b/patches/SLES-53866_290C8D74.pnach index 6583b8a8..f51d7d58 100644 --- a/patches/SLES-53866_290C8D74.pnach +++ b/patches/SLES-53866_290C8D74.pnach @@ -2,7 +2,7 @@ gametitle=Over the Hedge (E)(SLES-53866) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53869_44E5F136.pnach b/patches/SLES-53869_44E5F136.pnach index b758fdd2..54c41b59 100644 --- a/patches/SLES-53869_44E5F136.pnach +++ b/patches/SLES-53869_44E5F136.pnach @@ -2,7 +2,7 @@ gametitle=Crazy Frog Racer (E)(SLES-53869) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53886_ADDFF505.pnach b/patches/SLES-53886_ADDFF505.pnach index 0510d812..a5db951c 100644 --- a/patches/SLES-53886_ADDFF505.pnach +++ b/patches/SLES-53886_ADDFF505.pnach @@ -1,4 +1,4 @@ -gametitle=BLACK (PAL) (SLES_538.86) +gametitle=BLACK (PAL-M) (SLES_538.86) ADDFF505 [Widescreen 16:9] gsaspectratio=16:9 @@ -15,7 +15,7 @@ patch=1,EE,205BCB90,word,3F400000 //3F800000 [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,1040DFF4,extended,02000001 patch=1,EE,E0040007,extended,003BD274 //50hz patch=1,EE,E001D70A,extended,005A929C @@ -26,4 +26,9 @@ patch=1,EE,E004000E,extended,003BD274 //60hz patch=1,EE,E0018889,extended,005A929C patch=1,EE,205A929C,extended,3C888889 patch=1,EE,204BC93C,extended,3C888889 -patch=1,EE,2040EC2C,extended,3C888889 \ No newline at end of file +patch=1,EE,2040EC2C,extended,3C888889 + +[Video Mode] +author=Gabominated +description=Always display standard-480p video selector. +patch=1,EE,003BE824,word,00000001 \ No newline at end of file diff --git a/patches/SLES-53899_19DA6238.pnach b/patches/SLES-53899_19DA6238.pnach index 537922fd..9f408c05 100644 --- a/patches/SLES-53899_19DA6238.pnach +++ b/patches/SLES-53899_19DA6238.pnach @@ -2,7 +2,7 @@ gametitle=Pro Evolution Soccer Management (E)(SLES-53899) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-53900_C7993BCC.pnach b/patches/SLES-53900_C7993BCC.pnach index c7b0e92f..c7c3444a 100644 --- a/patches/SLES-53900_C7993BCC.pnach +++ b/patches/SLES-53900_C7993BCC.pnach @@ -3,7 +3,7 @@ gametitle=Kaido Racer 2 PAL (SLES_539.00) [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,203FDFD0,extended,3F400000 //3F800000 (Increases hor. axis) diff --git a/patches/SLES-53908_05177ECE.pnach b/patches/SLES-53908_05177ECE.pnach index 2393dff6..d8261ba0 100644 --- a/patches/SLES-53908_05177ECE.pnach +++ b/patches/SLES-53908_05177ECE.pnach @@ -81,5 +81,13 @@ patch=1,EE,0016C694,word,3C013F80 [50/60 FPS] author=PeterDelta -comment=Might need EE overclocking to be stable. -patch=1,EE,0012795C,word,10000003 // 10400003 - 0043102B sltu v0,v1 +description=Might need EE Overclock at 180%. +patch=1,EE,00125488,word,14400003 //10400003 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,003B905C,extended,00000001 +patch=1,EE,20392208,extended,3F800000 +patch=1,EE,20124A94,extended,240301C0 \ No newline at end of file diff --git a/patches/SLES-53914_D65DF63F.pnach b/patches/SLES-53914_D65DF63F.pnach index 9341de79..8d98e2d7 100644 --- a/patches/SLES-53914_D65DF63F.pnach +++ b/patches/SLES-53914_D65DF63F.pnach @@ -3,7 +3,7 @@ gametitle=The Plan [PAL-Spain] (SLES_539.14) D65DF63F [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,0010E324,word,3C033F40 //3C033F80 patch=1,EE,001719A8,word,3C013F40 //hud cross x-fov patch=1,EE,0025CF18,word,3C023F40 //hud cross y-fov @@ -11,5 +11,5 @@ patch=1,EE,0026C0B8,word,3C023FA0 //hud health [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,001B1B68,word,24040001 //24040002 \ No newline at end of file diff --git a/patches/SLES-53915_7110E50F.pnach b/patches/SLES-53915_7110E50F.pnach index 52c55718..4d43a498 100644 --- a/patches/SLES-53915_7110E50F.pnach +++ b/patches/SLES-53915_7110E50F.pnach @@ -2,7 +2,7 @@ gametitle=Space War Attack (E)(SLES-53915) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,00343ff8,word,44554000 //44200000 X-Fov diff --git a/patches/SLES-53920_98E77EBE.pnach b/patches/SLES-53920_98E77EBE.pnach index 57c630e7..8140075b 100644 --- a/patches/SLES-53920_98E77EBE.pnach +++ b/patches/SLES-53920_98E77EBE.pnach @@ -2,7 +2,7 @@ gametitle=Speed Machines III (E)(SLES-53920) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53936_95DDD361.pnach b/patches/SLES-53936_95DDD361.pnach index dedbe944..6dbdf7d4 100644 --- a/patches/SLES-53936_95DDD361.pnach +++ b/patches/SLES-53936_95DDD361.pnach @@ -1,8 +1,8 @@ -gametitle=Snow Rider (E)(SLES-53936) +gametitle=Snow Rider PAL-E SLES-53936 95DDD361 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -13,4 +13,7 @@ patch=1,EE,001eb6d8,word,4481f000 patch=1,EE,001eb6dc,word,461e6303 patch=1,EE,001eb6e0,word,0805a57a - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0014E4F4,word,1460000A //1060000A \ No newline at end of file diff --git a/patches/SLES-53940_B112BD24.pnach b/patches/SLES-53940_B112BD24.pnach index c8493999..cd78ee02 100644 --- a/patches/SLES-53940_B112BD24.pnach +++ b/patches/SLES-53940_B112BD24.pnach @@ -2,7 +2,7 @@ gametitle=Smarties - Meltdown (E)(SLES-53940) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53948_44ACE0A6.pnach b/patches/SLES-53948_44ACE0A6.pnach index 778c9526..a966346c 100644 --- a/patches/SLES-53948_44ACE0A6.pnach +++ b/patches/SLES-53948_44ACE0A6.pnach @@ -2,7 +2,7 @@ gametitle=Winter Sports (E)(SLES-53948) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-53959_72A924F1.pnach b/patches/SLES-53959_72A924F1.pnach index 75460732..a61b125f 100644 --- a/patches/SLES-53959_72A924F1.pnach +++ b/patches/SLES-53959_72A924F1.pnach @@ -2,7 +2,7 @@ gametitle=Pac-Man World 3 (PAL-M5)(SLES-53959) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ICUP321 +author=ICUP321 //Widescreen hack 16:9 (Set "Normal" in Picture Options) diff --git a/patches/SLES-53963_8A1332C1.pnach b/patches/SLES-53963_8A1332C1.pnach new file mode 100644 index 00000000..d64e1ca7 --- /dev/null +++ b/patches/SLES-53963_8A1332C1.pnach @@ -0,0 +1,6 @@ +gametitle=Downhill Slalom PAL-E SLES-53963 8A1332C1 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0014EB64,word,1460000A //1060000A \ No newline at end of file diff --git a/patches/SLES-53965_ACE7A856.pnach b/patches/SLES-53965_ACE7A856.pnach index 9eb9c41b..d4c91b64 100644 --- a/patches/SLES-53965_ACE7A856.pnach +++ b/patches/SLES-53965_ACE7A856.pnach @@ -3,7 +3,7 @@ gametitle=Plan, Th3 (PAL-E) SLES-53965 ACE7A856 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,0010E3F4,word,3C033F40 //3C033F80 patch=1,EE,00172068,word,3C013F40 //hud cross x-fov patch=1,EE,0025E6AC,word,3C023F40 //hud cross y-fov @@ -11,5 +11,5 @@ patch=1,EE,0026DD38,word,3C023FA0 //hud health [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,001B25C8,word,24040001 //24040002 \ No newline at end of file diff --git a/patches/SLES-53971_9C593C78.pnach b/patches/SLES-53971_9C593C78.pnach index c51aa538..131671da 100644 --- a/patches/SLES-53971_9C593C78.pnach +++ b/patches/SLES-53971_9C593C78.pnach @@ -2,7 +2,7 @@ gametitle=The Godfather [PAL-Spain] (SLES_539.71) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -20,4 +20,4 @@ patch=1,EE,006617B8,word,00000001 [50 FPS] author=Gabominated description=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,202E4ECC,extended,00000000 //14400008 //fps \ No newline at end of file +patch=1,EE,202E4ECC,extended,00000000 //14400008 //fps diff --git a/patches/SLES-53974_945FBF31.pnach b/patches/SLES-53974_945FBF31.pnach index a4e04a46..c37d3491 100644 --- a/patches/SLES-53974_945FBF31.pnach +++ b/patches/SLES-53974_945FBF31.pnach @@ -2,7 +2,7 @@ gametitle=Dragon Quest VIII [PAL-M] SLES-53974 945FBF31 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,203EE164,extended,00000002 patch=1,EE,E0010000,extended,00639ACC patch=1,EE,203EE164,extended,00000001 //FPS diff --git a/patches/SLES-53976_27B3F625.pnach b/patches/SLES-53976_27B3F625.pnach index ebd69757..0b8efc69 100644 --- a/patches/SLES-53976_27B3F625.pnach +++ b/patches/SLES-53976_27B3F625.pnach @@ -2,7 +2,7 @@ gametitle=Evolution GT (PAL-M5) (SLES-53976) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00145154,word,4483e800 // 44830800 diff --git a/patches/SLES-53979_E71273AC.pnach b/patches/SLES-53979_E71273AC.pnach index 8cd3a461..13f025f5 100644 --- a/patches/SLES-53979_E71273AC.pnach +++ b/patches/SLES-53979_E71273AC.pnach @@ -1,10 +1,23 @@ gametitle=Torrente 3 - El Protector (PAL-S) SLES-53979 E71273AC -[Mode 480p] +[Widescreen 16:9] +gsaspectratio=16:9 +author=Arapapa, ported by PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00253B28,word,08123684 +patch=1,EE,0048DA10,word,3C013F40 +patch=1,EE,0048DA14,word,4481F000 +patch=1,EE,0048DA18,word,C6010068 +patch=1,EE,0048DA1C,word,C602006C +patch=1,EE,0048DA20,word,461E0843 +patch=1,EE,0048DA24,word,E6010068 +patch=1,EE,0048DA28,word,08094ECC + +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode 480p at startup. +description=SDTV 480p mode at start. patch=1,EE,20102CD8,extended,00069403 -patch=1,EE,20997EA0,extended,000001E0 -patch=1,EE,E0020000,extended,0056F5BC +patch=1,EE,E0010000,extended,0056F5BC patch=1,EE,20102CD8,extended,24120050 -patch=1,EE,20997EA0,extended,00000200 \ No newline at end of file +patch=1,EE,0010471C,extended,64420000 \ No newline at end of file diff --git a/patches/SLES-53984_2EC49E65.pnach b/patches/SLES-53984_2EC49E65.pnach new file mode 100644 index 00000000..ed4d246c --- /dev/null +++ b/patches/SLES-53984_2EC49E65.pnach @@ -0,0 +1,15 @@ +gametitle=Ice Age 2 - The Meltdown (PAL-M) SLES-53984 2EC49E65 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Enable native widescreen +patch=1,EE,003B54E8,word,00000100 +patch=1,EE,003B6C5C,word,00000001 + +[50 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,003B4DF0,extended,00000032 +patch=1,EE,E0010001,extended,003C6744 +patch=1,EE,003B4DF0,extended,00000019 \ No newline at end of file diff --git a/patches/SLES-53991_59B5D614.pnach b/patches/SLES-53991_59B5D614.pnach index 8efe35c2..b3e2639a 100644 --- a/patches/SLES-53991_59B5D614.pnach +++ b/patches/SLES-53991_59B5D614.pnach @@ -2,7 +2,7 @@ gametitle=Urban Chaos - Riot Response (PAL-M5) (SLES-53991) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00655260,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-54002_3F0452DE.pnach b/patches/SLES-54002_3F0452DE.pnach index 88f43170..ba86d9a4 100644 --- a/patches/SLES-54002_3F0452DE.pnach +++ b/patches/SLES-54002_3F0452DE.pnach @@ -1,13 +1,22 @@ -gametitle=FlatOut 2 [PAL-M4] (SLES_540.02) +gametitle=FlatOut 2 [PAL-M4] (SLES_540.02) 3F0452DE [Widescreen 16:9] gsaspectratio=16:9 -author=El_Patas -comment=Widescreen Hack - -//Gameplay 16:9 -patch=1,EE,003A1F28,word,3C013F14 //3C013F00 Zoom -patch=1,EE,002D6650,word,3C014010 //3C014040 Y-FOV -patch=1,EE,00234F18,word,3C013F8A //3C013F80 Y-FOV car menus - +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,001B21A0,extended,3C013F94 //gameplay +patch=1,EE,00233F50,extended,3C013F30 +patch=1,EE,00325628,extended,3C013F30 +patch=1,EE,002D5F64,extended,3C013F80 //car selection +patch=1,EE,0020D4FC,extended,3C013F80 +patch=1,EE,E0020001,extended,00A2D49C +patch=1,EE,002D5F64,extended,3C013F40 +patch=1,EE,0020D4FC,extended,3C013FAB +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,004A3494,extended,00000001 +patch=1,EE,004CCFD8,extended,00000000 +patch=1,EE,E001FFFE,extended,0041F7C4 +patch=1,EE,004A3494,extended,00000002 \ No newline at end of file diff --git a/patches/SLES-54007_B8435BF4.pnach b/patches/SLES-54007_B8435BF4.pnach index 3139d177..f41969ba 100644 --- a/patches/SLES-54007_B8435BF4.pnach +++ b/patches/SLES-54007_B8435BF4.pnach @@ -1,9 +1,9 @@ -gametitle=Cars [PAL-Spain] (SLES_540.07) +gametitle=Cars [PAL-Spain] (SLES_540.07) B8435BF4 [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Gameplay 16:9 patch=1,EE,00116D50,word,3C033CAE //3C033C8E Zoom @@ -19,17 +19,17 @@ patch=1,EE,001D5D78,word,3C023FAB //3C023F80 //patch=1,EE,00116D54,word,34635555 //3463FA34 //patch=1,EE,00116D48,word,3C023FAB //3C023F80 Y-FOV - -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,001B0F88,word,28630001 //0072182A slt v1,s2 -patch=1,EE,E0010000,extended,008B86A4 //004976B8 00000001 +description=Might need EE Overclock at 130%. +patch=1,EE,001B0F88,word,28630001 //0072182A +patch=1,EE,E0010000,extended,008B86A4 patch=1,EE,201B0F88,extended,0072182A -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps +description=SDTV 480p mode at start. patch=1,EE,00458B0C,word,3C050000 patch=1,EE,00458B14,word,3C060050 patch=1,EE,00458B1C,word,3C070001 diff --git a/patches/SLES-54033_BE69820A.pnach b/patches/SLES-54033_BE69820A.pnach index 24d12a58..8ae2120f 100644 --- a/patches/SLES-54033_BE69820A.pnach +++ b/patches/SLES-54033_BE69820A.pnach @@ -2,7 +2,7 @@ gametitle=Search & Destroy (E)(SLES-54033) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Wide Screen 16:9 diff --git a/patches/SLES-54066_DF217C0B.pnach b/patches/SLES-54066_DF217C0B.pnach new file mode 100644 index 00000000..4261417c --- /dev/null +++ b/patches/SLES-54066_DF217C0B.pnach @@ -0,0 +1,25 @@ +gametitle=X-Men - The Official Game PAL-M SLES-54066 DF217C0B + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Widescreen fix +patch=1,EE,004A3C50,extended,00000001 +patch=1,EE,20A0FCF0,extended,3F400000 + +[Remove Blackbars] +author=PeterDelta +description=Removes black bars in cutscenes +patch=1,EE,00B0B198,extended,00000000 +patch=1,EE,00B0B1D8,extended,00000000 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,004A3C54,word,42480000 //41C80000 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0042C538,word,24120050 \ No newline at end of file diff --git a/patches/SLES-54080_436F4549.pnach b/patches/SLES-54080_436F4549.pnach index 7af7e69c..cbc32661 100644 --- a/patches/SLES-54080_436F4549.pnach +++ b/patches/SLES-54080_436F4549.pnach @@ -2,7 +2,7 @@ gametitle=World Super Police (E)(SLES-54080) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54087_E857CCF8.pnach b/patches/SLES-54087_E857CCF8.pnach index 61c1ff6e..344ce2c9 100644 --- a/patches/SLES-54087_E857CCF8.pnach +++ b/patches/SLES-54087_E857CCF8.pnach @@ -2,7 +2,7 @@ gametitle=Suikoden V (SLES_540.87) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,001b8804,word,3c023f40 //hor val diff --git a/patches/SLES-54097_8E8BB571.pnach b/patches/SLES-54097_8E8BB571.pnach index a444a6d9..ed0d45ae 100644 --- a/patches/SLES-54097_8E8BB571.pnach +++ b/patches/SLES-54097_8E8BB571.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 5 - Empires (PAL-G) (SLES-54097) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,00146de8,word,3c0243b4 // 3c0243a0 hor fov value1 diff --git a/patches/SLES-54114_C398F477.pnach b/patches/SLES-54114_C398F477.pnach index 9d21e74f..5456eef0 100644 --- a/patches/SLES-54114_C398F477.pnach +++ b/patches/SLES-54114_C398F477.pnach @@ -3,7 +3,7 @@ gametitle=Kingdom Hearts II (PAL-G) (SLES-54233) [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //16:9 patch=1,EE,00106d30,word,3c013f4c // c480004c patch=1,EE,00106d48,word,3421cccc // 4600a7c6 @@ -36,16 +36,23 @@ patch=1,EE,0037b2cc,word,3f400000 // 3f800000 //patch=1,EE,0037b2c8,word,3f555555 // 3f800000 font fix //patch=1,EE,0037b2cc,word,3f555555 // 3f800000 font fix -//black border fix +[Remove Blackbars] +author=ElHecht +description=Removes black bars in cutscenes patch=1,EE,0014aac8,word,24050000 // 24050200 patch=1,EE,0014aaf0,word,24050000 // 24050200 patch=1,EE,0014ab18,word,24050000 // 24050200 patch=1,EE,0014ab48,word,24050000 // 24050200 -//subtitles off -//patch=1,EE,00227774,word,11e00019 // 15e00019 - -//60 FPS -//patch=1,EE,0014cf74,word,340f0000 // 8e2f744c - - +[50 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,2035744C,extended,00000000 +patch=1,EE,E0010005,extended,0033EC84 //fmv +patch=1,EE,2035744C,extended,00000001 +patch=1,EE,203795E8,extended,3F99999A +patch=1,EE,2037D318,extended,3F99999A + +[Subtitles off] +description=Disable subtitles during scenes +patch=1,EE,00227774,word,11e00019 //15e00019 \ No newline at end of file diff --git a/patches/SLES-54115_A8DB29DF.pnach b/patches/SLES-54115_A8DB29DF.pnach new file mode 100644 index 00000000..e5cf5085 --- /dev/null +++ b/patches/SLES-54115_A8DB29DF.pnach @@ -0,0 +1,18 @@ +gametitle=Delta Force - Black Hawk Down - Team Sabre (PAL-M) SLES-54115 A8DB29DF + +[Widescreen 16:9] +gsaspectratio=16:9 +author=Arapapa +description=Widescreen fix +patch=1,EE,004640F8,word,3FE38E39 //3FAAAAAB Y-Fov +patch=1,EE,001B807C,word,08030000 //Zoom Fix +patch=1,EE,000C0000,word,3C013F52 +patch=1,EE,000C0004,word,4481F000 +patch=1,EE,000C0008,word,461E6303 +patch=1,EE,000C000C,word,E7AC0000 +patch=1,EE,000C0010,word,0806E020 + +[50 FPS] +author=PeterDelta +description=Might need EE Overclock (180%). +patch=1,EE,001D3B28,word,1460000A \ No newline at end of file diff --git a/patches/SLES-54116_1E917B2D.pnach b/patches/SLES-54116_1E917B2D.pnach index a75f6f52..39c83cfe 100644 --- a/patches/SLES-54116_1E917B2D.pnach +++ b/patches/SLES-54116_1E917B2D.pnach @@ -2,7 +2,7 @@ gametitle=Operation WinBack 2 - Project Poseidon (PAL-E) (SLES-54116) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002f0e50,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-54117_28241DFE.pnach b/patches/SLES-54117_28241DFE.pnach index 26b8033c..569c7831 100644 --- a/patches/SLES-54117_28241DFE.pnach +++ b/patches/SLES-54117_28241DFE.pnach @@ -1,4 +1,4 @@ -gametitle=Torrente 3 - The Protector (E)(SLES-54117) +gametitle=Torrente 3 - The Protector (PAL-E) (SLES-54117) 28241DFE [Widescreen 16:9] gsaspectratio=16:9 @@ -13,11 +13,11 @@ patch=1,EE,0048de60,word,461e0843 patch=1,EE,0048de64,word,e6010068 patch=1,EE,0048de68,word,08094f14 -[Mode 480p] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode 480p at startup. +description=SDTV 480p mode at start. patch=1,EE,20102CD8,extended,00069403 -patch=1,EE,20A87D90,extended,000001E0 -patch=1,EE,E0020000,extended,0056FA3C +patch=1,EE,E0010000,extended,0056FA3C patch=1,EE,20102CD8,extended,24120050 -patch=1,EE,20A87D90,extended,00000200 \ No newline at end of file +patch=1,EE,0010471C,extended,64420000 \ No newline at end of file diff --git a/patches/SLES-54120_4618791D.pnach b/patches/SLES-54120_4618791D.pnach new file mode 100644 index 00000000..4b1d9f2e --- /dev/null +++ b/patches/SLES-54120_4618791D.pnach @@ -0,0 +1,6 @@ +gametitle=The Snow Queen Quest PAL-M SLES-54120 4618791D + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0024B234,word,2C420001 //2C420002 \ No newline at end of file diff --git a/patches/SLES-54125_79F6D5C9.pnach b/patches/SLES-54125_79F6D5C9.pnach new file mode 100644 index 00000000..df15d26d --- /dev/null +++ b/patches/SLES-54125_79F6D5C9.pnach @@ -0,0 +1,6 @@ +gametitle=Robin Hood's Quest PAL-M SLES-54125 79F6D5C9 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,002257F4,word,2C420001 //2C420002 \ No newline at end of file diff --git a/patches/SLES-54137_5CC61637.pnach b/patches/SLES-54137_5CC61637.pnach index ccb47535..613b81da 100644 --- a/patches/SLES-54137_5CC61637.pnach +++ b/patches/SLES-54137_5CC61637.pnach @@ -1,16 +1,23 @@ -gametitle=Just Cause (E)(SLES-54137) +gametitle=Just Cause (PAL-M) (SLES-54137) 5CC61637 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Widescreen hack 16:9 //0000803f 0000803f 0000003f 66666645 patch=1,EE,207BEE08,extended,3FAAAAAB //3f800000 +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock at 180%. +patch=1,EE,003B860C,word,44800000 //45000010 -[50 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,003B860C,word,44800000 //45000010 bc1f 0x003B8A4C +description=SDTV 480p mode at start. +patch=1,EE,004C4C34,word,24110000 +patch=1,EE,004C4C38,word,24120050 +patch=1,EE,004C4C44,word,24130001 \ No newline at end of file diff --git a/patches/SLES-54146_11DADE15.pnach b/patches/SLES-54146_11DADE15.pnach index 94d35479..4d1ef50a 100644 --- a/patches/SLES-54146_11DADE15.pnach +++ b/patches/SLES-54146_11DADE15.pnach @@ -1,6 +1,14 @@ gametitle=Crusty Demons (PAL-M) (SLES-54146) 11DADE15 +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,008C4C68,word,3FE38E39 + [50/60 FPS] -author=HydL -comment=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,0083274C,extended,00000001 //00000002 fps \ No newline at end of file +author=HydL & PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,0083274C,extended,00000001 +patch=1,EE,E0010001,extended,00832A44 +patch=1,EE,0083274C,extended,00000002 \ No newline at end of file diff --git a/patches/SLES-54150_85495C17.pnach b/patches/SLES-54150_85495C17.pnach index 6be5d546..88dbcfa0 100644 --- a/patches/SLES-54150_85495C17.pnach +++ b/patches/SLES-54150_85495C17.pnach @@ -1,8 +1,8 @@ -gametitle=Bionicle Heroes (E)(SLES-54150) +gametitle=Bionicle Heroes PAL-M SLES-54150 85495C17 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -12,4 +12,7 @@ patch=1,EE,00388cf8,word,3c013f80 //3c013f40 //X-Fov patch=1,EE,00388d28,word,3c013f10 //3c013f40 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,001C9674,word,24020002 //24020004 \ No newline at end of file diff --git a/patches/SLES-54152_802F7B69.pnach b/patches/SLES-54152_802F7B69.pnach index 1e672aab..9943ea4c 100644 --- a/patches/SLES-54152_802F7B69.pnach +++ b/patches/SLES-54152_802F7B69.pnach @@ -1,6 +1,14 @@ gametitle=Ant Bully, The (PAL-M) SLES-54152 802F7B69 -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,0015CD54,word,2C620000 //0062102B \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,0015CD54,word,2C620000 //0062102B + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0010E8DC,word,24110000 +patch=1,EE,0010E8E0,word,24120050 +patch=1,EE,0010E8EC,word,24130001 \ No newline at end of file diff --git a/patches/SLES-54153_F0DD361F.pnach b/patches/SLES-54153_F0DD361F.pnach index 69c874aa..2537f387 100644 --- a/patches/SLES-54153_F0DD361F.pnach +++ b/patches/SLES-54153_F0DD361F.pnach @@ -2,7 +2,7 @@ gametitle=Virtua Pro Football (E)(SLES-54153) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54157_9A26910A.pnach b/patches/SLES-54157_9A26910A.pnach index e5922ce7..5a1f180c 100644 --- a/patches/SLES-54157_9A26910A.pnach +++ b/patches/SLES-54157_9A26910A.pnach @@ -2,7 +2,7 @@ gametitle=SnoCross 2 - Featuring Blair Morgan (E)(SLES-54157) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54158_7C7877F2.pnach b/patches/SLES-54158_7C7877F2.pnach index adf4ae91..0f8c9b78 100644 --- a/patches/SLES-54158_7C7877F2.pnach +++ b/patches/SLES-54158_7C7877F2.pnach @@ -2,7 +2,7 @@ gametitle=Hummer Badlands (E)(SLES-54158) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54161_A0B1D94A.pnach b/patches/SLES-54161_A0B1D94A.pnach index 50c0f4a5..2ae51872 100644 --- a/patches/SLES-54161_A0B1D94A.pnach +++ b/patches/SLES-54161_A0B1D94A.pnach @@ -2,7 +2,7 @@ gametitle=Super Dragon Ball Z [PAL] (SLES_541.61) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,002B15FC,word,3C023F10 //3C023F40 (Increases hor. axis) diff --git a/patches/SLES-54163_47166C2F.pnach b/patches/SLES-54163_47166C2F.pnach index 0220d36f..05071e7d 100644 --- a/patches/SLES-54163_47166C2F.pnach +++ b/patches/SLES-54163_47166C2F.pnach @@ -1,7 +1,7 @@ [Widescreen 16:9] gsaspectratio=16:9 comment=Naruto - Ultimate Ninja (PAL-M5) (SLES-54163) -comment=Widescreen Hack by ElHecht & Arapapa +author=ElHecht & Arapapa patch=1,EE,E0081100,extended,00100128 //Spanish patch=1,EE,20844FB0,extended,3f400000 //3f800000 X-Fov diff --git a/patches/SLES-54164_278722BF.pnach b/patches/SLES-54164_278722BF.pnach index f35338cb..c2e196a9 100644 --- a/patches/SLES-54164_278722BF.pnach +++ b/patches/SLES-54164_278722BF.pnach @@ -2,7 +2,7 @@ gametitle=DragonBall Z - Budokai Tenkaichi 2 (PAL-M6) (SLES-54164) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by sergx12 +author=sergx12 comment=Ported to PAL by ElHecht // 16:9 diff --git a/patches/SLES-54165_8DF14A24.pnach b/patches/SLES-54165_8DF14A24.pnach index e80aef35..a3a16b22 100644 --- a/patches/SLES-54165_8DF14A24.pnach +++ b/patches/SLES-54165_8DF14A24.pnach @@ -2,7 +2,7 @@ gametitle=One Piece - Grand Adventure (PAL-E) (SLES-54165) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002b56d8,word,3c013f40 diff --git a/patches/SLES-54167_247F025E.pnach b/patches/SLES-54167_247F025E.pnach index 3d61f7ba..947ea624 100644 --- a/patches/SLES-54167_247F025E.pnach +++ b/patches/SLES-54167_247F025E.pnach @@ -2,7 +2,7 @@ gametitle=Call of Duty 3 (PAL-M3) SLES-54167 247F025E [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,0053CF84,extended,00000002 patch=1,EE,E0010001,extended,00479D0C patch=1,EE,2053CF84,extended,00000001 \ No newline at end of file diff --git a/patches/SLES-54169_761CABB3.pnach b/patches/SLES-54169_761CABB3.pnach index c138726e..75c85f0f 100644 --- a/patches/SLES-54169_761CABB3.pnach +++ b/patches/SLES-54169_761CABB3.pnach @@ -2,5 +2,5 @@ gametitle=Aeon Flux (PAL-M) SLES-54169 761CABB3 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 300% EE Overclock to be stable. +description=Might need EE Overclock at 300%. patch=1,EE,00362EB8,word,28630001 //28630002 \ No newline at end of file diff --git a/patches/SLES-54172_627B8252.pnach b/patches/SLES-54172_627B8252.pnach index ef05c074..fddc33f6 100644 --- a/patches/SLES-54172_627B8252.pnach +++ b/patches/SLES-54172_627B8252.pnach @@ -1,9 +1,9 @@ -gametitle=Garfield 2 (E)(SLES-54172) +gametitle=Garfield 2 (PAL-M) (SLES-54172) 627B8252 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Gameplay 16:9 //Zoom fix @@ -15,8 +15,7 @@ patch=1,EE,002b124c,word,3c023eca //3c023f00 patch=1,EE,002b1274,word,3c023f80 //3c023faa patch=1,EE,002b1278,word,34420000 //3442aaab - [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,0021A580,word,1000000F \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,0021A594,word,14400006 //10400006 \ No newline at end of file diff --git a/patches/SLES-54182_301A1B6E.pnach b/patches/SLES-54182_301A1B6E.pnach index aef63af0..b85c502f 100644 --- a/patches/SLES-54182_301A1B6E.pnach +++ b/patches/SLES-54182_301A1B6E.pnach @@ -3,4 +3,10 @@ gametitle=Scarface - The World is Yours (MULTI4) (SLES-54182) [50 FPS] author=Gabominated comment=Patches the game to run at 50 FPS (Might need 180% EE Overclock to be stable). -patch=1,EE,00DAFCBC,word,00000000 //00000001 \ No newline at end of file +patch=1,EE,00DAFCBC,word,00000000 //00000001 + +[480p Mode] +gsinterlacemode=1 +author=Gabominated +description=SDTV 480p mode at start. Might need enable EE Overclock to be stable. +patch=1,EE,2072dc38,extended,24120050 diff --git a/patches/SLES-54188_DF3C13B6.pnach b/patches/SLES-54188_DF3C13B6.pnach index 5930efb4..ea54874c 100644 --- a/patches/SLES-54188_DF3C13B6.pnach +++ b/patches/SLES-54188_DF3C13B6.pnach @@ -2,7 +2,7 @@ gametitle=Avatar - The Legend of Aang (PAL-M4) (SLES-54188) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht //16:9 patch=1,EE,00142818,word,3c033fe3 // 3c033faa diff --git a/patches/SLES-54195_E788CEE1.pnach b/patches/SLES-54195_E788CEE1.pnach index 6c40f00d..29a5d1c0 100644 --- a/patches/SLES-54195_E788CEE1.pnach +++ b/patches/SLES-54195_E788CEE1.pnach @@ -2,7 +2,7 @@ gametitle=Turbo Trucks (E)(SLES-54195) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54200_151DF9C9.pnach b/patches/SLES-54200_151DF9C9.pnach index b4165f63..43b810dc 100644 --- a/patches/SLES-54200_151DF9C9.pnach +++ b/patches/SLES-54200_151DF9C9.pnach @@ -2,7 +2,7 @@ gametitle=Just Cause (E-F)(SLES-54200) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54203_7D2AF924.pnach b/patches/SLES-54203_7D2AF924.pnach index d7d3deb4..4480b514 100644 --- a/patches/SLES-54203_7D2AF924.pnach +++ b/patches/SLES-54203_7D2AF924.pnach @@ -2,7 +2,7 @@ gametitle= Pro Evolution Soccer 6 PAL UK [SLES-54203] [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by El_Patas +author=El_Patas //Gameplay patch=1,EE,00397920,word,3FAAAAAB //3F800000 (increases hor. axis) diff --git a/patches/SLES-54209_673AF937.pnach b/patches/SLES-54209_673AF937.pnach index b69ff13e..efa3c510 100644 --- a/patches/SLES-54209_673AF937.pnach +++ b/patches/SLES-54209_673AF937.pnach @@ -2,7 +2,7 @@ gametitle=The Sopranos: Road to Respect [PAL] (SLES_542.09) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00425280,word,3FC0D938 //3F90A3D7 (Increases hor. axis) diff --git a/patches/SLES-54211_1AD6EFD1.pnach b/patches/SLES-54211_1AD6EFD1.pnach new file mode 100644 index 00000000..39064dbf --- /dev/null +++ b/patches/SLES-54211_1AD6EFD1.pnach @@ -0,0 +1,8 @@ +gametitle=NHL 2K7 (PAL-M) SLES-54211 1AD6EFD1 + +[50 FPS] +author=PeterDelta +description=Unlocks internal FPS in replays +patch=1,EE,E0020002,extended,00708B7C +patch=1,EE,00708B7C,extended,00000001 +patch=1,EE,209B4D9C,extended,3C888880 \ No newline at end of file diff --git a/patches/SLES-54212_5BC56B16.pnach b/patches/SLES-54212_5BC56B16.pnach index e3f9fe53..a57017ad 100644 --- a/patches/SLES-54212_5BC56B16.pnach +++ b/patches/SLES-54212_5BC56B16.pnach @@ -2,7 +2,7 @@ gametitle=Agent Hugo - RoboRumble (E)(SLES-54212) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-54213_7FCA9ECB.pnach b/patches/SLES-54213_7FCA9ECB.pnach index 9d8e27e2..1660cfec 100644 --- a/patches/SLES-54213_7FCA9ECB.pnach +++ b/patches/SLES-54213_7FCA9ECB.pnach @@ -2,7 +2,7 @@ gametitle=Black Buccaneer (E)(SLES-54213) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-54215_1AFD7469.pnach b/patches/SLES-54215_1AFD7469.pnach index 02dc9e9d..a0e9aca5 100644 --- a/patches/SLES-54215_1AFD7469.pnach +++ b/patches/SLES-54215_1AFD7469.pnach @@ -1,24 +1,24 @@ gametitle=Monster House (PAL)(SLES-54215) -[Widescreen 16:9] -gsaspectratio=16:9 -author=Arapapa -comment=Widescreen Hack -//Widescreen hack 16:9 +//[Widescreen 16:9] +//gsaspectratio=16:9 +//author=Arapapa +//comment=Widescreen Hack +//After the first mission the game breaks on the other levels //Y-Fov + Zoom in //00000000 00000000 03150146 00000000 //763f013c 00f88144 42081f46 46011503 -patch=1,EE,001c610c,word,3c013f76 //00000000 -patch=1,EE,001c6110,word,4481f800 //00000000 -patch=1,EE,001c6114,word,461f0842 //46011503 -patch=1,EE,001c6118,word,46011503 //00000000 +//patch=1,EE,001c610c,word,3c013f76 //00000000 +//patch=1,EE,001c6110,word,4481f800 //00000000 +//patch=1,EE,001c6114,word,461f0842 //46011503 +//patch=1,EE,001c6118,word,46011503 //00000000 //Zoom out //0040023c 00008244 3c00a2c7 //dd3f023c 00008244 3c00a2c7 //Zoom value adjust : NTSC-K(3c023fdd), NTSC-U and PAL(3c023fe0) -patch=1,EE,001c60f8,word,3c023fe0 //3c024000 +//patch=1,EE,001c60f8,word,3c023fe0 //3c024000 ////////////////////////////////////// //zoom @@ -32,3 +32,11 @@ patch=1,EE,001c60f8,word,3c023fe0 //3c024000 author=asasega comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. patch=1,EE,0015BCC4,word,2C620000 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0010E34C,word,24110000 +patch=1,EE,0010E350,word,24120050 +patch=1,EE,0010E35C,word,24130001 \ No newline at end of file diff --git a/patches/SLES-54221_37E36C6D.pnach b/patches/SLES-54221_37E36C6D.pnach index 121df5f6..44e0ce65 100644 --- a/patches/SLES-54221_37E36C6D.pnach +++ b/patches/SLES-54221_37E36C6D.pnach @@ -1,14 +1,12 @@ -gametitle=LEGO Star Wars II - The Original Trilogy (E)(SLES-54221) +//gametitle=LEGO Star Wars II - The Original Trilogy (E)(SLES-54221) -[Widescreen 16:9] -gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +//[Widescreen 16:9] +//gsaspectratio=16:9 +//author=Arapapa. Frustum is completely broken and will stop rendering at the edges of the screen. //Widescreen hack 16:9 -patch=1,EE,00352b48,word,3c013f10 //3c013f40 -patch=1,EE,0012a250,word,3c013fab //3c013f80 -patch=1,EE,00174f0c,word,3c013f40 //3c013f80 -patch=1,EE,00174f88,word,3c013f40 //3c013f80 - - +//patch=1,EE,00352b48,word,3c013f10 //3c013f40 +//patch=1,EE,0012a250,word,3c013fab //3c013f80 +//patch=1,EE,00174f0c,word,3c013f40 //3c013f80 +//patch=1,EE,00174f88,word,3c013f40 //3c013f80 \ No newline at end of file diff --git a/patches/SLES-54223_8AE96AEE.pnach b/patches/SLES-54223_8AE96AEE.pnach index 71e6d72f..c2276955 100644 --- a/patches/SLES-54223_8AE96AEE.pnach +++ b/patches/SLES-54223_8AE96AEE.pnach @@ -3,10 +3,10 @@ gametitle=NASCAR '07 (PAL-E) SLES-54223 8AE96AEE [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,003E54A8,word,3F400000 //3F800000 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,002E068C,word,28420001 //28420002 \ No newline at end of file diff --git a/patches/SLES-54225_1F2269B6.pnach b/patches/SLES-54225_1F2269B6.pnach index 29e7454a..1e66efd9 100644 --- a/patches/SLES-54225_1F2269B6.pnach +++ b/patches/SLES-54225_1F2269B6.pnach @@ -2,7 +2,7 @@ gametitle=LMA Manager 2007 (E)(SLES-54225) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54232_C39FF377.pnach b/patches/SLES-54232_C39FF377.pnach index 72cb506b..0442299b 100644 --- a/patches/SLES-54232_C39FF377.pnach +++ b/patches/SLES-54232_C39FF377.pnach @@ -1,9 +1,9 @@ -gametitle=Kingdom Hearts II SLES_542.32 (France) +gametitle=Kingdom Hearts II (PAL-F) SLES-54232 C39FF377 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack - +author=ElHecht +description=Renders the game in 16:9 aspect ratio //16:9 patch=1,EE,00106d30,word,3c013f4c // c480004c patch=1,EE,00106d48,word,3421cccc // 4600a7c6 @@ -22,10 +22,24 @@ patch=1,EE,0037b2c4,word,3f400000 // 3f800000 patch=1,EE,0037b2c8,word,3f400000 // 3f800000 patch=1,EE,0037b2cc,word,3f400000 // 3f800000 -//black border fix +[Remove Blackbars] +author=ElHecht +description=Removes black bars in cutscenes patch=1,EE,0014aac8,word,24050000 // 24050200 patch=1,EE,0014aaf0,word,24050000 // 24050200 patch=1,EE,0014ab18,word,24050000 // 24050200 patch=1,EE,0014ab48,word,24050000 // 24050200 +[50 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,2035744C,extended,00000000 +patch=1,EE,E0010005,extended,0033EC84 //fmv +patch=1,EE,2035744C,extended,00000001 +patch=1,EE,203795E8,extended,3F99999A +patch=1,EE,2037D318,extended,3F99999A +[Subtitles off] +author=ElHecht +description=Disable subtitles during scenes +patch=1,EE,00227774,word,11e00019 //15e00019 \ No newline at end of file diff --git a/patches/SLES-54233_C398F477.pnach b/patches/SLES-54233_C398F477.pnach new file mode 100644 index 00000000..b763a2ca --- /dev/null +++ b/patches/SLES-54233_C398F477.pnach @@ -0,0 +1,40 @@ +gametitle=Kingdom Hearts II (PAL-G) SLES-54233 C398F477 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=ElHecht +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00106d30,word,3c013f4c //c480004c +patch=1,EE,00106d48,word,3421cccc //4600a7c6 +patch=1,EE,00106d4c,word,4481f800 //00000000 +patch=1,EE,00106d50,word,461fa503 //4600a503 +patch=1,EE,00106d74,word,3c1b3f40 //0000000 hor fov +patch=1,EE,00106d80,word,449bf000 //00000000 +patch=1,EE,00106d90,word,461effc2 //00000000 +patch=1,EE,00106d94,word,e61f004c //00000000 +patch=1,EE,00378574,word,43f90000 //43d00000 zoom for cutscenes (hides sudden pop-in) +patch=1,EE,0037b2c4,word,3f400000 //3f800000 font fix +patch=1,EE,0037b2c8,word,3f400000 //3f800000 +patch=1,EE,0037b2cc,word,3f400000 //3f800000 + +[Remove Blackbars] +author=ElHecht +description=Removes black bars in cutscenes +patch=1,EE,0014aac8,word,24050000 //24050200 +patch=1,EE,0014aaf0,word,24050000 //24050200 +patch=1,EE,0014ab18,word,24050000 //24050200 +patch=1,EE,0014ab48,word,24050000 //24050200 + +[50 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,2035744C,extended,00000000 +patch=1,EE,E0010005,extended,0033EC84 //fmv +patch=1,EE,2035744C,extended,00000001 +patch=1,EE,203795E8,extended,3F99999A +patch=1,EE,2037D318,extended,3F99999A + +[Subtitles off] +author=ElHecht +description=Disable subtitles during scenes +patch=1,EE,00227774,word,11e00019 //15e00019 \ No newline at end of file diff --git a/patches/SLES-54234_C39FF377.pnach b/patches/SLES-54234_C39FF377.pnach new file mode 100644 index 00000000..2244d252 --- /dev/null +++ b/patches/SLES-54234_C39FF377.pnach @@ -0,0 +1,40 @@ +gametitle=Kingdom Hearts II (PAL-I) SLES-54234 C39FF377 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=ElHecht +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00106d30,word,3c013f4c //c480004c +patch=1,EE,00106d48,word,3421cccc //4600a7c6 +patch=1,EE,00106d4c,word,4481f800 //00000000 +patch=1,EE,00106d50,word,461fa503 //4600a503 +patch=1,EE,00106d74,word,3c1b3f40 //0000000 hor fov +patch=1,EE,00106d80,word,449bf000 //00000000 +patch=1,EE,00106d90,word,461effc2 //00000000 +patch=1,EE,00106d94,word,e61f004c //00000000 +patch=1,EE,00378574,word,43f90000 //43d00000 zoom for cutscenes (hides sudden pop-in) +patch=1,EE,0037b2c4,word,3f400000 //3f800000 font fix +patch=1,EE,0037b2c8,word,3f400000 //3f800000 +patch=1,EE,0037b2cc,word,3f400000 //3f800000 + +[Remove Blackbars] +author=ElHecht +description=Removes black bars in cutscenes +patch=1,EE,0014aac8,word,24050000 //24050200 +patch=1,EE,0014aaf0,word,24050000 //24050200 +patch=1,EE,0014ab18,word,24050000 //24050200 +patch=1,EE,0014ab48,word,24050000 //24050200 + +[50 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,2035744C,extended,00000000 +patch=1,EE,E0010005,extended,0033EC84 //fmv +patch=1,EE,2035744C,extended,00000001 +patch=1,EE,203795E8,extended,3F99999A +patch=1,EE,2037D318,extended,3F99999A + +[Subtitles off] +author=ElHecht +description=Disable subtitles during scenes +patch=1,EE,00227774,word,11e00019 //15e00019 \ No newline at end of file diff --git a/patches/SLES-54235_C398F477.pnach b/patches/SLES-54235_C398F477.pnach index c352f1a0..7a2e2758 100644 --- a/patches/SLES-54235_C398F477.pnach +++ b/patches/SLES-54235_C398F477.pnach @@ -3,7 +3,7 @@ gametitle=Kingdom Hearts II (PAL-S) SLES-54235 C398F477 [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,00106d30,word,3c013f4c //c480004c patch=1,EE,00106d48,word,3421cccc //4600a7c6 patch=1,EE,00106d4c,word,4481f800 //00000000 @@ -16,14 +16,18 @@ patch=1,EE,00378574,word,43f90000 //43d00000 zoom for cutscenes (hides sudden po patch=1,EE,0037b2c4,word,3f400000 //3f800000 font fix patch=1,EE,0037b2c8,word,3f400000 //3f800000 patch=1,EE,0037b2cc,word,3f400000 //3f800000 -patch=1,EE,0014aac8,word,24050000 //24050200 black border fix + +[Remove Blackbars] +author=ElHecht +description=Removes black bars in cutscenes +patch=1,EE,0014aac8,word,24050000 //24050200 patch=1,EE,0014aaf0,word,24050000 //24050200 patch=1,EE,0014ab18,word,24050000 //24050200 patch=1,EE,0014ab48,word,24050000 //24050200 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,2035744C,extended,00000000 patch=1,EE,E0010005,extended,0033EC84 //fmv patch=1,EE,2035744C,extended,00000001 @@ -31,5 +35,6 @@ patch=1,EE,203795E8,extended,3F99999A patch=1,EE,2037D318,extended,3F99999A [Subtitles off] -comment=Disable subtitles during scenes +author=ElHecht +description=Disable subtitles during scenes patch=1,EE,00227774,word,11e00019 //15e00019 \ No newline at end of file diff --git a/patches/SLES-54237_E6C2F211.pnach b/patches/SLES-54237_E6C2F211.pnach index 26482b82..12c69d3f 100644 --- a/patches/SLES-54237_E6C2F211.pnach +++ b/patches/SLES-54237_E6C2F211.pnach @@ -9,5 +9,5 @@ patch=1,EE,204931D8,extended,3FAB851F // 3F800000 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,00385084,word,24030000 //24030001 \ No newline at end of file diff --git a/patches/SLES-54239_7B2DE9CC.pnach b/patches/SLES-54239_7B2DE9CC.pnach index 9df28749..f4ab4b3d 100644 --- a/patches/SLES-54239_7B2DE9CC.pnach +++ b/patches/SLES-54239_7B2DE9CC.pnach @@ -2,7 +2,7 @@ gametitle=Wild Arms 4 (PAL-E) (SLES-54239) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by nemesis2000 +author=nemesis2000 //Ported to PAL, added 16:10 support (ElHecht) // // 16:9 diff --git a/patches/SLES-54251_6BD9964D.pnach b/patches/SLES-54251_6BD9964D.pnach new file mode 100644 index 00000000..04e9e8f8 --- /dev/null +++ b/patches/SLES-54251_6BD9964D.pnach @@ -0,0 +1,16 @@ +gametitle=NBA Live 07 (PAL-S) SLES-54251 6BD9964D + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,2085A028,extended,3FE38E32 +patch=1,EE,0085FC5C,extended,00000000 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,003E64E4,word,24110000 +patch=1,EE,003E64E8,word,24120050 +patch=1,EE,003E64F4,word,24130001 \ No newline at end of file diff --git a/patches/SLES-54255_051A53EE.pnach b/patches/SLES-54255_051A53EE.pnach index 6fee222d..6c6b499f 100644 --- a/patches/SLES-54255_051A53EE.pnach +++ b/patches/SLES-54255_051A53EE.pnach @@ -2,7 +2,7 @@ gametitle=The King of Fighters: Maximum Impact 2 (SLES-54255) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0013b2f4,word,46000003 patch=1,EE,0013b2f8,word,7fb00010 diff --git a/patches/SLES-54305_F991B233.pnach b/patches/SLES-54305_F991B233.pnach index 14ee1958..e31facdc 100644 --- a/patches/SLES-54305_F991B233.pnach +++ b/patches/SLES-54305_F991B233.pnach @@ -2,7 +2,7 @@ gametitle=Demon Chaos (PAL-M5) (SLES-54305) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0017a87c,word,3c023f80 // 3c023faa hor fov diff --git a/patches/SLES-54306_CB4B48AF.pnach b/patches/SLES-54306_CB4B48AF.pnach index 752da4c3..82a5f9f5 100644 --- a/patches/SLES-54306_CB4B48AF.pnach +++ b/patches/SLES-54306_CB4B48AF.pnach @@ -2,7 +2,7 @@ gametitle=Cartoon Network Racing (E)(SLES-54306) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54307_CFC63DFF.pnach b/patches/SLES-54307_CFC63DFF.pnach index 267492fe..b53bad98 100644 --- a/patches/SLES-54307_CFC63DFF.pnach +++ b/patches/SLES-54307_CFC63DFF.pnach @@ -2,7 +2,7 @@ gametitle=Rayman - Raving Rabbids (PAL-M6)(SLES-54307) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ICUP321 +author=ICUP321 //Widescreen hack 16:9 diff --git a/patches/SLES-54308_38A5588B.pnach b/patches/SLES-54308_38A5588B.pnach index 3796b24c..dcc21ce2 100644 --- a/patches/SLES-54308_38A5588B.pnach +++ b/patches/SLES-54308_38A5588B.pnach @@ -1,15 +1,15 @@ gametitle=Phantasy Star Universe (PAL-M3) (SLES-54308) 38A5588B -[Widescreen 16:9] -gsaspectratio=16:9 -author=ElHecht -description=Widescreen Hack +//[Widescreen 16:9] +//gsaspectratio=16:9 +//author=ElHecht +//description=Widescreen Hack. Disabled due to causing SPS. // 16:9 -patch=1,EE,0085cb30,word,43400000 // 43800000 hor fov -patch=1,EE,0068f7a4,word,3c093c02 // 00000000 -patch=1,EE,0068f7a8,word,35293fab // 00000000 renderfix -patch=1,EE,0068f7f0,word,3c0a0028 // 00000000 -patch=1,EE,0068f7f4,word,ad493d78 // 00000000 +//patch=1,EE,0085cb30,word,43400000 // 43800000 hor fov +//patch=1,EE,0068f7a4,word,3c093c02 // 00000000 +//patch=1,EE,0068f7a8,word,35293fab // 00000000 renderfix +//patch=1,EE,0068f7f0,word,3c0a0028 // 00000000 +//patch=1,EE,0068f7f4,word,ad493d78 // 00000000 // 16:10 //patch=1,EE,0085cb30,word,43555555 // 43800000 hor fov diff --git a/patches/SLES-54309_60CB032B.pnach b/patches/SLES-54309_60CB032B.pnach index f9263037..d44e31ab 100644 --- a/patches/SLES-54309_60CB032B.pnach +++ b/patches/SLES-54309_60CB032B.pnach @@ -2,7 +2,7 @@ gametitle=Strawberry Shortcake: The Sweet Dreams Game [PAL-M6] (SLES_543.09) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001A1358,word,3C033FAB //3C033F80 (Increases hor. axis) diff --git a/patches/SLES-54311_27E407EB.pnach b/patches/SLES-54311_27E407EB.pnach index 52f35429..1dd674e0 100644 --- a/patches/SLES-54311_27E407EB.pnach +++ b/patches/SLES-54311_27E407EB.pnach @@ -2,7 +2,7 @@ gametitle=Noddy and the Magic Book (E)(SLES-54311) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54316_30204F8E.pnach b/patches/SLES-54316_30204F8E.pnach index e0f5b01b..56eae2af 100644 --- a/patches/SLES-54316_30204F8E.pnach +++ b/patches/SLES-54316_30204F8E.pnach @@ -1,4 +1,4 @@ -gametitle=Open Season (E)(SLES-54316) 30204F8E +gametitle=Open Season (PAL-M) (SLES-54316) 30204F8E [Widescreen 16:9] gsaspectratio=16:9 @@ -16,5 +16,5 @@ patch=1,EE,00291b6c,word,3c034300 //3c034334 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00567F18,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-54317_F9DD17AA.pnach b/patches/SLES-54317_F9DD17AA.pnach index fbbc9ac3..9cc17f75 100644 --- a/patches/SLES-54317_F9DD17AA.pnach +++ b/patches/SLES-54317_F9DD17AA.pnach @@ -1,11 +1,10 @@ gametitle=Ghost Rider (PAL-M) SLES-54317 F9DD17AA -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps -patch=1,EE,00399DA0,word,34050052 +description=SDTV 480p mode at start. +patch=1,EE,00399DA0,word,34050050 patch=1,EE,00399DA4,word,24030002 patch=1,EE,00399DA8,word,0000000C -patch=1,EE,00399DAC,word,03E00008 -patch=1,EE,005DB9C8,word,01852290 -patch=1,EE,005DB9F0,word,01852290 \ No newline at end of file +patch=1,EE,00399DAC,word,03E00008 \ No newline at end of file diff --git a/patches/SLES-54319_86263199.pnach b/patches/SLES-54319_86263199.pnach index ba3a6b70..78d3f148 100644 --- a/patches/SLES-54319_86263199.pnach +++ b/patches/SLES-54319_86263199.pnach @@ -1,11 +1,9 @@ -gametitle=Biker Mice from Mars (E)(SLES-54319) +gametitle=Biker Mice from Mars (PAL-M) SLES-54319 86263199 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa - -//Widescreen hack 16:9 - +author=Arapapa +description=Renders the game in 16:9 aspect ratio //X-Fov //02100046 4000a1e7 patch=1,EE,00134a00,word,08030000 //46001002 @@ -17,4 +15,10 @@ patch=1,EE,000c000c,word,4481f000 patch=1,EE,000c0010,word,461e0002 patch=1,EE,000c0014,word,0804d281 - +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. Might need EE Overclock (130%). +patch=1,EE,0010DB9C,word,24110000 +patch=1,EE,0010DBA0,word,24120050 +patch=1,EE,0010DBAC,word,24130001 \ No newline at end of file diff --git a/patches/SLES-54323_4078F8F1.pnach b/patches/SLES-54323_4078F8F1.pnach index 48a1418f..b6cf021c 100644 --- a/patches/SLES-54323_4078F8F1.pnach +++ b/patches/SLES-54323_4078F8F1.pnach @@ -1,9 +1,16 @@ -gametitle=Need for Speed - Carbon SLES-54323 4078F8F1 +gametitle=Need for Speed - Carbon (PAL-S-I) SLES-54323 4078F8F1 -[60 FPS] +[Widescreen 16:9] +gsaspectratio=16:9 author=PeterDelta -comment=Forces progressive scan and run at 60 fps +description=Enable native widescreen +patch=1,EE,E0010000,extended,00A6E894 +patch=1,EE,00A6E894,extended,00000001 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. patch=1,EE,00540A3C,word,24110000 -patch=1,EE,00540A40,word,24120052 -patch=1,EE,00540A4C,word,24130001 -patch=1,EE,00621DC4,word,0000001E \ No newline at end of file +patch=1,EE,00540A40,word,24120050 +patch=1,EE,00540A4C,word,24130001 \ No newline at end of file diff --git a/patches/SLES-54339_D287A60F.pnach b/patches/SLES-54339_D287A60F.pnach index 6a34ed69..5c759d95 100644 --- a/patches/SLES-54339_D287A60F.pnach +++ b/patches/SLES-54339_D287A60F.pnach @@ -2,7 +2,7 @@ gametitle=Realm of the Dead (PAL-E) (SLES-54339) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0010befc,word,3c013f61 // 3c013f28 hor fov diff --git a/patches/SLES-54339_F693320E.pnach b/patches/SLES-54339_F693320E.pnach index 03b62a12..f6ee6ad4 100644 --- a/patches/SLES-54339_F693320E.pnach +++ b/patches/SLES-54339_F693320E.pnach @@ -2,7 +2,7 @@ gametitle=Realm of the Dead (E)(SLES-54339) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54340_C8844E0B.pnach b/patches/SLES-54340_C8844E0B.pnach index 8d376d26..23d4dcc1 100644 --- a/patches/SLES-54340_C8844E0B.pnach +++ b/patches/SLES-54340_C8844E0B.pnach @@ -2,7 +2,7 @@ gametitle=Samurai Warriors 2 (PAL-E) (SLES-54340) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,00179f58,word,3c023f19 // 3c023f4c hor fov 1-player diff --git a/patches/SLES-54343_A90A973D.pnach b/patches/SLES-54343_A90A973D.pnach index 6038626c..c76113c1 100644 --- a/patches/SLES-54343_A90A973D.pnach +++ b/patches/SLES-54343_A90A973D.pnach @@ -10,5 +10,5 @@ patch=1,EE,00300848,word,3C013F2B //3C013F00 Render fix [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,01FAFD9C,word,00000000 //00000001 \ No newline at end of file diff --git a/patches/SLES-54346_816CB6E8.pnach b/patches/SLES-54346_816CB6E8.pnach new file mode 100644 index 00000000..40c85e00 --- /dev/null +++ b/patches/SLES-54346_816CB6E8.pnach @@ -0,0 +1,15 @@ +gametitle=Heatseeker PAL-M SLES-54346 816CB6E8 + +[50/60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,2038CA18,extended,24020002 +patch=1,EE,20649D50,extended,3C888889 +patch=1,EE,20649D54,extended,3C888889 +patch=1,EE,20649D58,extended,3C888889 +patch=1,EE,20649D5C,extended,3C888889 +patch=1,EE,E004D70A,extended,00649D60 +patch=1,EE,20649D50,extended,3CA3D70A +patch=1,EE,20649D54,extended,3CA3D70A +patch=1,EE,20649D58,extended,3CA3D70A +patch=1,EE,20649D5C,extended,3CA3D70A \ No newline at end of file diff --git a/patches/SLES-54347_774E8455.pnach b/patches/SLES-54347_774E8455.pnach index 9c8b836f..1c101981 100644 --- a/patches/SLES-54347_774E8455.pnach +++ b/patches/SLES-54347_774E8455.pnach @@ -3,14 +3,27 @@ gametitle=The Sims 2 - Pets (PAL-M) SLES-54347 774E8455 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen hack +description=Renders the game in 16:9 aspect ratio //aa3f013c abaa2134 00008144 0800e003 00000000 00000000 0800e003 patch=1,EE,0042d160,word,3c013fe3 //3c013faa patch=1,EE,0042d164,word,34218e2a //3421aaab [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00423058,extended,28820001 -patch=1,EE,E0010000,extended,00532F68 +patch=1,EE,E001FFFF,extended,01A54450 +patch=1,EE,00423058,extended,28820002 +patch=1,EE,E0020000,extended,004BABEC +patch=1,EE,E0010000,extended,01A54450 +patch=1,EE,00423058,extended,28820002 +patch=1,EE,E0010001,extended,004BABEC +patch=1,EE,00423058,extended,28820002 +patch=1,EE,E0010003,extended,01A54450 +patch=1,EE,00423058,extended,28820002 +patch=1,EE,E0010002,extended,004BABEC +patch=1,EE,00423058,extended,28820002 +patch=1,EE,E0010001,extended,01A54450 +patch=1,EE,00423058,extended,28820002 +patch=1,EE,E0010003,extended,004BABEC patch=1,EE,00423058,extended,28820002 \ No newline at end of file diff --git a/patches/SLES-54354_78DA0252.pnach b/patches/SLES-54354_78DA0252.pnach index 747ffad5..1e0c84dc 100644 --- a/patches/SLES-54354_78DA0252.pnach +++ b/patches/SLES-54354_78DA0252.pnach @@ -1,7 +1,7 @@ [Widescreen 16:9] gsaspectratio=16:9 comment=Final Fantasy XII (SLES-54354) -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //widescreen fix patch=1,EE,001803c8,word,3C013f80 diff --git a/patches/SLES-54356_DC2A467E.pnach b/patches/SLES-54356_DC2A467E.pnach index 2a8b4740..aa8913c8 100644 --- a/patches/SLES-54356_DC2A467E.pnach +++ b/patches/SLES-54356_DC2A467E.pnach @@ -1,7 +1,7 @@ [Widescreen 16:9] gsaspectratio=16:9 comment=Final Fantasy XII (SLES-54356) -comment=Widescreen hack by nemesis2000 (original pnach by nemesis2000) +author=nemesis2000 (original pnach by nemesis2000) comment=Ported from PAL-E to PAL-G by theHOMER //widescreen fix diff --git a/patches/SLES-54362_2D2AF931.pnach b/patches/SLES-54362_2D2AF931.pnach index b2b59127..2afe588e 100644 --- a/patches/SLES-54362_2D2AF931.pnach +++ b/patches/SLES-54362_2D2AF931.pnach @@ -2,7 +2,7 @@ gametitle= Pro Evolution Soccer 6 PAL Spain (SLES_543.62) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by El_Patas +author=El_Patas //Gameplay patch=1,EE,00397920,word,3FAAAAAB //3F800000 (increases hor. axis) diff --git a/patches/SLES-54364_5415FA68.pnach b/patches/SLES-54364_5415FA68.pnach index 417e35cb..fb185541 100644 --- a/patches/SLES-54364_5415FA68.pnach +++ b/patches/SLES-54364_5415FA68.pnach @@ -2,7 +2,7 @@ gametitle=Curious George [PAL-M7] (SLES_543.64) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00199214,word,3C013CAD //3C013C8E Zoom diff --git a/patches/SLES-54366_833D54BC.pnach b/patches/SLES-54366_833D54BC.pnach index 662afedf..e0f05b32 100644 --- a/patches/SLES-54366_833D54BC.pnach +++ b/patches/SLES-54366_833D54BC.pnach @@ -2,7 +2,7 @@ gametitle=David Douillet Judo (E)(SLES-54366) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54378_5267A845.pnach b/patches/SLES-54378_5267A845.pnach new file mode 100644 index 00000000..545c36a4 --- /dev/null +++ b/patches/SLES-54378_5267A845.pnach @@ -0,0 +1,15 @@ +gametitle=Barnyard (PAL-M) SLES-54378 5267A845 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00545F70,word,3FB58000 //3F8889A0 +patch=1,EE,00542898,word,3FD50000 //3EAAAAAB + +[50 FPS] +author=PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,0054C22C,extended,00000001 +patch=1,EE,E0010010,extended,004F95B4 +patch=1,EE,0054C22C,extended,00000002 \ No newline at end of file diff --git a/patches/SLES-54382_0CA21A7F.pnach b/patches/SLES-54382_0CA21A7F.pnach index 1fcca301..cf325c7a 100644 --- a/patches/SLES-54382_0CA21A7F.pnach +++ b/patches/SLES-54382_0CA21A7F.pnach @@ -2,5 +2,5 @@ gametitle=Jumanji (PAL-M) SLES-54382 0CA21A7F [50 FPS] author=PeterDelta -description=Unlocked at 50 fps on dash +description=Unlocks internal FPS on dash patch=1,EE,0025E13C,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-54383_0BF6A590.pnach b/patches/SLES-54383_0BF6A590.pnach index ccad6c98..f711aa93 100644 --- a/patches/SLES-54383_0BF6A590.pnach +++ b/patches/SLES-54383_0BF6A590.pnach @@ -2,7 +2,7 @@ gametitle=Casper and the Ghostly Trio (E)(SLES-54383) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54384_743E10C2.pnach b/patches/SLES-54384_743E10C2.pnach index 2bd246ba..6d499b8f 100644 --- a/patches/SLES-54384_743E10C2.pnach +++ b/patches/SLES-54384_743E10C2.pnach @@ -1,6 +1,6 @@ gametitle=Destroy All Humans 2 - Make War not Love [PAL-M] SLES-54384 743E10C2 -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,002C2E6C,word,24030001 //24030002 \ No newline at end of file diff --git a/patches/SLES-54385_4A84BCCB.pnach b/patches/SLES-54385_4A84BCCB.pnach index fb0cb4ac..573fc14b 100644 --- a/patches/SLES-54385_4A84BCCB.pnach +++ b/patches/SLES-54385_4A84BCCB.pnach @@ -2,7 +2,7 @@ gametitle=Atelier Iris 2: The Azoth of Destiny [PAL] (SLES_543.85) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas +author=El_Patas //3D Scenes patch=1,EE,002AB844,word,3C013F40 //00000000 hor value diff --git a/patches/SLES-54420_859AB297.pnach b/patches/SLES-54420_859AB297.pnach index 9571ff4e..387ae49d 100644 --- a/patches/SLES-54420_859AB297.pnach +++ b/patches/SLES-54420_859AB297.pnach @@ -1,11 +1,16 @@ -gametitle=Arthur and the Minimoys [PAL-M7] (SLES_544.20) +gametitle=Arthur and the Minimoys (PAL-M7) SLES-54420 859AB297 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas - -//Gameplay 16:9 -patch=1,EE,0012BBA4,word,3C023F1E //3C023F00 -patch=1,EE,0012BBC8,word,3C023F0F //3C023F40 - +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,007E0438,word,3F6E6D1C +patch=1,EE,007E0440,word,3F891A31 +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0010D294,word,24110000 +patch=1,EE,0010D298,word,24120050 +patch=1,EE,0010D2A4,word,24130001 \ No newline at end of file diff --git a/patches/SLES-54423_42BF81D5.pnach b/patches/SLES-54423_42BF81D5.pnach index 468b5f6a..48c0faab 100644 --- a/patches/SLES-54423_42BF81D5.pnach +++ b/patches/SLES-54423_42BF81D5.pnach @@ -2,7 +2,7 @@ gametitle=Justice League Heroes [PAL-M5] (SLES_544.23) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001BCA20,word,3C01427F //3C014248 Zoom diff --git a/patches/SLES-54427_72A2D46E.pnach b/patches/SLES-54427_72A2D46E.pnach index 55ae4a59..773d5e80 100644 --- a/patches/SLES-54427_72A2D46E.pnach +++ b/patches/SLES-54427_72A2D46E.pnach @@ -2,5 +2,5 @@ gametitle=Jumanji (PAL-M) SLES-54427 72A2D46E [50 FPS] author=PeterDelta -description=Unlocked at 50 fps on dash +description=Unlocks internal FPS on dash patch=1,EE,0025E4BC,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-54432_5BDE158E.pnach b/patches/SLES-54432_5BDE158E.pnach index 59262f04..dadc15c6 100644 --- a/patches/SLES-54432_5BDE158E.pnach +++ b/patches/SLES-54432_5BDE158E.pnach @@ -2,7 +2,7 @@ gametitle=Mercury Meltdown Remix (E)(SLES-54432) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54448_3286A01C.pnach b/patches/SLES-54448_3286A01C.pnach index 32a579ec..698232d8 100644 --- a/patches/SLES-54448_3286A01C.pnach +++ b/patches/SLES-54448_3286A01C.pnach @@ -2,7 +2,7 @@ gametitle=World Series of Poker - Tournament of Champions - 2007 Edition (E)(SLE [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54452_F7D63335.pnach b/patches/SLES-54452_F7D63335.pnach index 774e4a85..c467833d 100644 --- a/patches/SLES-54452_F7D63335.pnach +++ b/patches/SLES-54452_F7D63335.pnach @@ -2,5 +2,5 @@ gametitle=Disney Chicken Little - As en Acción (PAL-S) SLES-54452 F7D63335 [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00569A78,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-54454_DB3CA2EE.pnach b/patches/SLES-54454_DB3CA2EE.pnach index 6e21c3d9..1d0ee59e 100644 --- a/patches/SLES-54454_DB3CA2EE.pnach +++ b/patches/SLES-54454_DB3CA2EE.pnach @@ -2,7 +2,7 @@ gametitle=Disgaea 2: Cursed Memories [PAL-E] (SLES-54454) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 +author=nemesis2000 // Ported to PAL, added 16:10 support (ElHecht) // 16:9 diff --git a/patches/SLES-54456_08A88E90.pnach b/patches/SLES-54456_08A88E90.pnach index 8ca47371..22054fce 100644 --- a/patches/SLES-54456_08A88E90.pnach +++ b/patches/SLES-54456_08A88E90.pnach @@ -2,7 +2,7 @@ gametitle=Beverly Hills Cop (E)(SLES-54456) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54459_5911EF58.pnach b/patches/SLES-54459_5911EF58.pnach index 192f1671..50bd6db3 100644 --- a/patches/SLES-54459_5911EF58.pnach +++ b/patches/SLES-54459_5911EF58.pnach @@ -2,7 +2,7 @@ gametitle=All Star Fighters (E)(SLES-54459) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-54460_1054ED67.pnach b/patches/SLES-54460_1054ED67.pnach index 6191644f..979bf64c 100644 --- a/patches/SLES-54460_1054ED67.pnach +++ b/patches/SLES-54460_1054ED67.pnach @@ -12,7 +12,7 @@ patch=1,EE,00252bf8,word,3c013f40 // 3c013f80 hor fov [No-Interlacing] gsinterlacemode=1 -comment=Disable interlacing hack by ElHecht +author=ElHecht // disable interlacing patch=1,EE,002405D0,word,00000000 // 8f84b3d4 diff --git a/patches/SLES-54461_3F73B727.pnach b/patches/SLES-54461_3F73B727.pnach index 70de27a9..99e3e6ad 100644 --- a/patches/SLES-54461_3F73B727.pnach +++ b/patches/SLES-54461_3F73B727.pnach @@ -2,7 +2,7 @@ gametitle=Zombie Zone - Other Side (PAL-E) (SLES-54461) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,001e5a94,word,3c093f40 // 00000000 hor fov @@ -12,7 +12,7 @@ patch=1,EE,001e5aa4,word,ad49d354 // 00000000 [No-Interlacing] gsinterlacemode=1 -comment=Disable interlacing hack by ElHecht +author=ElHecht // disable interlacing patch=1,EE,001cb178,word,24040000 // 8f84bbd0 diff --git a/patches/SLES-54462_A64DA833.pnach b/patches/SLES-54462_A64DA833.pnach index 32948a4c..e647c048 100644 --- a/patches/SLES-54462_A64DA833.pnach +++ b/patches/SLES-54462_A64DA833.pnach @@ -2,7 +2,7 @@ gametitle=Zombie Virus (E)(SLES-54462) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54465_38B55745.pnach b/patches/SLES-54465_38B55745.pnach index 1b431fcf..c1461c1f 100644 --- a/patches/SLES-54465_38B55745.pnach +++ b/patches/SLES-54465_38B55745.pnach @@ -2,7 +2,7 @@ gametitle=CSI - Crime Scene Investigation (PAL-M5) (SLES-54465) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00272c90,word,3c033f40 // 3c033f80 hor fov diff --git a/patches/SLES-54467_FD9B2DA7.pnach b/patches/SLES-54467_FD9B2DA7.pnach index d3afb725..63b86e9f 100644 --- a/patches/SLES-54467_FD9B2DA7.pnach +++ b/patches/SLES-54467_FD9B2DA7.pnach @@ -1,22 +1,13 @@ -gametitle=Final Armada (E)(SLES-54467) +gametitle=Final Armada (PAL-M) SLES-54467 FD9B2DA7 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa - -//Widescreen hack 16:9 - -//X-Fov -patch=1,EE,204293DC,extended,42AD5554 //42820000 - -//Y-Fov -//patch=1,EE,001421ec,word,3c023ec0 -//patch=1,EE,003102e4,word,3c023fab //3c023f80 - -//Zoom -//patch=1,EE,00313444,word,3c02bec0 //3c02bf00 -//patch=1,EE,003141d4,word,3c023f40 //3c023f80 - -//patch=1,EE,001013c0,word,3c0242ad //3c024282 - - +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,001421D0,word,3C023F1F + +[50 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,001843BC,word,3C033F00 +patch=1,EE,001843E8,word,3C033F00 \ No newline at end of file diff --git a/patches/SLES-54469_E1FCDA9D.pnach b/patches/SLES-54469_E1FCDA9D.pnach index a2765caf..cdb2db7d 100644 --- a/patches/SLES-54469_E1FCDA9D.pnach +++ b/patches/SLES-54469_E1FCDA9D.pnach @@ -1,8 +1,8 @@ -gametitle=Home Alone (E)(SLES-54469) +gametitle=Home Alone PAL-M SLES-54469 E1FCDA9D [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -15,4 +15,7 @@ patch=1,EE,000c000c,word,4481f000 patch=1,EE,000c0010,word,461ea502 patch=1,EE,000c0014,word,08060519 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock (180%). +patch=1,EE,005B03F4,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-54476_023BB5F6.pnach b/patches/SLES-54476_023BB5F6.pnach index f8575c19..63e3bc6d 100644 --- a/patches/SLES-54476_023BB5F6.pnach +++ b/patches/SLES-54476_023BB5F6.pnach @@ -2,7 +2,7 @@ gametitle=Buccaneer (E)(SLES-54476) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54478_D76BF975.pnach b/patches/SLES-54478_D76BF975.pnach index b5a0502b..e74998fc 100644 --- a/patches/SLES-54478_D76BF975.pnach +++ b/patches/SLES-54478_D76BF975.pnach @@ -1,25 +1,24 @@ -gametitle=TMNT - Teenage Mutant Ninja Turtles (PAL-M5) (SLES-54478) +gametitle=TMNT - Teenage Mutant Ninja Turtles (PAL-M5) (SLES-54478) D76BF975 [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen hack 16:9 - +description=Renders the game in 16:9 aspect ratio // 16:9 patch=1,EE,0041dde4,word,3c013f40 // 00000000 hor fov patch=1,EE,0041dde8,word,4481f000 // 00000000 patch=1,EE,0041de1c,word,461e0002 // 00000000 patch=1,EE,0041ddf0,word,461eb583 // 00000000 - -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0091E6C8,word,00000001 //00000002 -[Mode 480p] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Unlocked progressive Mode 480p at startup +description=SDTV 480p mode at start. patch=1,EE,001053EC,word,24110000 patch=1,EE,001053F0,word,24120050 patch=1,EE,001053FC,word,24130001 diff --git a/patches/SLES-54483_91100045.pnach b/patches/SLES-54483_91100045.pnach index 40af2fae..51f1659f 100644 --- a/patches/SLES-54483_91100045.pnach +++ b/patches/SLES-54483_91100045.pnach @@ -2,7 +2,7 @@ gametitle=The Fast and the Furious (E)(SLES-54483) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54487_EBD35EC9.pnach b/patches/SLES-54487_EBD35EC9.pnach index a3a39022..217a7893 100644 --- a/patches/SLES-54487_EBD35EC9.pnach +++ b/patches/SLES-54487_EBD35EC9.pnach @@ -2,7 +2,7 @@ gametitle=Tokobot Plus: Mysteries of the Karakuri [PAL] (SLES_544.87) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001238AC,word,3C013F40 //3C013F80 (Increases hor. axis) diff --git a/patches/SLES-54489_B39E7D13.pnach b/patches/SLES-54489_B39E7D13.pnach index f99997c6..e14b493d 100644 --- a/patches/SLES-54489_B39E7D13.pnach +++ b/patches/SLES-54489_B39E7D13.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown vs. Raw 2007 (PAL-E) (SLES-54489) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 +author=nemesis2000 // Ported to PAL, added 16:10 support (ElHecht) // 16:9 diff --git a/patches/SLES-54494_3EFF3155.pnach b/patches/SLES-54494_3EFF3155.pnach index 8c344d5f..031cc6ab 100644 --- a/patches/SLES-54494_3EFF3155.pnach +++ b/patches/SLES-54494_3EFF3155.pnach @@ -2,7 +2,7 @@ gametitle=Little Britain - The Video Game (E)(SLES-54494) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54508_FB3E72CD.pnach b/patches/SLES-54508_FB3E72CD.pnach index 6f01caf8..354a3a8d 100644 --- a/patches/SLES-54508_FB3E72CD.pnach +++ b/patches/SLES-54508_FB3E72CD.pnach @@ -2,7 +2,7 @@ gametitle=National Geographic - Safari Adventures Africa (E)(SLES-54508) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54510_C76031E8.pnach b/patches/SLES-54510_C76031E8.pnach index 00cb3a55..6e931251 100644 --- a/patches/SLES-54510_C76031E8.pnach +++ b/patches/SLES-54510_C76031E8.pnach @@ -1,9 +1,9 @@ -gametitle=Disney's Meet the Robinsons (E)(SLES-54510) C76031E8 +gametitle=Disney's Meet the Robinsons (PAL-M) (SLES-54510) C76031E8 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,003a3564,word,3c013faa //00000000 X-Fov patch=1,EE,003a3568,word,3421aaab //00000000 patch=1,EE,003a358c,word,4481f000 //00000000 @@ -12,5 +12,5 @@ patch=1,EE,002670d0,word,3c013f2b //3c013f00 Render fix [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0060EB1C,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-54521_1DF57175.pnach b/patches/SLES-54521_1DF57175.pnach index e3ec0f7a..0b0150ff 100644 --- a/patches/SLES-54521_1DF57175.pnach +++ b/patches/SLES-54521_1DF57175.pnach @@ -2,10 +2,8 @@ gametitle=SpongeBob and Friends - Battle for Volcano Island (E)(SLES-54521) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa - -//Widescreen hack 16:9 - +author=Arapapa +description=Patches the game to run at 16:9 Widescreen Aspect Ratio. //Zoom //003f023c 00a08144 f41a0a0c patch=1,EE,00286ca0,word,3c013f69 //3c013f00 @@ -17,6 +15,4 @@ patch=1,EE,000c0000,word,3c013f40 patch=1,EE,000c0004,word,4481f000 patch=1,EE,000c0008,word,461e0f83 patch=1,EE,000c000c,word,e7be000c -patch=1,EE,000c0010,word,080a1b33 - - +patch=1,EE,000c0010,word,080a1b33 \ No newline at end of file diff --git a/patches/SLES-54527_4CB5D96E.pnach b/patches/SLES-54527_4CB5D96E.pnach index 97cc40ef..7c0bd295 100644 --- a/patches/SLES-54527_4CB5D96E.pnach +++ b/patches/SLES-54527_4CB5D96E.pnach @@ -1,14 +1,22 @@ -gametitle=Flushed Away [PAL-M5] (SLES_545.27) 4CB5D96E +gametitle=Flushed Away (PAL-M) SLES-54527 4CB5D96E [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,0027CD34,word,3C013CAD //3C013C8E Zoom patch=1,EE,001C8334,word,3C013C6E //3C013C8E Y-FOV -[50 FPS] +[Remove Blackbars] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,002AE4A4,word,00000000 //00031A38 -patch=1,EE,003537A4,word,2405003C //2405001E \ No newline at end of file +description=Removes black bars in cutscenes +patch=1,EE,00466630,word,00000000 //00000003 + +[NTSC Mode] +author=PeterDelta +description=NTSC mode on startup at 60 FPS. +patch=1,EE,003F07DC,extended,00000003 +patch=1,EE,201ADAB8,extended,00000000 +patch=1,EE,E0010001,extended,003F0688 +patch=1,EE,201ADAB8,extended,0C0A9638 +patch=1,EE,003537A4,extended,2405003C \ No newline at end of file diff --git a/patches/SLES-54545_9E74A685.pnach b/patches/SLES-54545_9E74A685.pnach index 5902ed63..f8b0dfa3 100644 --- a/patches/SLES-54545_9E74A685.pnach +++ b/patches/SLES-54545_9E74A685.pnach @@ -2,7 +2,7 @@ gametitle=Maxxed Out Racing Nitro [PAL] (SLES_545.45) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,20430644,extended,3F400000 //3F800000 (Increases hor. axis) diff --git a/patches/SLES-54549_31E4639D.pnach b/patches/SLES-54549_31E4639D.pnach index 4b269b30..40bca8d6 100644 --- a/patches/SLES-54549_31E4639D.pnach +++ b/patches/SLES-54549_31E4639D.pnach @@ -2,7 +2,7 @@ gametitle=Crazy Frog Racer 2 (E)(SLES-54549) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54550_82DDC773.pnach b/patches/SLES-54550_82DDC773.pnach new file mode 100644 index 00000000..91670082 --- /dev/null +++ b/patches/SLES-54550_82DDC773.pnach @@ -0,0 +1,6 @@ +gametitle=White Van Racer PAL-E SLES-54550 82DDC773 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,002036EC,word,3C020004 //3C020038 \ No newline at end of file diff --git a/patches/SLES-54555_D568B684.pnach b/patches/SLES-54555_D568B684.pnach index b043f001..6ab6ebe2 100644 --- a/patches/SLES-54555_D568B684.pnach +++ b/patches/SLES-54555_D568B684.pnach @@ -2,7 +2,7 @@ gametitle=Shin Megami Tensei - Digital Devil Saga 2 (PAL-E) (SLES-54555) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,003539d4,word,3fc6d3a0 // 3f951eb8 hor fov patch=1,EE,00353d74,word,3fc6d3a0 // 3f951eb8 unknown diff --git a/patches/SLES-54559_D6A0A3EF.pnach b/patches/SLES-54559_D6A0A3EF.pnach index 2be54157..92ede20a 100644 --- a/patches/SLES-54559_D6A0A3EF.pnach +++ b/patches/SLES-54559_D6A0A3EF.pnach @@ -1,8 +1,8 @@ -gametitle=Free Running (E)(SLES-54559) +gametitle=Free Running PAL-E SLES-54559 D6A0A3EF [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -19,4 +19,7 @@ patch=1,EE,00289670,word,0806722d //Render fix patch=1,EE,00214570,word,3c013f2b //3c013f00 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,001AB670,word,10400003 //14800003 \ No newline at end of file diff --git a/patches/SLES-54566_C3ADE1C8.pnach b/patches/SLES-54566_C3ADE1C8.pnach index 162d971b..155b477d 100644 --- a/patches/SLES-54566_C3ADE1C8.pnach +++ b/patches/SLES-54566_C3ADE1C8.pnach @@ -2,7 +2,7 @@ gametitle=Barbie in The 12 Dancing Princesses (E)(SLES-54566) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54568_CFE893B8.pnach b/patches/SLES-54568_CFE893B8.pnach index d1418dfe..9b2fbf7b 100644 --- a/patches/SLES-54568_CFE893B8.pnach +++ b/patches/SLES-54568_CFE893B8.pnach @@ -2,7 +2,7 @@ gametitle=Covert Command (E)(SLES-54568) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54582_66F4417D.pnach b/patches/SLES-54582_66F4417D.pnach index 8e61c179..cda2c32f 100644 --- a/patches/SLES-54582_66F4417D.pnach +++ b/patches/SLES-54582_66F4417D.pnach @@ -2,7 +2,7 @@ gametitle=International Tennis Pro (E)(SLES-54582) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54586_6C0CEFFD.pnach b/patches/SLES-54586_6C0CEFFD.pnach index 97cea1f9..849475ca 100644 --- a/patches/SLES-54586_6C0CEFFD.pnach +++ b/patches/SLES-54586_6C0CEFFD.pnach @@ -2,7 +2,7 @@ gametitle=Ar Tonelico Melody of Elemia PAL (SLES_545.86) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas +author=El_Patas //3D Scenes patch=1,EE,00344C9C,word,3C013F40 //00000000 hor value diff --git a/patches/SLES-54587_8DD6DDA3.pnach b/patches/SLES-54587_8DD6DDA3.pnach new file mode 100644 index 00000000..133545c8 --- /dev/null +++ b/patches/SLES-54587_8DD6DDA3.pnach @@ -0,0 +1,10 @@ +gametitle=Raw Danger! [PAL] SLES-54587 8DD6DDA3 (NTSC Mode + Performance) (v1.0) (Souzooka) + +[Widescreen 16:9] +gsaspectratio=16:9 +author=El_Patas + +//Gameplay 16:9 +patch=1,EE,003A8360,word,43E00000 //43A00000 (Increases hor. axis) +patch=1,EE,003A8380,word,43E00000 //43A00000 +patch=1,EE,0048C12C,word,3F400000 //3F800000 diff --git a/patches/SLES-54587_A98B5AD6.pnach b/patches/SLES-54587_A98B5AD6.pnach new file mode 100644 index 00000000..ae21a779 --- /dev/null +++ b/patches/SLES-54587_A98B5AD6.pnach @@ -0,0 +1,10 @@ +gametitle=Raw Danger! [PAL] SLES-54587 A98B5AD6 (NTSC Mode) (v1.0) (Souzooka) + +[Widescreen 16:9] +gsaspectratio=16:9 +author=El_Patas + +//Gameplay 16:9 +patch=1,EE,003A8360,word,43E00000 //43A00000 (Increases hor. axis) +patch=1,EE,003A8380,word,43E00000 //43A00000 +patch=1,EE,0048C12C,word,3F400000 //3F800000 diff --git a/patches/SLES-54587_A98B5B22.pnach b/patches/SLES-54587_A98B5B22.pnach index fa6352f8..3248a97a 100644 --- a/patches/SLES-54587_A98B5B22.pnach +++ b/patches/SLES-54587_A98B5B22.pnach @@ -2,7 +2,7 @@ gametitle=Raw Danger! [PAL] (SLES_545.87) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,003A8360,word,43E00000 //43A00000 (Increases hor. axis) diff --git a/patches/SLES-54588_0AD03FF9.pnach b/patches/SLES-54588_0AD03FF9.pnach index 70819898..fe6e1da9 100644 --- a/patches/SLES-54588_0AD03FF9.pnach +++ b/patches/SLES-54588_0AD03FF9.pnach @@ -2,7 +2,7 @@ gametitle=Brunswick Pro Bowling (E)(SLES-54588) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54590_AA930DAA.pnach b/patches/SLES-54590_AA930DAA.pnach index 7ec358a0..d1fa49a6 100644 --- a/patches/SLES-54590_AA930DAA.pnach +++ b/patches/SLES-54590_AA930DAA.pnach @@ -2,7 +2,7 @@ gametitle=Hard Knock High (E)(SLES-54590) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54591_7B93ED37.pnach b/patches/SLES-54591_7B93ED37.pnach index cce31e75..f58d8b4c 100644 --- a/patches/SLES-54591_7B93ED37.pnach +++ b/patches/SLES-54591_7B93ED37.pnach @@ -2,7 +2,7 @@ gametitle=Special Forces (E)(SLES-54591) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54596_8761B0E5.pnach b/patches/SLES-54596_8761B0E5.pnach new file mode 100644 index 00000000..2322931e --- /dev/null +++ b/patches/SLES-54596_8761B0E5.pnach @@ -0,0 +1,15 @@ +gametitle=Heatseeker PAL-M SLES-54596 8761B0E5 + +[50/60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,2038CA18,extended,24020002 +patch=1,EE,20649D50,extended,3C888889 +patch=1,EE,20649D54,extended,3C888889 +patch=1,EE,20649D58,extended,3C888889 +patch=1,EE,20649D5C,extended,3C888889 +patch=1,EE,E004D70A,extended,00649D60 +patch=1,EE,20649D50,extended,3CA3D70A +patch=1,EE,20649D54,extended,3CA3D70A +patch=1,EE,20649D58,extended,3CA3D70A +patch=1,EE,20649D5C,extended,3CA3D70A \ No newline at end of file diff --git a/patches/SLES-54604_5A1D79D4.pnach b/patches/SLES-54604_5A1D79D4.pnach index 682ad8ad..449fe75e 100644 --- a/patches/SLES-54604_5A1D79D4.pnach +++ b/patches/SLES-54604_5A1D79D4.pnach @@ -1,11 +1,11 @@ gametitle=¡Qué pasa Neng! El videojuego (PAL-S) SLES-54604 5A1D79D4 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps -patch=1,EE,E0050005,extended,00081E98 +description=SDTV 480p mode at start. +patch=1,EE,E0010000,extended,0020F948 patch=1,EE,201C83F8,extended,00069403 -patch=1,EE,E0010000,extended,0020EC34 -patch=1,EE,201C83F8,extended,24120052 -patch=1,EE,20213228,extended,02058290 -patch=1,EE,20213250,extended,02058290 \ No newline at end of file +patch=1,EE,E0010001,extended,0020F948 +patch=1,EE,201C83F8,extended,24120050 +patch=1,EE,001C93BC,extended,00000000 \ No newline at end of file diff --git a/patches/SLES-54608_72E17DFF.pnach b/patches/SLES-54608_72E17DFF.pnach index d2cc7dbd..3184826d 100644 --- a/patches/SLES-54608_72E17DFF.pnach +++ b/patches/SLES-54608_72E17DFF.pnach @@ -2,7 +2,7 @@ gametitle=Barbie in The 12 Dancing Princesses (E)(SLES-54608) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54611_ED669333.pnach b/patches/SLES-54611_ED669333.pnach index 76d52557..86e749ca 100644 --- a/patches/SLES-54611_ED669333.pnach +++ b/patches/SLES-54611_ED669333.pnach @@ -2,7 +2,7 @@ gametitle=TT Superbikes: Real Road Racing Championship [PAL-M5] (SLES_546.11) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas // Gameplay 16:9 patch=1,EE,205853D8,extended,3F400000 //3F800000 (Increases hor. axis) diff --git a/patches/SLES-54614_3646CADB.pnach b/patches/SLES-54614_3646CADB.pnach index 5af7596d..00f98629 100644 --- a/patches/SLES-54614_3646CADB.pnach +++ b/patches/SLES-54614_3646CADB.pnach @@ -2,7 +2,7 @@ gametitle=Lucinda Green's Equestrian Challenge (E)(SLES-54614) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54615_35F040CD.pnach b/patches/SLES-54615_35F040CD.pnach index 61ae8e08..5214d3bc 100644 --- a/patches/SLES-54615_35F040CD.pnach +++ b/patches/SLES-54615_35F040CD.pnach @@ -2,7 +2,7 @@ gametitle=Code of the Samurai (PAL-E) (SLES-54615) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0014d834,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-54624_2FF26DC2.pnach b/patches/SLES-54624_2FF26DC2.pnach index 0e5b2edb..ea2013c0 100644 --- a/patches/SLES-54624_2FF26DC2.pnach +++ b/patches/SLES-54624_2FF26DC2.pnach @@ -2,7 +2,7 @@ gametitle=Samurai Warriors 2 - Empires (PAL-E) (SLES-54624) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,0017a978,word,3c023f19 // 3c023f4c hor fov 1-player diff --git a/patches/SLES-54626_AAE3849F.pnach b/patches/SLES-54626_AAE3849F.pnach index b0cadeb5..0939cf41 100644 --- a/patches/SLES-54626_AAE3849F.pnach +++ b/patches/SLES-54626_AAE3849F.pnach @@ -2,7 +2,7 @@ gametitle=An American Tail (E)((SLES-54626) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54627_8C9576B4.pnach b/patches/SLES-54627_8C9576B4.pnach index 9e4aab17..559a5826 100644 --- a/patches/SLES-54627_8C9576B4.pnach +++ b/patches/SLES-54627_8C9576B4.pnach @@ -2,7 +2,7 @@ gametitle=Burnout Dominator (PAL-E) (SLES-54627) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht and Arapapa +author=ElHecht and Arapapa //Force turn on Internal Widescreen (Full boot bypassing) patch=1,EE,0038b128,word,24020002 //30420003 diff --git a/patches/SLES-54628_AFFB8141.pnach b/patches/SLES-54628_AFFB8141.pnach index b654124f..9ce4dca3 100644 --- a/patches/SLES-54628_AFFB8141.pnach +++ b/patches/SLES-54628_AFFB8141.pnach @@ -2,7 +2,7 @@ gametitle=Skate Attack (E)(SLES-54628) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54629_4D76082F.pnach b/patches/SLES-54629_4D76082F.pnach index dec60991..0d2b2afe 100644 --- a/patches/SLES-54629_4D76082F.pnach +++ b/patches/SLES-54629_4D76082F.pnach @@ -2,7 +2,7 @@ gametitle=Shin Megami Tensei: Devil Summoner - Raidou Kuzunoha vs the Soulless A [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas (Only works for 3D characters, not for prerendered backgrounds) +author=El_Patas (Only works for 3D characters, not for prerendered backgrounds) patch=1,EE,003AE764,word,3FC6D3A0 //3F951EB8 hor fov patch=1,EE,003AEB14,word,3FC6D3A0 //3F951EB8 unknown diff --git a/patches/SLES-54653_223FC5B0.pnach b/patches/SLES-54653_223FC5B0.pnach index 126639c6..a0c547b5 100644 --- a/patches/SLES-54653_223FC5B0.pnach +++ b/patches/SLES-54653_223FC5B0.pnach @@ -2,7 +2,7 @@ gametitle=Freak Out - Extreme Freeride (E)(SLES-54653) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54659_DAF2145C.pnach b/patches/SLES-54659_DAF2145C.pnach index e9055f60..4ed932ac 100644 --- a/patches/SLES-54659_DAF2145C.pnach +++ b/patches/SLES-54659_DAF2145C.pnach @@ -1,8 +1,22 @@ gametitle=Star Wars - The Force Unleashed [PAL-M] SLES-54659 DAF2145C +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Enable native widescreen +patch=1,EE,007B0170,word,00000001 +patch=1,EE,00A50618,word,CDCD0001 + [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00125678,word,28420001 //28420002 patch=1,EE,E0010000,extended,01FFFA70 -patch=1,EE,20125678,extended,28420002 \ No newline at end of file +patch=1,EE,20125678,extended,28420002 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,007AE984,word,00000003 +patch=1,EE,00A50688,word,CDCD0001 \ No newline at end of file diff --git a/patches/SLES-54665_FE3E54B3.pnach b/patches/SLES-54665_FE3E54B3.pnach index c385e222..c4ee95ca 100644 --- a/patches/SLES-54665_FE3E54B3.pnach +++ b/patches/SLES-54665_FE3E54B3.pnach @@ -2,7 +2,7 @@ gametitle=Paddington Bear (E)(SLES-54665) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54666_EDCBBC68.pnach b/patches/SLES-54666_EDCBBC68.pnach index 167f48fe..6ad18d7f 100644 --- a/patches/SLES-54666_EDCBBC68.pnach +++ b/patches/SLES-54666_EDCBBC68.pnach @@ -1,8 +1,8 @@ -gametitle=Mr. Bean (E)(SLES-54666) +gametitle=Mr. Bean PAL-M SLES-54666 EDCBBC68 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -15,4 +15,8 @@ patch=1,EE,0024ebac,word,4481f000 patch=1,EE,0024ebb0,word,461e6302 patch=1,EE,0024ebb4,word,0806daea - +[50 FPS] +author=Gabominated & PeterDelta +description=Might need EE Overclock (180%). +patch=1,EE,0054B694,word,00000001 //00000002 +patch=1,EE,00195AE4,word,3C0142C8 //3C014248 \ No newline at end of file diff --git a/patches/SLES-54669_9CBB7B0F.pnach b/patches/SLES-54669_9CBB7B0F.pnach index 4f9e470c..334283ab 100644 --- a/patches/SLES-54669_9CBB7B0F.pnach +++ b/patches/SLES-54669_9CBB7B0F.pnach @@ -2,7 +2,7 @@ gametitle=Lassie (E)(SLES-54669) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54670_AEC2D949.pnach b/patches/SLES-54670_AEC2D949.pnach index d2501031..831e190b 100644 --- a/patches/SLES-54670_AEC2D949.pnach +++ b/patches/SLES-54670_AEC2D949.pnach @@ -2,7 +2,7 @@ gametitle=Wacky Races: Mad Motors [PAL-M11] (SLES_546.70) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,202FB0C4,extended,3FE38E38 //3FAAAAAB (Increases hor. axis) diff --git a/patches/SLES-54672_40AAA323.pnach b/patches/SLES-54672_40AAA323.pnach index 16a369a7..db3201b1 100644 --- a/patches/SLES-54672_40AAA323.pnach +++ b/patches/SLES-54672_40AAA323.pnach @@ -2,7 +2,7 @@ gametitle=Casper's Scare School (E)(SLES-54672) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54674_A629A376.pnach b/patches/SLES-54674_A629A376.pnach index c3e396f9..1dbfa15b 100644 --- a/patches/SLES-54674_A629A376.pnach +++ b/patches/SLES-54674_A629A376.pnach @@ -81,5 +81,13 @@ patch=1,EE,0016F380,word,3C013F80 [50/60 FPS] author=PeterDelta -comment=Might need EE overclocking to be stable. -patch=1,EE,0012795C,word,10000003 // 10400003 - 0043102B sltu v0,v1 +description=Might need EE Overclock at 180%. +patch=1,EE,0012795C,word,14400003 //10400003 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,003BECEC,word,00000001 +patch=1,EE,003985A0,word,3F800000 +patch=1,EE,00126E7C,word,240301C0 \ No newline at end of file diff --git a/patches/SLES-54675_C29C4AEA.pnach b/patches/SLES-54675_C29C4AEA.pnach index 55a024a4..235b064e 100644 --- a/patches/SLES-54675_C29C4AEA.pnach +++ b/patches/SLES-54675_C29C4AEA.pnach @@ -2,7 +2,7 @@ gametitle=Street Warrior (E)(SLES-54675) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54705_66F88B18.pnach b/patches/SLES-54705_66F88B18.pnach index 007ec234..380d0908 100644 --- a/patches/SLES-54705_66F88B18.pnach +++ b/patches/SLES-54705_66F88B18.pnach @@ -2,7 +2,7 @@ gametitle=SBK-07 - Superbike World Championship (PAL-M5) (SLES-54705) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0013e5a4,word,4483e800 // 44830800 diff --git a/patches/SLES-54715_78122B2F.pnach b/patches/SLES-54715_78122B2F.pnach index d50d63e4..1a209588 100644 --- a/patches/SLES-54715_78122B2F.pnach +++ b/patches/SLES-54715_78122B2F.pnach @@ -2,7 +2,7 @@ gametitle=Tony Hawk's Downhill Jam [PAL-M4] (SLES_547.15) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00127CD4,word,3C013F24 //3C013F00 Zoom diff --git a/patches/SLES-54717_E764019B.pnach b/patches/SLES-54717_E764019B.pnach index ee40190b..154118fc 100644 --- a/patches/SLES-54717_E764019B.pnach +++ b/patches/SLES-54717_E764019B.pnach @@ -2,7 +2,7 @@ gametitle=Power Volleyball (E)(SLES-54717) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54720_55AFBD7E.pnach b/patches/SLES-54720_55AFBD7E.pnach index debff238..ecb97a79 100644 --- a/patches/SLES-54720_55AFBD7E.pnach +++ b/patches/SLES-54720_55AFBD7E.pnach @@ -2,5 +2,5 @@ gametitle=Shield - The Game, The (PAL-M) SLES-54720 55AFBD7E [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0036AFFC,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-54724_C529B0AD.pnach b/patches/SLES-54724_C529B0AD.pnach new file mode 100644 index 00000000..4ae8ec83 --- /dev/null +++ b/patches/SLES-54724_C529B0AD.pnach @@ -0,0 +1,19 @@ +gametitle=Spider-Man 3 (PAL-M) SLES-54724 C529B0AD + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,003488C8,word,3C023F1A +patch=1,EE,0032A974,word,3C023F1A +patch=1,EE,00C8A278,word,C4342333 //black screen transition fix +patch=1,EE,01A1AFDC,word,3FBFFFDD +patch=1,EE,01A4570C,word,3FBFFFDD + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,00404B1C,word,3C050000 +patch=1,EE,00404B24,word,3C060050 +patch=1,EE,00404B2C,word,3C070001 \ No newline at end of file diff --git a/patches/SLES-54726_95E80315.pnach b/patches/SLES-54726_95E80315.pnach new file mode 100644 index 00000000..2713737a --- /dev/null +++ b/patches/SLES-54726_95E80315.pnach @@ -0,0 +1,6 @@ +gametitle=Go Kart Rally PAL-E SLES-54726 95E80315 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00207F3C,extended,3C020008 //3C020038 \ No newline at end of file diff --git a/patches/SLES-54728_E81B67D8.pnach b/patches/SLES-54728_E81B67D8.pnach index ad4ba5dd..1309f7ef 100644 --- a/patches/SLES-54728_E81B67D8.pnach +++ b/patches/SLES-54728_E81B67D8.pnach @@ -2,7 +2,7 @@ gametitle=Mountain Bike Adrenaline featuring Salomon (E)(SLES-54728) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54731_079140D6.pnach b/patches/SLES-54731_079140D6.pnach index 5219e378..bab7e28f 100644 --- a/patches/SLES-54731_079140D6.pnach +++ b/patches/SLES-54731_079140D6.pnach @@ -1,12 +1,15 @@ -gametitle=King of Clubs (E)(SLES-54731) +gametitle=King of Clubs PAL-M SLES-54731 079140D6 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //X-Fov patch=1,EE,0037445c,word,3c013f20 //3c013f00 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock (180%). +patch=1,EE,0030139C,word,1400FFF8 //1000FFF8 \ No newline at end of file diff --git a/patches/SLES-54738_2438E496.pnach b/patches/SLES-54738_2438E496.pnach index 833ecf2a..449f6ac6 100644 --- a/patches/SLES-54738_2438E496.pnach +++ b/patches/SLES-54738_2438E496.pnach @@ -2,7 +2,7 @@ gametitle=Thunderbirds (E)(SLES-54738) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54747_4FE9650B.pnach b/patches/SLES-54747_4FE9650B.pnach new file mode 100644 index 00000000..152939be --- /dev/null +++ b/patches/SLES-54747_4FE9650B.pnach @@ -0,0 +1,15 @@ +gametitle=Disney-Pixar Ratatouille (PAL-S-P) SLES-54747 4FE9650B + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Enable native widescreen +patch=1,EE,0067FA70,word,3FE38E39 //3FAAAAAB + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,004E1EE4,word,24110000 +patch=1,EE,004E1EE8,word,24120050 +patch=1,EE,004E1EF4,word,24130001 \ No newline at end of file diff --git a/patches/SLES-54755_2609B672.pnach b/patches/SLES-54755_2609B672.pnach index 93d07845..ac3d19b2 100644 --- a/patches/SLES-54755_2609B672.pnach +++ b/patches/SLES-54755_2609B672.pnach @@ -2,6 +2,6 @@ gametitle=Transformers - The Game (PAL-E) SLES-54755 2609B672 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,00382D80,word,28420001 //28420002 patch=1,EE,00434E94,word,3C013F00 //3C013F80 \ No newline at end of file diff --git a/patches/SLES-54756_F453BCD9.pnach b/patches/SLES-54756_F453BCD9.pnach index 4ecf4bdc..a552cba7 100644 --- a/patches/SLES-54756_F453BCD9.pnach +++ b/patches/SLES-54756_F453BCD9.pnach @@ -2,6 +2,6 @@ gametitle=Transformers - The Game (PAL-S-F) SLES-54756 F453BCD9 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,00382DA8,word,28420001 //28420002 patch=1,EE,00434EBC,word,3C013F00 //3C013F80 \ No newline at end of file diff --git a/patches/SLES-54771_6DD4EB8D.pnach b/patches/SLES-54771_6DD4EB8D.pnach index e12faaa3..1f2bb22e 100644 --- a/patches/SLES-54771_6DD4EB8D.pnach +++ b/patches/SLES-54771_6DD4EB8D.pnach @@ -1,23 +1,21 @@ -gametitle=DreamWorks Shrek the Third (E)(SLES-54771) +gametitle=DreamWorks Shrek the Third (PAL-M) (SLES-54771) 6DD4EB8D [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa - -//Widescreen hack 16:9 - -//X-Fov -//003f013c 00b88144 1002a0af -patch=1,EE,002ee7bc,word,3c013f21 //3c013f00 - -//Y-Fov -//02000246 87030046 (2nd) -patch=1,EE,002ee7fc,word,08030000 - +author=Arapapa +description=Renders the game in 16:9 aspect ratio +patch=1,EE,002ee7bc,word,3c013f21 //3c013f00 X-Fov +patch=1,EE,002ee7fc,word,08030000 //Y-Fov patch=1,EE,000c0000,word,46020002 patch=1,EE,000c0004,word,3c013f40 patch=1,EE,000c0008,word,4481f000 patch=1,EE,000c000c,word,461e0002 patch=1,EE,000c0010,word,080bba00 - +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,004B4674,word,24110000 +patch=1,EE,004B4678,word,24120050 +patch=1,EE,004B4684,word,24130001 \ No newline at end of file diff --git a/patches/SLES-54782_FC4AC115.pnach b/patches/SLES-54782_FC4AC115.pnach index 36669a9a..a35f26eb 100644 --- a/patches/SLES-54782_FC4AC115.pnach +++ b/patches/SLES-54782_FC4AC115.pnach @@ -26,4 +26,10 @@ patch=1,EE,001f4b28,word,3c020000 // 3c023f80 [50 FPS] author=Gabominated comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,2013D188,extended,2C420001 //2C420002 \ No newline at end of file +patch=1,EE,2013D188,extended,2C420001 //2C420002 + +[480p Mode] +gsinterlacemode=1 +author=Gabominated +description=SDTV 480p mode at start. Might need enable EE Overclock to be stable. +patch=1,EE,0010CF00,word,24120050 diff --git a/patches/SLES-54788_F173CF07.pnach b/patches/SLES-54788_F173CF07.pnach index bc514351..8638392e 100644 --- a/patches/SLES-54788_F173CF07.pnach +++ b/patches/SLES-54788_F173CF07.pnach @@ -2,7 +2,7 @@ gametitle=Aqua Teen Hunger Force - Zombie Ninja Pro-Am (E)(SLES-54788 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54792_B90A79B4.pnach b/patches/SLES-54792_B90A79B4.pnach index 5d44bf8a..ed0f7748 100644 --- a/patches/SLES-54792_B90A79B4.pnach +++ b/patches/SLES-54792_B90A79B4.pnach @@ -2,7 +2,7 @@ gametitle=World Wrestling Championship (E)(SLES-54792) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54803_D8DF7CB5.pnach b/patches/SLES-54803_D8DF7CB5.pnach index e35072bb..867ff132 100644 --- a/patches/SLES-54803_D8DF7CB5.pnach +++ b/patches/SLES-54803_D8DF7CB5.pnach @@ -2,7 +2,7 @@ gametitle=They Came from the Skies (E)(SLES-54803) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54804_DED31A79.pnach b/patches/SLES-54804_DED31A79.pnach index 73709214..da9d74d5 100644 --- a/patches/SLES-54804_DED31A79.pnach +++ b/patches/SLES-54804_DED31A79.pnach @@ -2,7 +2,7 @@ gametitle=Operation Air Assault 2 (E)(SLES-54804) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54817_98317385.pnach b/patches/SLES-54817_98317385.pnach index 9fd0b1e1..c69be44c 100644 --- a/patches/SLES-54817_98317385.pnach +++ b/patches/SLES-54817_98317385.pnach @@ -1,14 +1,13 @@ -gametitle=Garfield - Lasangna World Tour (E)(SLES-54817) +gametitle=Garfield - Lasangna World Tour (PAL-M) (SLES-54817) 98317385 [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Gameplay 16:9 patch=1,EE,001c3a74,word,3c033f40 //3c033f80 - [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0026BBF4,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-54818_B6CA0C9B.pnach b/patches/SLES-54818_B6CA0C9B.pnach index 44368ab8..5393ea63 100644 --- a/patches/SLES-54818_B6CA0C9B.pnach +++ b/patches/SLES-54818_B6CA0C9B.pnach @@ -2,7 +2,7 @@ gametitle=Super PickUps [PAL-M5] (SLES_548.18) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Sergx12 & El_Patas +author=sergx12 & El_Patas //Gameplay 16:9 patch=1,EE,00143080,word,3C023F19 //3C023F00 (Increases hor. axis) diff --git a/patches/SLES-54819_887AD3A0.pnach b/patches/SLES-54819_887AD3A0.pnach index 893c35cb..35b0bf9e 100644 --- a/patches/SLES-54819_887AD3A0.pnach +++ b/patches/SLES-54819_887AD3A0.pnach @@ -2,5 +2,5 @@ gametitle=Manhunt 2 (PAL) (SLES_548.19) [50 FPS] author=PeterDelta -comment=Unlocked at 50FPS -patch=1,EE,00370EE8,word,24020001 //24020002 li v0,0x2 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,00370EE8,word,24020001 //24020002 \ No newline at end of file diff --git a/patches/SLES-54820_9454F864.pnach b/patches/SLES-54820_9454F864.pnach index 10be3fdb..45acb27d 100644 --- a/patches/SLES-54820_9454F864.pnach +++ b/patches/SLES-54820_9454F864.pnach @@ -3,11 +3,13 @@ gametitle=Stuntman Ignition (PAL-M) SLES-54820 9454F864 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,002AA174,word,3C023F10 //3C023F40 patch=1,EE,005AC8E0,word,3F0BC36F //3F3A59EA [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,0033FC60,word,00000000 //1440FFF7 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,0033FC7C,extended,24A20001 +patch=1,EE,E0010001,extended,0059D170 +patch=1,EE,0033FC7C,extended,24A20002 \ No newline at end of file diff --git a/patches/SLES-54822_81D2A53F.pnach b/patches/SLES-54822_81D2A53F.pnach index a4061cb3..5c7420ea 100644 --- a/patches/SLES-54822_81D2A53F.pnach +++ b/patches/SLES-54822_81D2A53F.pnach @@ -2,7 +2,7 @@ gametitle=Atelier Iris 3: Grand Phantasm [PAL] (SLES_548.22) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas +author=El_Patas //3D Scenes patch=1,EE,0035F12C,word,3C013F40 //00000000 hor value diff --git a/patches/SLES-54834_6D1B0C02.pnach b/patches/SLES-54834_6D1B0C02.pnach index ce83e899..d9b0b01e 100644 --- a/patches/SLES-54834_6D1B0C02.pnach +++ b/patches/SLES-54834_6D1B0C02.pnach @@ -1,9 +1,9 @@ gametitle=Juiced 2 (PAL-M) SLES-54834 6D1B0C02 -[Mode 480p] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode 480p at 60 fps +description=SDTV 480p mode at start. patch=1,EE,0040E524,word,3C050000 patch=1,EE,0040E52C,word,3C060050 -patch=1,EE,0040E534,word,3C070001 -patch=1,EE,11A75D3C,extended,01E2 \ No newline at end of file +patch=1,EE,0040E534,word,3C070001 \ No newline at end of file diff --git a/patches/SLES-54835_3E1661EF.pnach b/patches/SLES-54835_3E1661EF.pnach index d59e9f06..d73ffe18 100644 --- a/patches/SLES-54835_3E1661EF.pnach +++ b/patches/SLES-54835_3E1661EF.pnach @@ -1,9 +1,9 @@ gametitle=Power Rangers - Super Legends (PAL-M) SLES-54835 3E1661EF -[Mode 480p] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode 480p at startup +description=SDTV 480p mode at start. patch=1,EE,0010FE8C,word,3C050000 patch=1,EE,0010FE94,word,3C060050 -patch=1,EE,0010FE9C,word,3C070001 -patch=1,EE,10492B08,extended,01E0 \ No newline at end of file +patch=1,EE,0010FE9C,word,3C070001 \ No newline at end of file diff --git a/patches/SLES-54840_EA123A2B.pnach b/patches/SLES-54840_EA123A2B.pnach index f9991749..8a2de040 100644 --- a/patches/SLES-54840_EA123A2B.pnach +++ b/patches/SLES-54840_EA123A2B.pnach @@ -2,7 +2,7 @@ gametitle=Avatar - The Legend of Aang - The Burning Earth (PAL-M4) (SLES-54840) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht //16:9 patch=1,EE,00142f70,word,3c033fe3 // 3c033faa diff --git a/patches/SLES-54841_ECA6BFC5.pnach b/patches/SLES-54841_ECA6BFC5.pnach index fd019748..9e68c34e 100644 --- a/patches/SLES-54841_ECA6BFC5.pnach +++ b/patches/SLES-54841_ECA6BFC5.pnach @@ -3,20 +3,21 @@ gametitle=Crash of the Titans (PAL-M) SLES-54841 ECA6BFC5 [Widescreen 16:9] gsaspectratio=16:9 author=CRASHARKI -comment=Run the game at 16:9 Widescreen Aspect Ratio from the start. +description=Run the game at 16:9 Widescreen Aspect Ratio from the start. patch=1,EE,21BD8268,byte,1 //00000000 //In-game option -patch=1,EE,21BD82A2,byte,10 //40 //Zoom 1 +patch=1,EE,21BD82A0,extended,3F020000 //3F100000 //Zoom 1 patch=1,EE,21BD82A8,word,3F000000 //3F2AAAAA //Zoom 2 -[50 FPS] +[50/60 FPS] author=IWILLCRAFT -description=Patches the game to run at 50 FPS (Might need 180% EE Overclock to be stable). +description=Might need EE Overclock at 180%. //01 00 02 24 12 00 82 14 5C patch=1,EE,204924B8,extended,24020000 //24020001 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode at startup +description=SDTV 480p mode at start. patch=1,EE,0057E904,word,3C050000 -patch=1,EE,0057E90C,word,3C060052 +patch=1,EE,0057E90C,word,3C060050 patch=1,EE,0057E914,word,3C070001 \ No newline at end of file diff --git a/patches/SLES-54842_B4B4E877.pnach b/patches/SLES-54842_B4B4E877.pnach index d7f61d91..9c4c6352 100644 --- a/patches/SLES-54842_B4B4E877.pnach +++ b/patches/SLES-54842_B4B4E877.pnach @@ -3,20 +3,21 @@ gametitle=Crash of the Titans (PAL-M) SLES-54842 B4B4E877 [Widescreen 16:9] gsaspectratio=16:9 author=CRASHARKI -comment=Run the game at 16:9 Widescreen Aspect Ratio from the start. +description=Run the game at 16:9 Widescreen Aspect Ratio from the start. patch=1,EE,21BD74E8,byte,1 //00000000 //In-game option -patch=1,EE,21BD7522,byte,10 //40 //Zoom 1 +patch=1,EE,21BD7520,extended,3F020000 //3F100000 //Zoom 1 patch=1,EE,21BD7528,word,3F000000 //3F2AAAAA //Zoom 2 -[50 FPS] +[50/60 FPS] author=CRASHARKI -description=Patches the game to run at 50 FPS (Might need 180% EE Overclock to be stable). +description=Might need EE Overclock at 180%. //01 00 02 24 12 00 82 14 5C patch=1,EE,20491CC8,extended,24020000 //24020001 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode at startup +description=SDTV 480p mode at start. patch=1,EE,0057E114,word,3C050000 -patch=1,EE,0057E11C,word,3C060052 +patch=1,EE,0057E11C,word,3C060050 patch=1,EE,0057E124,word,3C070001 \ No newline at end of file diff --git a/patches/SLES-54843_AEFD7D25.pnach b/patches/SLES-54843_AEFD7D25.pnach index 46c63dc8..353e1db6 100644 --- a/patches/SLES-54843_AEFD7D25.pnach +++ b/patches/SLES-54843_AEFD7D25.pnach @@ -3,20 +3,21 @@ gametitle=Crash of the Titans (PAL-R) SLES-54843 AEFD7D25 [Widescreen 16:9] gsaspectratio=16:9 author=CRASHARKI -comment=Run the game at 16:9 Widescreen Aspect Ratio from the start. +description=Run the game at 16:9 Widescreen Aspect Ratio from the start. patch=1,EE,21BD81E8,byte,1 //00000000 //In-game option -patch=1,EE,21BD8222,byte,10 //40 //Zoom 1 +patch=1,EE,21BD8220,extended,3F020000 //3F100000 //Zoom 1 patch=1,EE,21BD8228,word,3F000000 //3F2AAAAA //Zoom 2 -[50 FPS] +[50/60 FPS] author=CRASHARKI -description=Patches the game to run at 50 FPS (Might need 180% EE Overclock to be stable). +description=Might need EE Overclock at 180%. //01 00 02 24 12 00 82 14 5C patch=1,EE,20492588,extended,24020000 //24020001 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode at startup +description=SDTV 480p mode at start. patch=1,EE,0057E9D4,word,3C050000 -patch=1,EE,0057E9DC,word,3C060052 +patch=1,EE,0057E9DC,word,3C060050 patch=1,EE,0057E9E4,word,3C070001 \ No newline at end of file diff --git a/patches/SLES-54875_68959E4C.pnach b/patches/SLES-54875_68959E4C.pnach index 8e6d2a75..e91e4341 100644 --- a/patches/SLES-54875_68959E4C.pnach +++ b/patches/SLES-54875_68959E4C.pnach @@ -2,7 +2,7 @@ gametitle=Warriors Orochi (PAL) [SLES-54875] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0019a798,word,3c023f19 // 3c023f4c hor fov 1-player diff --git a/patches/SLES-54877_69C888C8.pnach b/patches/SLES-54877_69C888C8.pnach index 38da099e..2cb5e3c5 100644 --- a/patches/SLES-54877_69C888C8.pnach +++ b/patches/SLES-54877_69C888C8.pnach @@ -2,7 +2,7 @@ gametitle=Warriors Orochi (PAL-G) (SLES-54877) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0019ae38,word,3c023f19 // 3c023f4c hor fov 1-player diff --git a/patches/SLES-54879_3E694755.pnach b/patches/SLES-54879_3E694755.pnach index 735cc0c2..d5a45115 100644 --- a/patches/SLES-54879_3E694755.pnach +++ b/patches/SLES-54879_3E694755.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown vs. Raw 2008 (PAL-M5) (SLES-54879) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 +author=nemesis2000 // Ported to PAL, added 16:10 support (ElHecht) // 16:9 diff --git a/patches/SLES-54885_899557DF.pnach b/patches/SLES-54885_899557DF.pnach index dd96e9ea..580327fd 100644 --- a/patches/SLES-54885_899557DF.pnach +++ b/patches/SLES-54885_899557DF.pnach @@ -2,7 +2,7 @@ gametitle=Moto X Maniac (E)(SLES-54885) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -15,4 +15,7 @@ patch=1,EE,00135e2c,word,3421aaab patch=1,EE,00135e34,word,4481f000 patch=1,EE,00135e38,word,461ebdc2 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,0022B6C4,word,00000000 \ No newline at end of file diff --git a/patches/SLES-54888_CD13C390.pnach b/patches/SLES-54888_CD13C390.pnach new file mode 100644 index 00000000..4d6e0a65 --- /dev/null +++ b/patches/SLES-54888_CD13C390.pnach @@ -0,0 +1,6 @@ +gametitle=Pro Biker 2 PAL-E SLES-54888 CD13C390 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0022AE2C,word,3C02000B //3C02003B \ No newline at end of file diff --git a/patches/SLES-54892_17CAC631.pnach b/patches/SLES-54892_17CAC631.pnach index 4e4c790a..c26c20c8 100644 --- a/patches/SLES-54892_17CAC631.pnach +++ b/patches/SLES-54892_17CAC631.pnach @@ -2,7 +2,7 @@ gametitle=Phantasy Star Universe - Ambition of the Illuminus (PAL-M3) (SLES-5489 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,008e1bf0,word,43400000 // 43800000 hor fov diff --git a/patches/SLES-54897_E55A4E9A.pnach b/patches/SLES-54897_E55A4E9A.pnach index ab4a58b1..ab655d2e 100644 --- a/patches/SLES-54897_E55A4E9A.pnach +++ b/patches/SLES-54897_E55A4E9A.pnach @@ -2,7 +2,7 @@ gametitle=Grim Grimoire (E)(SLES-54897) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLES-54901_678BE0A5.pnach b/patches/SLES-54901_678BE0A5.pnach index a19eb16a..edd812dc 100644 --- a/patches/SLES-54901_678BE0A5.pnach +++ b/patches/SLES-54901_678BE0A5.pnach @@ -3,10 +3,23 @@ gametitle=Spider-Man: Friend or Foe (PAL-M5) (SLES_549.01) 678BE0A5 [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,203EC6C8,extended,3FE38E38 //3FAAAAAB (Increases hor. axis) -[50 FPS] +[Remove Blackbars] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,0037DF20,word,00000001 //00000002 \ No newline at end of file +description=Removes black bars in cutscenes +patch=1,EE,003F0604,extended,00000003 + +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock at 180%. +patch=1,EE,0037DF20,word,00000001 //00000002 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0032F2D4,word,24110000 +patch=1,EE,0032F2D8,word,24120050 +patch=1,EE,0032F2E4,word,24130001 \ No newline at end of file diff --git a/patches/SLES-54904_4C7BB3C8.pnach b/patches/SLES-54904_4C7BB3C8.pnach index dcdabee8..b708ca9f 100644 --- a/patches/SLES-54904_4C7BB3C8.pnach +++ b/patches/SLES-54904_4C7BB3C8.pnach @@ -1,7 +1,6 @@ gametitle=Simpsons Game, The (PAL-M4) SLES-54904 4C7BB3C8 [50 FPS] -author=CRASHARKI -comment=Unlocked at 50 FPS. Set EE Cycle Skipping to Mild Underclock to prevent framedrops and 130% EE Overclock to be stable. -patch=1,EE,00215954,word,00000000 //1440FFFA -patch=1,EE,003603B4,word,00000000 //1040FFF8 \ No newline at end of file +author=PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,0021591C,word,14800011 \ No newline at end of file diff --git a/patches/SLES-54905_5C1EBF61.pnach b/patches/SLES-54905_5C1EBF61.pnach index d25ddb97..3d3194de 100644 --- a/patches/SLES-54905_5C1EBF61.pnach +++ b/patches/SLES-54905_5C1EBF61.pnach @@ -1,7 +1,6 @@ gametitle=Simpsons Game, The (PAL-F) SLES-54905 5C1EBF61 [50 FPS] -author=CRASHARKI -comment=Unlocked at 50 FPS. Set EE Cycle Skipping to Mild Underclock to prevent framedrops and 130% EE Overclock to be stable. -patch=1,EE,00215904,word,00000000 //1440FFFA -patch=1,EE,0036033C,word,00000000 //1040FFF8 \ No newline at end of file +author=PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,0021591C,word,14800011 \ No newline at end of file diff --git a/patches/SLES-54906_565B7E04.pnach b/patches/SLES-54906_565B7E04.pnach index 5690a273..2efc5098 100644 --- a/patches/SLES-54906_565B7E04.pnach +++ b/patches/SLES-54906_565B7E04.pnach @@ -2,6 +2,5 @@ gametitle=Simpsons Game, The (PAL-S-I) SLES-54906 565B7E04 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Set EE Cycle Skipping to Mild Underclock to prevent framedrops and 130% EE Overclock to be stable. -patch=1,EE,00215954,word,00000000 //1440FFFA -patch=1,EE,003603AC,word,00000000 //1040FFF8 \ No newline at end of file +description=Might need EE Overclock (130%). +patch=1,EE,0021591C,word,14800011 \ No newline at end of file diff --git a/patches/SLES-54913_99D51FA8.pnach b/patches/SLES-54913_99D51FA8.pnach index 9ce9956a..0e3bfbbb 100644 --- a/patches/SLES-54913_99D51FA8.pnach +++ b/patches/SLES-54913_99D51FA8.pnach @@ -2,7 +2,7 @@ gametitle= Pro Evolution Soccer 2008 PAL Spain (SLES_549.13) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by El_Patas +author=El_Patas //Gameplay patch=1,EE,003B61A0,word,3FAAAAAB //3F800000 (increases hor. axis) diff --git a/patches/SLES-54918_C33DEDD7.pnach b/patches/SLES-54918_C33DEDD7.pnach index e7fe70b0..3a045a9b 100644 --- a/patches/SLES-54918_C33DEDD7.pnach +++ b/patches/SLES-54918_C33DEDD7.pnach @@ -2,7 +2,7 @@ gametitle=Agent Hugo - Lemoon Twist (E)(SLES-54918) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-54931_91C2DF01.pnach b/patches/SLES-54931_91C2DF01.pnach new file mode 100644 index 00000000..c1bf1e67 --- /dev/null +++ b/patches/SLES-54931_91C2DF01.pnach @@ -0,0 +1,42 @@ +gametitle=Looney Tunes - ACME Arsenal (PAL-M) SLES-54931 91C2DF01 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,208268D0,extended,3F100000 +patch=1,EE,208268E8,extended,3F400000 +patch=1,EE,208268F4,extended,3F160000 +patch=1,EE,2032F964,extended,3C054000 //HUD +patch=1,EE,002EA80C,extended,3C063F22 //render fix +patch=1,EE,00826334,extended,00000002 //fix submenu +patch=1,EE,E0013000,extended,00826710 //fix submenu +patch=1,EE,00826334,extended,00000001 //fix submenu +patch=1,EE,E0040001,extended,00666A10 +patch=1,EE,208268D0,extended,3F800000 +patch=1,EE,208268E8,extended,3F800000 +patch=1,EE,208268F4,extended,3F800000 +patch=1,EE,2032F964,extended,3C053F80 +patch=1,EE,00826344,extended,00000000 //0000004B Black bands +patch=1,EE,0082634C,extended,000001FE //00000169 + +[Remove Blackbars] +author=PeterDelta +description=Original image without black bars, showing 16:9 aspect ratio +patch=1,EE,00826334,extended,00000002 //fix submenu +patch=1,EE,E0013000,extended,00826710 //fix submenu +patch=1,EE,00826334,extended,00000001 //fix submenu +patch=1,EE,208268D0,extended,3F800000 +patch=1,EE,208268E8,extended,3F800000 +patch=1,EE,208268F4,extended,3F800000 +patch=1,EE,2032F964,extended,3C053F80 +patch=1,EE,00826344,extended,00000000 //0000004B Black bands +patch=1,EE,0082634C,extended,000001FE //00000169 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,00371A4C,word,24110000 +patch=1,EE,00371A50,word,24120050 +patch=1,EE,00371A5C,word,24130001 \ No newline at end of file diff --git a/patches/SLES-54933_6E069380.pnach b/patches/SLES-54933_6E069380.pnach new file mode 100644 index 00000000..ea691903 --- /dev/null +++ b/patches/SLES-54933_6E069380.pnach @@ -0,0 +1,20 @@ +gametitle=NBA Live 08 (PAL-S) SLES-54933 6E069380 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,10F63DA8,extended,01230101 +patch=1,EE,20890B88,extended,3FE38E32 +patch=1,EE,0089685C,extended,00000000 +patch=1,EE,2041D9BC,extended,3C013F00 //fmv +patch=1,EE,E0010001,extended,006D2BD4 +patch=1,EE,2041D9BC,extended,3C013EC0 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,00634494,word,24110000 +patch=1,EE,00634498,word,24120050 +patch=1,EE,006344A4,word,24130001 \ No newline at end of file diff --git a/patches/SLES-54937_1AC2F637.pnach b/patches/SLES-54937_1AC2F637.pnach index 97bf1344..8402a4ea 100644 --- a/patches/SLES-54937_1AC2F637.pnach +++ b/patches/SLES-54937_1AC2F637.pnach @@ -2,7 +2,7 @@ gametitle=RTL Biathlon 2008 [PAL] (SLES_549.37) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,003821F0,word,3F400000 //3F800000 Zoom diff --git a/patches/SLES-54946_E46EDD51.pnach b/patches/SLES-54946_E46EDD51.pnach new file mode 100644 index 00000000..bc9d1f29 --- /dev/null +++ b/patches/SLES-54946_E46EDD51.pnach @@ -0,0 +1,8 @@ +gametitle=Sega Superstars Tennis (PAL-M5) SLES-54946 E46EDD51 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00234A0C,word,3C013FE3 +patch=1,EE,003D75EC,word,00000001 \ No newline at end of file diff --git a/patches/SLES-54952_1712E9F9.pnach b/patches/SLES-54952_1712E9F9.pnach index 604697cd..0755e508 100644 --- a/patches/SLES-54952_1712E9F9.pnach +++ b/patches/SLES-54952_1712E9F9.pnach @@ -7,8 +7,16 @@ comment=Renders the game in 16:9 aspect ratio patch=1,EE,0011940C,word,3C013F4D //3C013F89 patch=1,EE,00119410,word,3421B6E0 //34212493 -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00268658,word,00000001 //00000002 -patch=1,EE,001637AC,word,3C013F30 \ No newline at end of file +patch=1,EE,001637AC,word,3C013F30 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,001BEED4,word,24110000 +patch=1,EE,001BEED8,word,24120050 +patch=1,EE,001BEEE4,word,24130001 \ No newline at end of file diff --git a/patches/SLES-54959_1C000196.pnach b/patches/SLES-54959_1C000196.pnach index 7df959b7..ff897c64 100644 --- a/patches/SLES-54959_1C000196.pnach +++ b/patches/SLES-54959_1C000196.pnach @@ -2,7 +2,7 @@ gametitle=MotoGP 07 [PAL-M5] (SLES_549.59) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0013BFA4,word,4483E800 //44830800 diff --git a/patches/SLES-54973_29C641C6.pnach b/patches/SLES-54973_29C641C6.pnach index cc557534..22b639cf 100644 --- a/patches/SLES-54973_29C641C6.pnach +++ b/patches/SLES-54973_29C641C6.pnach @@ -2,7 +2,7 @@ gametitle=Le avventure di "Lupin III" - Lupin la morte, Zenigata l'amore (E)(SLE [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54975_278B7BEA.pnach b/patches/SLES-54975_278B7BEA.pnach new file mode 100644 index 00000000..9f87ca78 --- /dev/null +++ b/patches/SLES-54975_278B7BEA.pnach @@ -0,0 +1,22 @@ +gametitle=George Of The Jungle (PAL-M) SLES-54975 278B7BEA + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00709208,word,3FE38E39 //3FAAAAA8 + +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,20287200,extended,00000000 +patch=1,EE,E0010001,extended,0047481C +patch=1,EE,20287200,extended,0C0E1A0E + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0038665C,word,24110000 +patch=1,EE,00386660,word,24120050 +patch=1,EE,0038666C,word,24130001 \ No newline at end of file diff --git a/patches/SLES-54986_83E8E954.pnach b/patches/SLES-54986_83E8E954.pnach index 2b412be9..d82b8200 100644 --- a/patches/SLES-54986_83E8E954.pnach +++ b/patches/SLES-54986_83E8E954.pnach @@ -2,7 +2,7 @@ gametitle=Bratz - The Movie (E)(SLES-54986) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54988_1A4890AB.pnach b/patches/SLES-54988_1A4890AB.pnach index 4c5a16c6..7fc202d0 100644 --- a/patches/SLES-54988_1A4890AB.pnach +++ b/patches/SLES-54988_1A4890AB.pnach @@ -2,7 +2,7 @@ gametitle=Bratz - The Movie (G)(SLES-54988) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-54989_FD4FE026.pnach b/patches/SLES-54989_FD4FE026.pnach index 251ca9d5..32496559 100644 --- a/patches/SLES-54989_FD4FE026.pnach +++ b/patches/SLES-54989_FD4FE026.pnach @@ -3,7 +3,7 @@ gametitle=Bratz - The Movie (PAL-S-I) SLES-54989 FD4FE026 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,003DDD24,word,3C013F40 patch=1,EE,003DDD28,word,4481F000 patch=1,EE,003DDD30,word,461EB582 @@ -11,7 +11,7 @@ patch=1,EE,003BD070,word,3C013F2B [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,003F4324,extended,46010003 patch=1,EE,E0010000,extended,004C0850 patch=1,EE,003F4324,extended,46010001 \ No newline at end of file diff --git a/patches/SLES-54991_35BD22CA.pnach b/patches/SLES-54991_35BD22CA.pnach index a62ecc65..cc9b6365 100644 --- a/patches/SLES-54991_35BD22CA.pnach +++ b/patches/SLES-54991_35BD22CA.pnach @@ -2,10 +2,8 @@ gametitle=Nicktoons - Attack of the Toybots (E)(SLES-54991) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa - -//Widescreen hack 16:9 - +author=Arapapa +description=Patches the game to run at 16:9 Widescreen Aspect Ratio. //Zoom patch=1,EE,0012a828,word,3c013f80 //3c013f40 @@ -16,6 +14,4 @@ patch=1,EE,000c0000,word,3c013f40 patch=1,EE,000c0004,word,4481f000 patch=1,EE,000c0008,word,461e0f83 patch=1,EE,000c000c,word,e7be000c -patch=1,EE,000c0010,word,0809dd3d - - +patch=1,EE,000c0010,word,0809dd3d \ No newline at end of file diff --git a/patches/SLES-54996_73351A86.pnach b/patches/SLES-54996_73351A86.pnach new file mode 100644 index 00000000..acf32f37 --- /dev/null +++ b/patches/SLES-54996_73351A86.pnach @@ -0,0 +1,6 @@ +gametitle=The Golden Compass PAL-M SLES-54996 73351A86 + +[50/60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0021D644,word,28630001 //28630002 \ No newline at end of file diff --git a/patches/SLES-55001_A97C9BFD.pnach b/patches/SLES-55001_A97C9BFD.pnach index cd674225..634d12a2 100644 --- a/patches/SLES-55001_A97C9BFD.pnach +++ b/patches/SLES-55001_A97C9BFD.pnach @@ -2,33 +2,15 @@ gametitle=Mercenaries 2: World in Flames [PAL-Spain] (SLES_550.01) A97C9BFD [Widescreen 16:9] gsaspectratio=16:9 -author=El_Patas -comment=Renders the game in 16:9 aspect ratio -// 16:9 -patch=1,EE,0037c350,word,3c013f40 //00000000 hor fov - -// 16:10 -//patch=1,EE,0037c350,word,3c013f55 //00000000 hor fov -//patch=1,EE,0037c354,word,34215555 //00000000 hor fov - -// 16:9 and 16:10 main modifications -// no need to change anything here! all modifications are calculated -// based on the hor fov value in the upper 16:9/16:10 section -patch=1,EE,0037c358,word,4481f000 //00000000 fov -patch=1,EE,0037cc18,word,4600f306 //44816000 fov -patch=1,EE,00380f54,word,461e0843 //3c013f80 renderfix 1 objects -patch=1,EE,00380f58,word,46010d43 //4481a800 renderfix 1 objects -patch=1,EE,00389450,word,4600f306 //44816000 renderfix 2 smoke and fire -patch=1,EE,0037b490,word,0813cbcb //46030842 hud-identification fix -patch=1,EE,0037b494,word,00000000 //46030002 hud-identification fix -patch=1,EE,00556848,word,46030842 //00000000 hud-identification fix -patch=1,EE,0055684c,word,46030002 //00000000 hud-identification fix -patch=1,EE,00556850,word,461e0002 //00000000 hud-identification fix -patch=1,EE,00556854,word,080ce663 //00000000 hud-identification fix +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,0037CC14,word,3C013F40 //3C013F80 +patch=1,EE,00380F1C,word,3C013F2B //3C013F00 render fix +patch=1,EE,00389870,word,3C013F2B //3C013F00 render fix 2 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,003FD244,extended,3C0200A0 patch=1,EE,E0010000,extended,0055D9E4 patch=1,EE,003FD244,extended,3C020050 \ No newline at end of file diff --git a/patches/SLES-55003_EA8DC584.pnach b/patches/SLES-55003_EA8DC584.pnach index d3b614e9..d13f563c 100644 --- a/patches/SLES-55003_EA8DC584.pnach +++ b/patches/SLES-55003_EA8DC584.pnach @@ -2,7 +2,7 @@ gametitle=Need for Speed - ProStreet (PAL-M2) (SLES-55003) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00682bd4,word,3f400000 // 3f800000 diff --git a/patches/SLES-55004_9E457DD6.pnach b/patches/SLES-55004_9E457DD6.pnach index f7db2468..a423f23d 100644 --- a/patches/SLES-55004_9E457DD6.pnach +++ b/patches/SLES-55004_9E457DD6.pnach @@ -8,10 +8,10 @@ patch=1,EE,20168A10,extended,24020001 //li v0, 1 patch=1,EE,206828D8,extended,3F400000 //Horizontal: 0.75f Corrects Aspect Ratio patch=1,EE,206828DC,extended,3F8CCCCD //Vertical: 1.10f -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps +description=SDTV 480p mode at start. patch=1,EE,00587054,word,24110000 -patch=1,EE,00587058,word,24120052 -patch=1,EE,00587064,word,24130001 -patch=1,EE,00685EFC,word,0000001E \ No newline at end of file +patch=1,EE,00587058,word,24120050 +patch=1,EE,00587064,word,24130001 \ No newline at end of file diff --git a/patches/SLES-55008_6CCD807F.pnach b/patches/SLES-55008_6CCD807F.pnach index 871f72dd..f28d126c 100644 --- a/patches/SLES-55008_6CCD807F.pnach +++ b/patches/SLES-55008_6CCD807F.pnach @@ -2,7 +2,7 @@ gametitle=Riding Star 3(E)(SLES-55008) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-55016_9D6AA1B8.pnach b/patches/SLES-55016_9D6AA1B8.pnach index d1f9ae23..62b94cad 100644 --- a/patches/SLES-55016_9D6AA1B8.pnach +++ b/patches/SLES-55016_9D6AA1B8.pnach @@ -1,4 +1,4 @@ -gametitle=Bee Movie Game (E)(SLES-55016) 9D6AA1B8 +gametitle=DreamWorks Bee Movie Game (PAL-M) (SLES-55016) 9D6AA1B8 [Widescreen 16:9] gsaspectratio=16:9 @@ -17,7 +17,15 @@ patch=1,EE,0022eb6c,word,4481f000 patch=1,EE,0022eb70,word,461e0002 patch=1,EE,0022eb74,word,0806194c -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,00209798,word,28420001 //28420002 \ No newline at end of file +description=Might need EE Overclock at 180%. +patch=1,EE,00209798,word,28420001 //28420002 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0010621C,word,24110000 +patch=1,EE,00106220,word,24120050 +patch=1,EE,0010622C,word,24130001 \ No newline at end of file diff --git a/patches/SLES-55020_5C1EBD61.pnach b/patches/SLES-55020_5C1EBD61.pnach index 729e46e1..b245d38f 100644 --- a/patches/SLES-55020_5C1EBD61.pnach +++ b/patches/SLES-55020_5C1EBD61.pnach @@ -1,7 +1,6 @@ gametitle=Simpsons Game, The (PAL-G) SLES-55020 5C1EBD61 [50 FPS] -author=CRASHARKI -comment=Unlocked at 50 FPS. Set EE Cycle Skipping to Mild Underclock to prevent framedrops and 130% EE Overclock to be stable. -patch=1,EE,00215904,word,00000000 //1440FFFA -patch=1,EE,0036033C,word,00000000 //1040FFF8 \ No newline at end of file +author=PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,0021591C,word,14800011 \ No newline at end of file diff --git a/patches/SLES-55025_ED999A64.pnach b/patches/SLES-55025_ED999A64.pnach new file mode 100644 index 00000000..e9682c63 --- /dev/null +++ b/patches/SLES-55025_ED999A64.pnach @@ -0,0 +1,8 @@ +gametitle=Disney/Pixar Cars - Mater-National Championship PAL-E SLES-55025 ED999A64 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,201B8AE4,extended,24040001 +patch=1,EE,E0010001,extended,004B77B8 +patch=1,EE,201B8AE4,extended,24040002 \ No newline at end of file diff --git a/patches/SLES-55030_EDD49A64.pnach b/patches/SLES-55030_EDD49A64.pnach index 0371cd9b..05c0dc14 100644 --- a/patches/SLES-55030_EDD49A64.pnach +++ b/patches/SLES-55030_EDD49A64.pnach @@ -2,7 +2,7 @@ gametitle=Cars: Mater-National Championship [PAL-M4-Eng-Dan-Sve-Nor] (SLES_550.3 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00119550,word,3C033CAE //3C033C8E Zoom diff --git a/patches/SLES-55043_F3290234.pnach b/patches/SLES-55043_F3290234.pnach index 6ac55410..26973572 100644 --- a/patches/SLES-55043_F3290234.pnach +++ b/patches/SLES-55043_F3290234.pnach @@ -2,7 +2,7 @@ gametitle=Garfield: Lasagna World Tour [PAL-M2-Fre-Neth] (SLES_550.43) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001C3514,word,3C033F40 //3C033F80 (Increases hor. axis) diff --git a/patches/SLES-55050_74912B29.pnach b/patches/SLES-55050_74912B29.pnach index 6aad41ec..46e3e5eb 100644 --- a/patches/SLES-55050_74912B29.pnach +++ b/patches/SLES-55050_74912B29.pnach @@ -2,7 +2,7 @@ gametitle=MX vs ATV Untamed [PAL] (SLES_550.50) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001119F0,word,3C033CAE //3C033C8E Zoom diff --git a/patches/SLES-55075_24FCE337.pnach b/patches/SLES-55075_24FCE337.pnach index 2eaae23b..c3b11ef9 100644 --- a/patches/SLES-55075_24FCE337.pnach +++ b/patches/SLES-55075_24FCE337.pnach @@ -2,7 +2,7 @@ gametitle=Speed Racer (PAL) SLES_550.75 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by pelvicthrustman +author=pelvicthrustman comment= PAL Port by PuNkY_BoY patch=1,EE,004c3fcc,word,3c013f00 //00000000 diff --git a/patches/SLES-55079_5CE09C49.pnach b/patches/SLES-55079_5CE09C49.pnach index b1238efb..3ff54c6f 100644 --- a/patches/SLES-55079_5CE09C49.pnach +++ b/patches/SLES-55079_5CE09C49.pnach @@ -1,11 +1,9 @@ -gametitle=CID the Dummy (E)(SLES-55079) +gametitle=CID the Dummy (PAL-M) SLES-55079 5CE09C49 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa - -//Widescreen hack 16:9 - +author=Arapapa +description=Renders the game in 16:9 aspect ratio //X-Fov //06a30046 86050046 patch=1,EE,00228a58,word,080997d8 @@ -17,4 +15,9 @@ patch=1,EE,00265f6c,word,4481f000 patch=1,EE,00265f70,word,461eb582 patch=1,EE,00265f74,word,0808a297 - +[480p Mode] +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0024A8CC,word,24110000 +patch=1,EE,0024A8D0,word,24120050 +patch=1,EE,0024A8DC,word,24130001 \ No newline at end of file diff --git a/patches/SLES-55090_6EA6EC1B.pnach b/patches/SLES-55090_6EA6EC1B.pnach index 406f3fa8..c4acb741 100644 --- a/patches/SLES-55090_6EA6EC1B.pnach +++ b/patches/SLES-55090_6EA6EC1B.pnach @@ -2,7 +2,7 @@ gametitle=Naruto - Uzumaki Chronicles 2 (PAL-M6) (SLES-55090) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // // 16:9 patch=1,EE,001d1a58,word,3c023f13 // 3c023f44 hor fov diff --git a/patches/SLES-55102_855C75E9.pnach b/patches/SLES-55102_855C75E9.pnach index 7de71b3b..be098ce6 100644 --- a/patches/SLES-55102_855C75E9.pnach +++ b/patches/SLES-55102_855C75E9.pnach @@ -2,7 +2,7 @@ gametitle=The History Channel - Battle for the Pacific (E)(SLES-55102) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-55108_67472179.pnach b/patches/SLES-55108_67472179.pnach index 42e0b142..b85f7fae 100644 --- a/patches/SLES-55108_67472179.pnach +++ b/patches/SLES-55108_67472179.pnach @@ -2,7 +2,7 @@ gametitle=Samurai Warriors 2 - Xtreme Legends (PAL-E) (SLES-55108) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,00181c78,word,3c023f19 // 3c023f4c hor fov 1-player diff --git a/patches/SLES-55109_D5D1D002.pnach b/patches/SLES-55109_D5D1D002.pnach index b5761f65..16be40ea 100644 --- a/patches/SLES-55109_D5D1D002.pnach +++ b/patches/SLES-55109_D5D1D002.pnach @@ -2,5 +2,5 @@ gametitle=Spiderwick Chronicles, The (PAL-M) SLES-55109 D5D1D002 [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0040E820,word,00000000 //00000001 \ No newline at end of file diff --git a/patches/SLES-55112_4AF82486.pnach b/patches/SLES-55112_4AF82486.pnach new file mode 100644 index 00000000..1673a7ef --- /dev/null +++ b/patches/SLES-55112_4AF82486.pnach @@ -0,0 +1,10 @@ +gametitle=Dora the Explorer - Dora Saves the Mermaids PAL-A SLES-55112 4AF82486 + +[NTSC Mode/60 FPS] +author=Gabominated +description=NTSC Mode at 60 FPS. Might need EE Overclock. +patch=1,EE,203C9BD0,extended,00000003 +patch=1,EE,20178010,extended,00000000 +patch=1,EE,E0010001,extended,003C9A48 +patch=1,EE,20178010,extended,0C09FEF8 +patch=1,EE,201AF3BC,extended,2403003c \ No newline at end of file diff --git a/patches/SLES-55122_70C67A3C.pnach b/patches/SLES-55122_70C67A3C.pnach index a8ac2bce..585692d3 100644 --- a/patches/SLES-55122_70C67A3C.pnach +++ b/patches/SLES-55122_70C67A3C.pnach @@ -2,7 +2,7 @@ gametitle=Moorhuhn Fun Kart 2008 (E)(SLES-55122) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-55129_08944D35.pnach b/patches/SLES-55129_08944D35.pnach index 3a987aea..7ffeb34e 100644 --- a/patches/SLES-55129_08944D35.pnach +++ b/patches/SLES-55129_08944D35.pnach @@ -2,7 +2,7 @@ gametitle=Jumper - Griffin's Story (E)(SLES-55129) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-55133_6B1E796B.pnach b/patches/SLES-55133_6B1E796B.pnach index 77a81ddb..d4b4eeea 100644 --- a/patches/SLES-55133_6B1E796B.pnach +++ b/patches/SLES-55133_6B1E796B.pnach @@ -2,7 +2,7 @@ gametitle=LEGO Indiana Jones: The Original Adventures [PAL] (SLES-55133) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,204EF0DC,extended,00000A01 //00000A00 Internal Wide Option On diff --git a/patches/SLES-55135_E01F57ED.pnach b/patches/SLES-55135_E01F57ED.pnach index 6803d0a7..4e880cdc 100644 --- a/patches/SLES-55135_E01F57ED.pnach +++ b/patches/SLES-55135_E01F57ED.pnach @@ -2,7 +2,7 @@ gametitle=LEGO Batman: The Video Game [PAL] (SLES_551.35) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //El parche funciona bien para la parte jugable, aunque como efecto negativo provoca que //tengan un gran zoom el menú principal y las escenas cinemáticas. diff --git a/patches/SLES-55144_63A8E32A.pnach b/patches/SLES-55144_63A8E32A.pnach index e235db79..9a4675fd 100644 --- a/patches/SLES-55144_63A8E32A.pnach +++ b/patches/SLES-55144_63A8E32A.pnach @@ -1,6 +1,14 @@ gametitle=The Chronicles of Narnia - Prince Caspian (PAL-M) SLES-55144 63A8E32A -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,003C3590,word,00000000 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,003C3590,word,00000000 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0043DD7C,word,24110000 +patch=1,EE,0043DD80,word,24120050 +patch=1,EE,0043DD8C,word,24130001 \ No newline at end of file diff --git a/patches/SLES-55148_E4BDADEE.pnach b/patches/SLES-55148_E4BDADEE.pnach index 56a7cd62..7e0002fc 100644 --- a/patches/SLES-55148_E4BDADEE.pnach +++ b/patches/SLES-55148_E4BDADEE.pnach @@ -2,7 +2,7 @@ gametitle=SBK-08 - Superbike World Championship (PAL-M5) (SLES-55148) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0013d448,word,4482e000 // 44820000 diff --git a/patches/SLES-55150_F2A2F496.pnach b/patches/SLES-55150_F2A2F496.pnach index 4e67444c..e1016f21 100644 --- a/patches/SLES-55150_F2A2F496.pnach +++ b/patches/SLES-55150_F2A2F496.pnach @@ -2,7 +2,7 @@ gametitle=TNA iMPACT!: Total Nonstop Action Wrestling (PAL-M5) (SLES-55150) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 // note: data is stored in "TNAPOV.ELF" diff --git a/patches/SLES-55152_EAEEC017.pnach b/patches/SLES-55152_EAEEC017.pnach index 55d48577..bde02e77 100644 --- a/patches/SLES-55152_EAEEC017.pnach +++ b/patches/SLES-55152_EAEEC017.pnach @@ -1,11 +1,14 @@ -gametitle=Skyscraper (E)(SLES-55152) +gametitle=Skyscraper PAL-M SLES-55152 EAEEC017 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,0025c240,word,3c013fab - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0022AF9C,word,10400010 //14400010 \ No newline at end of file diff --git a/patches/SLES-55167_4A2F5CDA.pnach b/patches/SLES-55167_4A2F5CDA.pnach index c75654f4..56553c52 100644 --- a/patches/SLES-55167_4A2F5CDA.pnach +++ b/patches/SLES-55167_4A2F5CDA.pnach @@ -2,7 +2,7 @@ gametitle=Soul Nomad & the World Eaters (PAL) [SLES-55167] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,001048e4,word,3c013f40 //00000000 diff --git a/patches/SLES-55169_973E4DBB.pnach b/patches/SLES-55169_973E4DBB.pnach index e110ef05..a25e988c 100644 --- a/patches/SLES-55169_973E4DBB.pnach +++ b/patches/SLES-55169_973E4DBB.pnach @@ -2,7 +2,7 @@ gametitle=Monster Lab (E)(SLES-55169) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-55172_6AECA3DC.pnach b/patches/SLES-55172_6AECA3DC.pnach index d8a7a809..2118d843 100644 --- a/patches/SLES-55172_6AECA3DC.pnach +++ b/patches/SLES-55172_6AECA3DC.pnach @@ -2,7 +2,7 @@ gametitle=Code Lyoko - Quest for Infinity (E)(SLES-55172) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-55192_B2367FD0.pnach b/patches/SLES-55192_B2367FD0.pnach index 92759e16..20aa1841 100644 --- a/patches/SLES-55192_B2367FD0.pnach +++ b/patches/SLES-55192_B2367FD0.pnach @@ -1,8 +1,8 @@ -gametitle=Nitrobike (E)(SLES-55192) +gametitle=Nitro Bike PAL-M SLES-55192 B2367FD0 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -16,4 +16,8 @@ patch=1,EE,00429fac,word,461ebdc2 //00000000 //003f013c 00608144 00009344 00000000 20008046 patch=1,EE,0039c03c,word,3c013f16 //3c013f00 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0039C6AC,word,10400003 //14400003 +patch=1,EE,00361e50,word,3c013ca3 //3c013d23 \ No newline at end of file diff --git a/patches/SLES-55202_600348B9.pnach b/patches/SLES-55202_600348B9.pnach index 84dc89a9..73f9e7f4 100644 --- a/patches/SLES-55202_600348B9.pnach +++ b/patches/SLES-55202_600348B9.pnach @@ -2,7 +2,7 @@ gametitle=Riding Star (E)(SLES-55202) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-55204_0F89A154.pnach b/patches/SLES-55204_0F89A154.pnach index fe0f138b..a411060f 100644 --- a/patches/SLES-55204_0F89A154.pnach +++ b/patches/SLES-55204_0F89A154.pnach @@ -3,16 +3,15 @@ gametitle=Crash - Mind Over Mutant (PAL) [Widescreen 16:9] gsaspectratio=16:9 author=CRASHARKI -comment=Run the game at 16:9 Widescreen Aspect Ratio from the start. +description=Run the game at 16:9 Widescreen Aspect Ratio from the start. patch=1,EE,21A2A0C8,byte,1 //00000000 //HUD patch=1,EE,21A2A102,byte,10 //40 //Zoom 1 -patch=1,EE,21A2A108,extended,3F000000 //3F2AAAAA //Zoom without Progressive Scan -patch=1,EE,E0010001,extended,01A2A0A8 //Check if Progressive Scan is on -patch=1,EE,21A2A108,extended,3F066666 //3F333333 //Zoom with Progressive Scan +patch=1,EE,21A2A108,extended,3F100000 //3F000000 | 3F066666 //Y-Axis +patch=1,EE,21A2A104,extended,3F7FA68A //3F65A68A | 3F63F7CD //X-Axis [Progressive Scan] author=CRASHARKI -comment=Run the game with Progressive Scan enabled from the start. +description=Run the game with Progressive Scan enabled from the start. patch=1,EE,20715330,byte,1 //00000000 //Progressive Scan\60 FPS from the beginning [50/60 FPS] diff --git a/patches/SLES-55205_0F89A154.pnach b/patches/SLES-55205_0F89A154.pnach index fe0f138b..a411060f 100644 --- a/patches/SLES-55205_0F89A154.pnach +++ b/patches/SLES-55205_0F89A154.pnach @@ -3,16 +3,15 @@ gametitle=Crash - Mind Over Mutant (PAL) [Widescreen 16:9] gsaspectratio=16:9 author=CRASHARKI -comment=Run the game at 16:9 Widescreen Aspect Ratio from the start. +description=Run the game at 16:9 Widescreen Aspect Ratio from the start. patch=1,EE,21A2A0C8,byte,1 //00000000 //HUD patch=1,EE,21A2A102,byte,10 //40 //Zoom 1 -patch=1,EE,21A2A108,extended,3F000000 //3F2AAAAA //Zoom without Progressive Scan -patch=1,EE,E0010001,extended,01A2A0A8 //Check if Progressive Scan is on -patch=1,EE,21A2A108,extended,3F066666 //3F333333 //Zoom with Progressive Scan +patch=1,EE,21A2A108,extended,3F100000 //3F000000 | 3F066666 //Y-Axis +patch=1,EE,21A2A104,extended,3F7FA68A //3F65A68A | 3F63F7CD //X-Axis [Progressive Scan] author=CRASHARKI -comment=Run the game with Progressive Scan enabled from the start. +description=Run the game with Progressive Scan enabled from the start. patch=1,EE,20715330,byte,1 //00000000 //Progressive Scan\60 FPS from the beginning [50/60 FPS] diff --git a/patches/SLES-55206_0F89A154.pnach b/patches/SLES-55206_0F89A154.pnach index fe0f138b..a411060f 100644 --- a/patches/SLES-55206_0F89A154.pnach +++ b/patches/SLES-55206_0F89A154.pnach @@ -3,16 +3,15 @@ gametitle=Crash - Mind Over Mutant (PAL) [Widescreen 16:9] gsaspectratio=16:9 author=CRASHARKI -comment=Run the game at 16:9 Widescreen Aspect Ratio from the start. +description=Run the game at 16:9 Widescreen Aspect Ratio from the start. patch=1,EE,21A2A0C8,byte,1 //00000000 //HUD patch=1,EE,21A2A102,byte,10 //40 //Zoom 1 -patch=1,EE,21A2A108,extended,3F000000 //3F2AAAAA //Zoom without Progressive Scan -patch=1,EE,E0010001,extended,01A2A0A8 //Check if Progressive Scan is on -patch=1,EE,21A2A108,extended,3F066666 //3F333333 //Zoom with Progressive Scan +patch=1,EE,21A2A108,extended,3F100000 //3F000000 | 3F066666 //Y-Axis +patch=1,EE,21A2A104,extended,3F7FA68A //3F65A68A | 3F63F7CD //X-Axis [Progressive Scan] author=CRASHARKI -comment=Run the game with Progressive Scan enabled from the start. +description=Run the game with Progressive Scan enabled from the start. patch=1,EE,20715330,byte,1 //00000000 //Progressive Scan\60 FPS from the beginning [50/60 FPS] diff --git a/patches/SLES-55207_68FC3CF9.pnach b/patches/SLES-55207_68FC3CF9.pnach index 665a770c..f175e132 100644 --- a/patches/SLES-55207_68FC3CF9.pnach +++ b/patches/SLES-55207_68FC3CF9.pnach @@ -1,10 +1,9 @@ -gametitle=Alone in the Dark (SLES-55207) +gametitle=Alone in the Dark (PAL-M) SLES-55207 68FC3CF9 [Widescreen 16:9] +gsaspectratio=16:9 author=nemesis2000 description=Renders the game in 16:9 aspect ratio, instead of 4:3. -gsaspectratio=16:9 - patch=1,EE,0035033c,word,46000003 patch=1,EE,00350340,word,7fb00010 patch=1,EE,00350344,word,ffbf0000 @@ -33,12 +32,11 @@ patch=1,EE,0035039c,word,27bd0020 patch=1,EE,0042b3fc,word,3c033f2b -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan and run at 60 fps -patch=1,EE,006CC358,word,02058290 -patch=1,EE,006CC380,word,02058290 -patch=1,EE,00117B60,word,34050052 +description=SDTV 480p mode at start. +patch=1,EE,00117B60,word,34050050 patch=1,EE,00117B64,word,24030002 patch=1,EE,00117B68,word,0000000C patch=1,EE,00117B6C,word,03E00008 \ No newline at end of file diff --git a/patches/SLES-55216_0CFFFBCC.pnach b/patches/SLES-55216_0CFFFBCC.pnach index 6eb9478a..3065dc3f 100644 --- a/patches/SLES-55216_0CFFFBCC.pnach +++ b/patches/SLES-55216_0CFFFBCC.pnach @@ -2,7 +2,7 @@ gametitle=Baroque (PAL-E) (SLES-55216) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht //Apepars to totally break rendering in both hardware and software currently. diff --git a/patches/SLES-55236_EEFA39E1.pnach b/patches/SLES-55236_EEFA39E1.pnach index c089c6a7..1ed11d38 100644 --- a/patches/SLES-55236_EEFA39E1.pnach +++ b/patches/SLES-55236_EEFA39E1.pnach @@ -1,14 +1,13 @@ -gametitle=Kung Fu Panda [PAL-Spain] (SLES_552.36) +gametitle=Kung Fu Panda [PAL-Spain] (SLES_552.36) EEFA39E1 [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Gameplay 16:9 patch=1,EE,2069520C,extended,3FE38E38 //3FAAAAAB (Increases hor. axis) - [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,0062B1D4,word,00000001 //00000002 srl zero,0x00 +description=Might need EE Overclock at 130%. +patch=1,EE,0062B1D4,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-55251_FB26E854.pnach b/patches/SLES-55251_FB26E854.pnach index 92f36fe6..5ce07847 100644 --- a/patches/SLES-55251_FB26E854.pnach +++ b/patches/SLES-55251_FB26E854.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown vs. Raw 2009 (PAL-M5) (SLES-55251) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 +author=nemesis2000 // Ported to PAL, added 16:10 support (ElHecht) // 16:9 diff --git a/patches/SLES-55266_0AE1DBD5.pnach b/patches/SLES-55266_0AE1DBD5.pnach index 107739be..344d400f 100644 --- a/patches/SLES-55266_0AE1DBD5.pnach +++ b/patches/SLES-55266_0AE1DBD5.pnach @@ -2,7 +2,7 @@ gametitle=MotoGP 08 [PAL-M5] (SLES_552.66) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0013CBD8,word,4482E000 //44820000 diff --git a/patches/SLES-55271_A9060667.pnach b/patches/SLES-55271_A9060667.pnach new file mode 100644 index 00000000..720c9cde --- /dev/null +++ b/patches/SLES-55271_A9060667.pnach @@ -0,0 +1,8 @@ +gametitle=Spongebob SquarePants Featuring Nicktoons - Globs of Doom (PAL-E) + +[Widescreen 16:9] +gsaspectratio=16:9 +author=CRASHARKI +description=Run the game at 16:9 Widescreen Aspect Ratio from the start. +patch=1,EE,204142B4,extended,3FB60B60 //3F888888 +patch=1,EE,204B4C84,extended,00000001 //00000000 \ No newline at end of file diff --git a/patches/SLES-55272_8EB42610.pnach b/patches/SLES-55272_8EB42610.pnach new file mode 100644 index 00000000..a1846d87 --- /dev/null +++ b/patches/SLES-55272_8EB42610.pnach @@ -0,0 +1,8 @@ +gametitle=Spongebob SquarePants Featuring Nicktoons - Globs of Doom (PAL-M) + +[Widescreen 16:9] +gsaspectratio=16:9 +author=CRASHARKI +description=Run the game at 16:9 Widescreen Aspect Ratio from the start. +patch=1,EE,204142B4,extended,3FB60B60 //3F888888 +patch=1,EE,204B4C84,extended,00000001 //00000000 \ No newline at end of file diff --git a/patches/SLES-55274_53B84E26.pnach b/patches/SLES-55274_53B84E26.pnach index 6da5c5b1..33a2ee28 100644 --- a/patches/SLES-55274_53B84E26.pnach +++ b/patches/SLES-55274_53B84E26.pnach @@ -2,7 +2,7 @@ gametitle=Diabolik - The Original Sin (E)(SLES-55274) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-55275_A68EB83E.pnach b/patches/SLES-55275_A68EB83E.pnach new file mode 100644 index 00000000..755cf277 --- /dev/null +++ b/patches/SLES-55275_A68EB83E.pnach @@ -0,0 +1,7 @@ +gametitle=Jeep Thrills PAL-M SLES-55275 A68EB83E + +[50 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,0019EDB0,word,14600007 //10600007 +patch=1,EE,00144CBC,word,24420003 //24420001 \ No newline at end of file diff --git a/patches/SLES-55288_58026BD0.pnach b/patches/SLES-55288_58026BD0.pnach new file mode 100644 index 00000000..dd672d66 --- /dev/null +++ b/patches/SLES-55288_58026BD0.pnach @@ -0,0 +1,10 @@ +gametitle=Dora the Explorer - Dora Saves the Mermaids PAL-M SLES-55288 58026BD0 + +[NTSC Mode/60 FPS] +author=Gabominated +description=NTSC Mode at 60 FPS. Might need EE Overclock. +patch=1,EE,203c9c50,extended,00000003 +patch=1,EE,20178088,extended,00000000 +patch=1,EE,E0010001,extended,003C9AC8 +patch=1,EE,20178088,extended,0C09FF28 +patch=1,EE,201af434,extended,2403003c \ No newline at end of file diff --git a/patches/SLES-55293_56CEA32F.pnach b/patches/SLES-55293_56CEA32F.pnach index 2875b273..89375ede 100644 --- a/patches/SLES-55293_56CEA32F.pnach +++ b/patches/SLES-55293_56CEA32F.pnach @@ -1,7 +1,7 @@ [Widescreen 16:9] gsaspectratio=16:9 gametitle=Disney Hannah Montana - Spotlight World Tour (E)(SLES-55293) -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-55294_5EEFD8C0.pnach b/patches/SLES-55294_5EEFD8C0.pnach index 779f20ed..d0a03c69 100644 --- a/patches/SLES-55294_5EEFD8C0.pnach +++ b/patches/SLES-55294_5EEFD8C0.pnach @@ -1,15 +1,15 @@ gametitle=Ferrari Challenge - Trofeo Pirelli (PAL-M) SLES-55294 5EEFD8C0 -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0017C11C,word,24040001 //24040002 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode at 60 fps +description=SDTV 480p mode at start. patch=1,EE,0043B8CC,word,3C050000 -patch=1,EE,0043B8D4,word,3C060052 +patch=1,EE,0043B8D4,word,3C060050 patch=1,EE,0043B8DC,word,3C070001 -patch=1,EE,00644E94,word,3C88889A -patch=1,EE,0056B6C0,word,00000022 \ No newline at end of file +patch=1,EE,00644E94,word,3C88889A \ No newline at end of file diff --git a/patches/SLES-55295_1C3FEC65.pnach b/patches/SLES-55295_1C3FEC65.pnach new file mode 100644 index 00000000..b9736dd8 --- /dev/null +++ b/patches/SLES-55295_1C3FEC65.pnach @@ -0,0 +1,10 @@ +gametitle=Score International Baja 1000 - World Championship Off Road Racing PAL-E SLES-55295 1C3FEC65 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,202D1C34,extended,24110001 +patch=1,EE,20C33FAC,extended,3CA3D70A +patch=1,EE,E0020001,extended,00480978 +patch=1,EE,202D1C34,extended,24110002 +patch=1,EE,20C33FAC,extended,3D23D70A \ No newline at end of file diff --git a/patches/SLES-55328_E6585C44.pnach b/patches/SLES-55328_E6585C44.pnach index 8f972cd7..4c07e20f 100644 --- a/patches/SLES-55328_E6585C44.pnach +++ b/patches/SLES-55328_E6585C44.pnach @@ -2,7 +2,7 @@ gametitle=The Millenium European Paintball Series - Championship Paintball 2009 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-55330_5AC50849.pnach b/patches/SLES-55330_5AC50849.pnach index 262db7f4..4c73d56b 100644 --- a/patches/SLES-55330_5AC50849.pnach +++ b/patches/SLES-55330_5AC50849.pnach @@ -1,8 +1,8 @@ -gametitle=Secret Service (E)(SLES-55330) +gametitle=Secret Service PAL-E SLES-55330 5AC50849 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 @@ -14,4 +14,7 @@ patch=1,EE,002c7abc,word,3c013f1e //3c013f00 //403f013c 00008144 d00b8224 patch=1,EE,00180010,word,3c013f10 //3c013f40 - +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,201841F0,extended,2C420001 //2C420002 \ No newline at end of file diff --git a/patches/SLES-55331_F74AEED0.pnach b/patches/SLES-55331_F74AEED0.pnach index cab3c779..6debf47d 100644 --- a/patches/SLES-55331_F74AEED0.pnach +++ b/patches/SLES-55331_F74AEED0.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's Dangerous Adventures (E)(SLES-55331) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-55337_0F174CC9.pnach b/patches/SLES-55337_0F174CC9.pnach new file mode 100644 index 00000000..8b874415 --- /dev/null +++ b/patches/SLES-55337_0F174CC9.pnach @@ -0,0 +1,20 @@ +gametitle=NBA Live 09 (PAL-S) SLES-55337 0F174CC9 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,10FE0EFC,extended,8B8B0101 +patch=1,EE,208B9B88,extended,3FE38E32 +patch=1,EE,008BF85C,extended,00000000 +patch=1,EE,2044E064,extended,3C013F00 //fmv +patch=1,EE,E0010001,extended,006FE7C8 +patch=1,EE,2044E064,extended,3C013EC0 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0065F7E4,word,24110000 +patch=1,EE,0065F7E8,word,24120050 +patch=1,EE,0065F7F4,word,24130001 \ No newline at end of file diff --git a/patches/SLES-55340_C423A2DC.pnach b/patches/SLES-55340_C423A2DC.pnach new file mode 100644 index 00000000..6e17e6d3 --- /dev/null +++ b/patches/SLES-55340_C423A2DC.pnach @@ -0,0 +1,16 @@ +gametitle=Space Chimps (PAL-M) SLES-55340 C423A2DC + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00600188,word,00000000 //0000004B +patch=1,EE,00600190,word,00000200 //00000169 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,004213B4,word,24110000 +patch=1,EE,004213B8,word,24120050 +patch=1,EE,004213C4,word,24130001 \ No newline at end of file diff --git a/patches/SLES-55357_26847412.pnach b/patches/SLES-55357_26847412.pnach index c31a000e..b4d591ba 100644 --- a/patches/SLES-55357_26847412.pnach +++ b/patches/SLES-55357_26847412.pnach @@ -13,7 +13,7 @@ patch=1,EE,003baf98,word,461eb582 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,003F4324,extended,46010003 patch=1,EE,E0010000,extended,004AD52C patch=1,EE,003D189C,extended,46010001 \ No newline at end of file diff --git a/patches/SLES-55365_ADEFE7CB.pnach b/patches/SLES-55365_ADEFE7CB.pnach index 3e6df565..7e3f1663 100644 --- a/patches/SLES-55365_ADEFE7CB.pnach +++ b/patches/SLES-55365_ADEFE7CB.pnach @@ -2,7 +2,7 @@ gametitle=Agent Hugo - Hula Holiday (E)(SLES-55365) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-55371_A038AAC7.pnach b/patches/SLES-55371_A038AAC7.pnach index 67b983cf..0332a1f1 100644 --- a/patches/SLES-55371_A038AAC7.pnach +++ b/patches/SLES-55371_A038AAC7.pnach @@ -2,7 +2,7 @@ gametitle=Barbie Horse Adventures - Riding Camp (E)(SLES-55371) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-55374_76B70CCE.pnach b/patches/SLES-55374_76B70CCE.pnach index fcb960eb..ae6b708c 100644 --- a/patches/SLES-55374_76B70CCE.pnach +++ b/patches/SLES-55374_76B70CCE.pnach @@ -1,16 +1,15 @@ -gametitle=DreamWorks Madagascar 2 - Escape 2 Africa (E)(SLES-55374) 76B70CCE +gametitle=DreamWorks Madagascar 2 - Escape 2 Africa (PAL-M) (SLES-55374) 76B70CCE [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,001ff07c,word,3c023f1e //3c023f00 -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode at 60 fps +description=SDTV 480p mode at start. patch=1,EE,00465124,word,3C050000 -patch=1,EE,0046512C,word,3C060052 -patch=1,EE,00465134,word,3C070001 -patch=1,EE,007B5C58,word,02058290 -patch=1,EE,007B5C60,word,02058290 \ No newline at end of file +patch=1,EE,0046512C,word,3C060050 +patch=1,EE,00465134,word,3C070001 \ No newline at end of file diff --git a/patches/SLES-55380_8C913264.pnach b/patches/SLES-55380_8C913264.pnach index 49fe7418..a4a1cdd7 100644 --- a/patches/SLES-55380_8C913264.pnach +++ b/patches/SLES-55380_8C913264.pnach @@ -3,21 +3,22 @@ gametitle=Sonic Unleashed (PAL-M5) (SLES-55380) 8C913264 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,00872D50,word,3FD21DA8 //3F9D9643 -patch=1,EE,00ED1AD8,word,00000000 //42600000 fmv -patch=1,EE,00ED1AE8,word,43E00000 //43C40000 +patch=1,EE,E0020002,extended,00780A7C //avoid crashes +patch=1,EE,20ED1AD8,extended,00000000 //42600000 fmv +patch=1,EE,20ED1AE8,extended,43E00000 //43C40000 -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0087C3B4,word,00000032 //00000019 -patch=1,EE,00870A2C,word,3F99999A //3F800000 +patch=1,EE,00870A2C,word,3F99999A //4019999A -[60 FPS] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode at 60 fps +description=SDTV 480p mode at start. patch=1,EE,00671CFC,word,3C050000 -patch=1,EE,00671D04,word,3C060052 -patch=1,EE,00671D0C,word,3C070001 -patch=1,EE,00671FCC,word,3C090010 +patch=1,EE,00671D04,word,3C060050 +patch=1,EE,00671D0C,word,3C070001 \ No newline at end of file diff --git a/patches/SLES-55383_E8499662.pnach b/patches/SLES-55383_E8499662.pnach index 3f30ffe6..fe09314c 100644 --- a/patches/SLES-55383_E8499662.pnach +++ b/patches/SLES-55383_E8499662.pnach @@ -2,7 +2,7 @@ gametitle=Warriors Orochi 2 (PAL-Fr) (SLES-553.83) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht, ported to PAL-French by Z_Boy +author=ElHecht, ported to PAL-French by Z_Boy // 16:9 patch=1,EE,001ad8f8,word,3c023f19 // 3c023f4c hor fov 1-player diff --git a/patches/SLES-55384_DB5AEC24.pnach b/patches/SLES-55384_DB5AEC24.pnach index a27eaed4..3e334c11 100644 --- a/patches/SLES-55384_DB5AEC24.pnach +++ b/patches/SLES-55384_DB5AEC24.pnach @@ -2,7 +2,7 @@ gametitle=Warriors Orochi 2 (PAL-G) (SLES-55384) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001ad8f8,word,3c023f19 // 3c023f4c hor fov 1-player diff --git a/patches/SLES-55398_8ED1E558.pnach b/patches/SLES-55398_8ED1E558.pnach index b7aeacc4..c5e18320 100644 --- a/patches/SLES-55398_8ED1E558.pnach +++ b/patches/SLES-55398_8ED1E558.pnach @@ -2,7 +2,7 @@ gametitle=Disney High School Musical 3 - Senior Year Dance! (E)(SLES-55398) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-55402_CABE6FFD.pnach b/patches/SLES-55402_CABE6FFD.pnach new file mode 100644 index 00000000..2234a7c0 --- /dev/null +++ b/patches/SLES-55402_CABE6FFD.pnach @@ -0,0 +1,8 @@ +gametitle=Spongebob SquarePants Featuring Nicktoons - Globs of Doom (PAL-A) + +[Widescreen 16:9] +gsaspectratio=16:9 +author=CRASHARKI +description=Run the game at 16:9 Widescreen Aspect Ratio from the start. +patch=1,EE,204140B4,extended,3FB60B60 //3F888888 +patch=1,EE,204B4A84,extended,00000001 //00000000 \ No newline at end of file diff --git a/patches/SLES-55406_2EB6FAFD.pnach b/patches/SLES-55406_2EB6FAFD.pnach index 05e0213f..ec9ac2f1 100644 --- a/patches/SLES-55406_2EB6FAFD.pnach +++ b/patches/SLES-55406_2EB6FAFD.pnach @@ -2,7 +2,7 @@ gametitle= Pro Evolution Soccer 2009 PAL Spain (SLES_554.06) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by El_Patas +author=El_Patas //Gameplay patch=1,EE,003AA080,word,3FAAAAAB //3F800000 (increases hor. axis) diff --git a/patches/SLES-55409_CBE8F793.pnach b/patches/SLES-55409_CBE8F793.pnach index bf529336..68275100 100644 --- a/patches/SLES-55409_CBE8F793.pnach +++ b/patches/SLES-55409_CBE8F793.pnach @@ -2,7 +2,7 @@ gametitle=TT Superbikes: Legends [PAL-M5] (SLES_554.09) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas // Gameplay 16:9 patch=1,EE,20583458,extended,3F400000 //3F800000 (Increases hor. axis) diff --git a/patches/SLES-55429_841CF939.pnach b/patches/SLES-55429_841CF939.pnach index 990abca6..e3bafc82 100644 --- a/patches/SLES-55429_841CF939.pnach +++ b/patches/SLES-55429_841CF939.pnach @@ -3,10 +3,10 @@ gametitle=Disney Bolt (PAL-M3) SLES-55429 841CF939 [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,0068C3EC,word,3FE38E39 //3FAAAAAB (Increases hor. axis) [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,007E65EC,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-55430_F77BF348.pnach b/patches/SLES-55430_F77BF348.pnach index 419b4bd0..7be89819 100644 --- a/patches/SLES-55430_F77BF348.pnach +++ b/patches/SLES-55430_F77BF348.pnach @@ -3,10 +3,10 @@ gametitle=Disney Bolt (PAL-M3) SLES-55430 F77BF348 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,0068C27C,word,3FE38E39 //3FAAAAAB [50/60 FPS] author=PeterDelta -comment=Unlocked at 50/60 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,007E886C,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLES-55440_08029382.pnach b/patches/SLES-55440_08029382.pnach index 2e668480..2764b3c2 100644 --- a/patches/SLES-55440_08029382.pnach +++ b/patches/SLES-55440_08029382.pnach @@ -2,7 +2,7 @@ gametitle=Ben 10: Alien Force [PAL-M5] (SLES_554.40) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,002A2428,word,3C013F1C //3C013F00 Zoom diff --git a/patches/SLES-55443_44194750.pnach b/patches/SLES-55443_44194750.pnach index 6fd4bee6..74ab17b9 100644 --- a/patches/SLES-55443_44194750.pnach +++ b/patches/SLES-55443_44194750.pnach @@ -2,7 +2,7 @@ gametitle=Mana Khemia - Alchemists of Al-Revis (PAL-E) (SLES-55443) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by nemesis2000 +author=nemesis2000 // ported to PAL (elhecht) //3D scenes patch=1,EE,0046d834,word,3c013f40 //hor value diff --git a/patches/SLES-55444_CE2C1DBF.pnach b/patches/SLES-55444_CE2C1DBF.pnach index 1c957a26..ff79c93d 100644 --- a/patches/SLES-55444_CE2C1DBF.pnach +++ b/patches/SLES-55444_CE2C1DBF.pnach @@ -2,7 +2,7 @@ gametitle=Ar tonelico II - Melody of Metafalica (E)(SLES-55444) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (PAL by Arapapa) +author=nemesis2000 (PAL by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLES-55470_4F82849C.pnach b/patches/SLES-55470_4F82849C.pnach index 30e16bdf..fe2b341a 100644 --- a/patches/SLES-55470_4F82849C.pnach +++ b/patches/SLES-55470_4F82849C.pnach @@ -1,20 +1,30 @@ -gametitle=Coraline [PAL] (SLES_554.70) +gametitle=Coraline [PAL] (SLES_554.70) 4F82849C [Widescreen 16:9] gsaspectratio=16:9 author=El_Patas -comment=Widescreen hack +description=Renders the game in 16:9 aspect ratio //Gameplay 16:9 patch=1,EE,0026432C,word,3C014440 //3C014480 (Increases horiz. axis) //Render fix patch=1,EE,001A6548,word,3C013C2E //3C013C0E -//Get rid of black bar +[Remove Blackbars] +author=El_Patas +description=Removes black bars in cutscenes patch=1,EE,00225ea8,word,3c014000 //3c014299 patch=1,EE,00225eac,word,00000000 //3421999a -[50 FPS] +[50/60 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,001002EC,word,00000000 //46000834 + +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,001002EC,word,00000000 //46000834 \ No newline at end of file +description=SDTV 480p mode at start. +patch=1,EE,003F2B34,word,24110000 +patch=1,EE,003F2B38,word,24120050 +patch=1,EE,003F2B44,word,24130001 \ No newline at end of file diff --git a/patches/SLES-55486_084CC895.pnach b/patches/SLES-55486_084CC895.pnach index 18670064..308dbe4a 100644 --- a/patches/SLES-55486_084CC895.pnach +++ b/patches/SLES-55486_084CC895.pnach @@ -3,10 +3,18 @@ gametitle=DreamWorks Monsters vs. Aliens (PAL-M) SLES-55486 084CC895 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,00179ED0,word,3C023FAB //3C023F80 -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,0023391C,word,28420001 //28420002 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,0023391C,word,28420001 //28420002 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,001008B4,word,24110000 +patch=1,EE,001008B8,word,24120050 +patch=1,EE,001008C4,word,24130001 \ No newline at end of file diff --git a/patches/SLES-55487_61E4C8E7.pnach b/patches/SLES-55487_61E4C8E7.pnach new file mode 100644 index 00000000..2e33d7a2 --- /dev/null +++ b/patches/SLES-55487_61E4C8E7.pnach @@ -0,0 +1,14 @@ +gametitle=Ice Age 3 - Dawn of the Dinosaurs (PAL-M) SLES-55487 61E4C8E7 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Enable native widescreen +patch=1,EE,00582828,word,00000100 + +[50 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,00582380,extended,00000019 +patch=1,EE,E0010000,extended,00592EF0 +patch=1,EE,00582380,extended,00000032 \ No newline at end of file diff --git a/patches/SLES-55492_CAC50E8E.pnach b/patches/SLES-55492_CAC50E8E.pnach index a556cdbd..aeb6f0b6 100644 --- a/patches/SLES-55492_CAC50E8E.pnach +++ b/patches/SLES-55492_CAC50E8E.pnach @@ -2,7 +2,7 @@ gametitle=SBK-09 - Superbike World Championship (PAL-M5) (SLES-55492) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0013d448,word,4482e000 // 44820000 diff --git a/patches/SLES-55499_AB761209.pnach b/patches/SLES-55499_AB761209.pnach index c025f17b..af576f0c 100644 --- a/patches/SLES-55499_AB761209.pnach +++ b/patches/SLES-55499_AB761209.pnach @@ -1,8 +1,16 @@ -gametitle=Disney G-Force [PAL-M] SLES-55499 AB761209 +gametitle=Disney G-Force (PAL-M) SLES-55499 AB761209 -[50 FPS] +[50/60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,004B5A88,extended,00000032 patch=1,EE,E0010001,extended,004D5F94 -patch=1,EE,204B5A88,extended,00000019 \ No newline at end of file +patch=1,EE,204B5A88,extended,00000019 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,003A28F4,word,24110000 +patch=1,EE,003A28F8,word,24120050 +patch=1,EE,003A2904,word,24130001 \ No newline at end of file diff --git a/patches/SLES-55502_09BF522A.pnach b/patches/SLES-55502_09BF522A.pnach index d1371762..fea5c66a 100644 --- a/patches/SLES-55502_09BF522A.pnach +++ b/patches/SLES-55502_09BF522A.pnach @@ -2,7 +2,7 @@ gametitle=Disney G-Force (PAL-R) SLES-55502 09BF522A [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,004B5900,extended,00000032 patch=1,EE,E0010001,extended,004D5E14 patch=1,EE,204B5900,extended,00000019 \ No newline at end of file diff --git a/patches/SLES-55511_A51F0FED.pnach b/patches/SLES-55511_A51F0FED.pnach index 733d7f3e..e19cb1c3 100644 --- a/patches/SLES-55511_A51F0FED.pnach +++ b/patches/SLES-55511_A51F0FED.pnach @@ -2,7 +2,7 @@ gametitle=MTV Pimp My Ride - Street Racing (E)(SLES-55511) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-55529_6D666080.pnach b/patches/SLES-55529_6D666080.pnach index 7bde8c19..ffb57ef4 100644 --- a/patches/SLES-55529_6D666080.pnach +++ b/patches/SLES-55529_6D666080.pnach @@ -2,7 +2,7 @@ gametitle=Germany's Next Topmodel (PAL)(SLES-55529) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-55532_3AAD52A4.pnach b/patches/SLES-55532_3AAD52A4.pnach index 6a689aef..948e9239 100644 --- a/patches/SLES-55532_3AAD52A4.pnach +++ b/patches/SLES-55532_3AAD52A4.pnach @@ -2,7 +2,7 @@ gametitle=Aliens in the Attic (E)(SLES-55532) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLES-55536_E4278493.pnach b/patches/SLES-55536_E4278493.pnach index e5b7b58f..19591eac 100644 --- a/patches/SLES-55536_E4278493.pnach +++ b/patches/SLES-55536_E4278493.pnach @@ -1,4 +1,4 @@ -gametitle=Cars Race-O-Rama (PAL-M5)(SLES_555.36) +gametitle=Disney/Pixar Cars - Race-O-Rama PAL-M SLES-55536 E4278493 [Widescreen 16:9] gsaspectratio=16:9 @@ -16,3 +16,10 @@ patch=1,EE,00313354,word,3c013f40 patch=1,EE,00313358,word,4481f000 patch=1,EE,0031335c,word,461e18c3 patch=1,EE,00313360,word,08051d51 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,201A07D4,extended,0060102D //0060202D +patch=1,EE,E0010001,extended,003FCD38 +patch=1,EE,201A07D4,extended,0060202D \ No newline at end of file diff --git a/patches/SLES-55537_724B94F6.pnach b/patches/SLES-55537_724B94F6.pnach index dd935c8b..1332d1b5 100644 --- a/patches/SLES-55537_724B94F6.pnach +++ b/patches/SLES-55537_724B94F6.pnach @@ -2,7 +2,7 @@ gametitle=G.I. Joe - The Rise of Cobra (E)(SLES-55537) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-55545_1913A2BA.pnach b/patches/SLES-55545_1913A2BA.pnach index 8b0663d6..6476197d 100644 --- a/patches/SLES-55545_1913A2BA.pnach +++ b/patches/SLES-55545_1913A2BA.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown vs. Raw 2010 (PAL-M5) (SLES-55545) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 +author=nemesis2000 // Ported to PAL, added 16:10 support (ElHecht) // 16:9 diff --git a/patches/SLES-55569_492CB73E.pnach b/patches/SLES-55569_492CB73E.pnach index fde269f2..bacbdd11 100644 --- a/patches/SLES-55569_492CB73E.pnach +++ b/patches/SLES-55569_492CB73E.pnach @@ -2,7 +2,7 @@ gametitle=Silent Hill: Shattered Memories (SLES-55569) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //widescreen fix patch=1,EE,002c470c,word,3c013faa diff --git a/patches/SLES-55572_6E1AC5C9.pnach b/patches/SLES-55572_6E1AC5C9.pnach index a9bb9018..34cf525b 100644 --- a/patches/SLES-55572_6E1AC5C9.pnach +++ b/patches/SLES-55572_6E1AC5C9.pnach @@ -2,7 +2,7 @@ gametitle=Marvel Super Hero Squad [PAL-M6] (SLES_555.72) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Inside Battle mode in the Versus Battle causes a zoom, and in Squad Battle causes an Y-FOV. diff --git a/patches/SLES-55574_58FCA3F8.pnach b/patches/SLES-55574_58FCA3F8.pnach new file mode 100644 index 00000000..b088b861 --- /dev/null +++ b/patches/SLES-55574_58FCA3F8.pnach @@ -0,0 +1,14 @@ +gametitle=The Lord of the Rings - Aragorn's Quest PAL-M SLES-55574 58FCA3F8 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,002D66B8,word,00000001 //00000002 +patch=1,EE,002B6AC4,word,00000032 //00000019 + +[NTSC Mode/60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,001ED700,word,1040000B //1440000B +patch=1,EE,002D66B8,word,00000001 //00000002 +patch=1,EE,002B6AC4,word,0000003C //00000019 \ No newline at end of file diff --git a/patches/SLES-55587_D0F72D6F.pnach b/patches/SLES-55587_D0F72D6F.pnach index 9023111d..1b026655 100644 --- a/patches/SLES-55587_D0F72D6F.pnach +++ b/patches/SLES-55587_D0F72D6F.pnach @@ -2,7 +2,7 @@ gametitle=Pro Evolution Soccer 2010 [PAL-M5] (SLES_555.87) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,003BB6B0,word,3FAAAAAB //3F800000 (Increases hor. axis) diff --git a/patches/SLES-55589_9E0FC9A1.pnach b/patches/SLES-55589_9E0FC9A1.pnach index b0eed3e5..4599ea98 100644 --- a/patches/SLES-55589_9E0FC9A1.pnach +++ b/patches/SLES-55589_9E0FC9A1.pnach @@ -2,7 +2,7 @@ gametitle= Pro Evolution Soccer 2010 PAL Spain (SLES_555.89) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by El_Patas +author=El_Patas //Gameplay patch=1,EE,003BB6B0,word,3FAAAAAB //3F800000 (increases hor. axis) diff --git a/patches/SLES-55592_35C84D80.pnach b/patches/SLES-55592_35C84D80.pnach index b6768087..8ae983c9 100644 --- a/patches/SLES-55592_35C84D80.pnach +++ b/patches/SLES-55592_35C84D80.pnach @@ -6,9 +6,17 @@ author=El_Patas comment=Renders the game in 16:9 aspect ratio patch=1,EE,2073DD54,extended,3FE38E38 //3FAAAAAB (Increases hor. axis) -[50 FPS] -author=asasega and PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +[50/60 FPS] +author=asasega & PeterDelta +description=Might need EE Overclock at 130%. patch=1,EE,201002F4,extended,10000011 patch=1,EE,E0010001,extended,004D114C -patch=1,EE,201002F4,extended,45000011 \ No newline at end of file +patch=1,EE,201002F4,extended,45000011 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,00434FD4,word,3C050000 +patch=1,EE,00434FDC,word,3C060050 +patch=1,EE,00434FE4,word,3C070001 \ No newline at end of file diff --git a/patches/SLES-55597_7DEB9F03.pnach b/patches/SLES-55597_7DEB9F03.pnach new file mode 100644 index 00000000..01fd1ade --- /dev/null +++ b/patches/SLES-55597_7DEB9F03.pnach @@ -0,0 +1,6 @@ +gametitle=Hugo - Magic in the Trollwoods PAL-M SLES-55597 7DEB9F03 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00298718,word,28420001 //28420002 \ No newline at end of file diff --git a/patches/SLES-55598_FFA75E86.pnach b/patches/SLES-55598_FFA75E86.pnach new file mode 100644 index 00000000..ed846751 --- /dev/null +++ b/patches/SLES-55598_FFA75E86.pnach @@ -0,0 +1,6 @@ +gametitle=Hugo - Magic in the Trollwoods PAL-M SLES-55598 FFA75E86 + +[50 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00298708,word,28420001 //28420002 \ No newline at end of file diff --git a/patches/SLES-55610_41ACBA03.pnach b/patches/SLES-55610_41ACBA03.pnach index cda46c1c..da7a3ac7 100644 --- a/patches/SLES-55610_41ACBA03.pnach +++ b/patches/SLES-55610_41ACBA03.pnach @@ -2,7 +2,7 @@ gametitle=Springdale (E)(SLES-55610) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLES-55622_EA6A9029.pnach b/patches/SLES-55622_EA6A9029.pnach index b0eae092..e5e8c9c3 100644 --- a/patches/SLES-55622_EA6A9029.pnach +++ b/patches/SLES-55622_EA6A9029.pnach @@ -1,18 +1,18 @@ -gametitle=Disney-Pixar Toy Story 3 (E)(SLES-55622) +gametitle=Disney-Pixar Toy Story 3 (PAL-M) (SLES-55622) EA6A9029 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Zoom fix (Internal Widescreen) //aa3f033c 0040023c 713d6334 patch=1,EE,004f6ee8,word,3c033f80 patch=1,EE,004f6ef0,word,34630000 -[Mode 480p] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode 480p at startup +description=SDTV 480p mode at start. patch=1,EE,005346A4,word,24110000 patch=1,EE,005346A8,word,24120050 -patch=1,EE,005346B4,word,24130001 -patch=1,EE,008051CC,word,000001E0 \ No newline at end of file +patch=1,EE,005346B4,word,24130001 \ No newline at end of file diff --git a/patches/SLES-55625_5ED15549.pnach b/patches/SLES-55625_5ED15549.pnach index aba0adb3..bedb8eef 100644 --- a/patches/SLES-55625_5ED15549.pnach +++ b/patches/SLES-55625_5ED15549.pnach @@ -1,16 +1,18 @@ -gametitle=Despicable Me - The Game (E)(SLES-55625) 5ED15549 +gametitle=Despicable Me - The Game (PAL-M) (SLES-55625) 5ED15549 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,00119874,word,00000000 //46140034 patch=1,EE,001198bc,word,3c014235 //3c014265 patch=1,EE,001198c0,word,3421e327 //34212ee1 -[Mode 480p] +[NTSC Mode] author=PeterDelta -comment=Forces progressive scan mode 480p at startup -patch=1,EE,004006E4,word,3C050000 -patch=1,EE,004006EC,word,3C060050 -patch=1,EE,004006F4,word,3C070001 \ No newline at end of file +description=NTSC mode on startup at 60 FPS. +patch=1,EE,0023556C,extended,00000000 +patch=1,EE,00237504,extended,00000000 +patch=1,EE,E0010001,extended,005FC0B4 +patch=1,EE,00237504,extended,00000001 +patch=1,EE,0012FBE4,extended,2402003C \ No newline at end of file diff --git a/patches/SLES-55635_C7201C26.pnach b/patches/SLES-55635_C7201C26.pnach index 7637bfe6..4bcde3ba 100644 --- a/patches/SLES-55635_C7201C26.pnach +++ b/patches/SLES-55635_C7201C26.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown vs. Raw 2011 (PAL-M5) (SLES-55635) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 +author=nemesis2000 // Ported to PAL, added 16:10 support (ElHecht) // 16:9 diff --git a/patches/SLES-55636_F937AEF0.pnach b/patches/SLES-55636_F937AEF0.pnach index e7a55927..3283e0f3 100644 --- a/patches/SLES-55636_F937AEF0.pnach +++ b/patches/SLES-55636_F937AEF0.pnach @@ -2,7 +2,7 @@ gametitle=Pro Evolution Soccer 2011 [PAL-M5] (SLES_556.36) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,003CE010,word,3FAAAAAB //3F800000 (Increases hor. axis) diff --git a/patches/SLES-55638_DB2A922D.pnach b/patches/SLES-55638_DB2A922D.pnach index 225c0091..c403ae64 100644 --- a/patches/SLES-55638_DB2A922D.pnach +++ b/patches/SLES-55638_DB2A922D.pnach @@ -2,7 +2,7 @@ gametitle= Pro Evolution Soccer 2011 PAL Spain (SLES_556.38) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by El_Patas +author=El_Patas //Gameplay patch=1,EE,003CE010,word,3FAAAAAB //3F800000 (increases hor. axis) diff --git a/patches/SLES-55639_F4299325.pnach b/patches/SLES-55639_F4299325.pnach new file mode 100644 index 00000000..1ba63453 --- /dev/null +++ b/patches/SLES-55639_F4299325.pnach @@ -0,0 +1,21 @@ +gametitle=Ben 10 - Ultimate Alien - Cosmic Destruction (PAL-M) SLES-55639 F4299325 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00765154,word,3FE38E39 //3FAAAAAB + +[50/60 FPS] +author=asasega & PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,E0010000,extended,004F8140 +patch=1,EE,201002F4,extended,10000011 + +[480p Mode] +gsinterlacemode=1 +author=PeterDelta +description=SDTV 480p mode at start. +patch=1,EE,0045A394,word,3C050000 +patch=1,EE,0045A39C,word,3C060050 +patch=1,EE,0045A3A4,word,3C070001 \ No newline at end of file diff --git a/patches/SLES-55648_2FDB2FF3.pnach b/patches/SLES-55648_2FDB2FF3.pnach index 50c16ee8..9a57bcb7 100644 --- a/patches/SLES-55648_2FDB2FF3.pnach +++ b/patches/SLES-55648_2FDB2FF3.pnach @@ -2,7 +2,7 @@ gametitle=WWE All-Stars (PAL-M5) (SLES-55648) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002d94c4,word,3c1b3faa // 00000000 hor fov diff --git a/patches/SLES-55656_E68BBB09.pnach b/patches/SLES-55656_E68BBB09.pnach index 7b452bdd..fa5cd6af 100644 --- a/patches/SLES-55656_E68BBB09.pnach +++ b/patches/SLES-55656_E68BBB09.pnach @@ -2,7 +2,7 @@ gametitle=Pro Evolution Soccer 2012 [PAL-M5] (SLES_556.56) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,003CED10,word,3FAAAAAB //3F800000 (Increases hor. axis) diff --git a/patches/SLES-55658_C49AD6F8.pnach b/patches/SLES-55658_C49AD6F8.pnach index 3ef72820..b7cad551 100644 --- a/patches/SLES-55658_C49AD6F8.pnach +++ b/patches/SLES-55658_C49AD6F8.pnach @@ -2,7 +2,7 @@ gametitle= Pro Evolution Soccer 2012 PAL Spain (SLES_556.58) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by El_Patas +author=El_Patas //Gameplay patch=1,EE,003CEC90,word,3FAAAAAB //3F800000 (increases hor. axis) diff --git a/patches/SLES-55666_30D78E9F.pnach b/patches/SLES-55666_30D78E9F.pnach index f5493222..c9ceb033 100644 --- a/patches/SLES-55666_30D78E9F.pnach +++ b/patches/SLES-55666_30D78E9F.pnach @@ -2,7 +2,7 @@ gametitle=Pro Evolution Soccer 2013 [PAL-M5] (SLES_556.66) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay patch=1,EE,003CED80,word,3FAAAAAB //3F800000 (Increases hor. axis) diff --git a/patches/SLES-55669_39C58126.pnach b/patches/SLES-55669_39C58126.pnach index 96d81cfe..cb2b5937 100644 --- a/patches/SLES-55669_39C58126.pnach +++ b/patches/SLES-55669_39C58126.pnach @@ -2,7 +2,7 @@ gametitle= Pro Evolution Soccer 2013 PAL Spain (SLES_556.69) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by El_Patas +author=El_Patas //Gameplay patch=1,EE,003CED80,word,3FAAAAAB //3F800000 (increases hor. axis) diff --git a/patches/SLES-82005_24C43406.pnach b/patches/SLES-82005_24C43406.pnach index 849553a4..bb49a802 100644 --- a/patches/SLES-82005_24C43406.pnach +++ b/patches/SLES-82005_24C43406.pnach @@ -2,7 +2,7 @@ gametitle=Summoner (PAL-G) (SLES-82005) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,00136728,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLES-82010_237251D8.pnach b/patches/SLES-82010_237251D8.pnach index 1170aedc..8faca7c6 100644 --- a/patches/SLES-82010_237251D8.pnach +++ b/patches/SLES-82010_237251D8.pnach @@ -2,7 +2,7 @@ gametitle=The Document of Metal Gear Solid 2 (SLES_820.10) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Esppiral +author=Esppiral //3D Model view fix patch=1,EE,0011F718,word,3c013f40 //3c013f80 diff --git a/patches/SLES-82011_6D9F918C.pnach b/patches/SLES-82011_6D9F918C.pnach index 7690c2b6..aa853761 100644 --- a/patches/SLES-82011_6D9F918C.pnach +++ b/patches/SLES-82011_6D9F918C.pnach @@ -2,7 +2,7 @@ gametitle=Devil May Cry 2 (Disc 1) (Dante Disc) / / Devil May Cry 2 (Disc 2) (L [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,003181E8,word,00000000 diff --git a/patches/SLES-82018_7DE48360.pnach b/patches/SLES-82018_7DE48360.pnach index 19edb674..62eb2e7e 100644 --- a/patches/SLES-82018_7DE48360.pnach +++ b/patches/SLES-82018_7DE48360.pnach @@ -2,7 +2,7 @@ gametitle=Cy Girls [Disc 1] (PAL-E-F-S) SLES_820.18 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by dieSkaarj. +author=dieSkaarj. patch=1,EE,2048f5f8,extended,3f400000 //3f800000 diff --git a/patches/SLES-82024_79ED26AD.pnach b/patches/SLES-82024_79ED26AD.pnach index 498eb1e3..24663706 100644 --- a/patches/SLES-82024_79ED26AD.pnach +++ b/patches/SLES-82024_79ED26AD.pnach @@ -3,12 +3,88 @@ gametitle=Metal Gear Solid 3 - Snake Eater (PAL-I) SLES-82024 79ED26AD [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,00203FAC,word,3F400000 //3F800000 +patch=1,EE,E00367C8,extended,004B6640 +patch=1,EE,204B6638,extended,3FB00000 +patch=1,EE,204B663C,extended,3F2F7CEE +patch=1,EE,204B6644,extended,BFB00000 +patch=1,EE,E00367C8,extended,004D3570 +patch=1,EE,204D3568,extended,3FB00000 +patch=1,EE,204D356C,extended,3F2F7CEE +patch=1,EE,204D3574,extended,BFB00000 +patch=1,EE,E00367C8,extended,004A0408 +patch=1,EE,204A0400,extended,3FB00000 +patch=1,EE,204A0404,extended,3F2F7CEE +patch=1,EE,204A040C,extended,BFB00000 +patch=1,EE,E00367C8,extended,004A3AB8 +patch=1,EE,204A3AB0,extended,3FB00000 +patch=1,EE,204A3AB4,extended,3F2F7CEE +patch=1,EE,204A3ABC,extended,BFB00000 +patch=1,EE,E00367C8,extended,0048B0C0 +patch=1,EE,2048B0B8,extended,3FB00000 +patch=1,EE,2048B0BC,extended,3F2F7CEE +patch=1,EE,2048B0C4,extended,BFB00000 +patch=1,EE,E00367C8,extended,0056A850 +patch=1,EE,2056A848,extended,3FB00000 +patch=1,EE,2056A84C,extended,3F2F7CEE +patch=1,EE,2056A854,extended,BFB00000 +patch=1,EE,E00367C8,extended,0057AD60 +patch=1,EE,2057AD58,extended,3FB00000 +patch=1,EE,2057AD5C,extended,3F2F7CEE +patch=1,EE,2057AD64,extended,BFB00000 +patch=1,EE,E00367C8,extended,00583800 +patch=1,EE,205837F8,extended,3FB00000 +patch=1,EE,205837FC,extended,3F2F7CEE +patch=1,EE,20583804,extended,BFB00000 +patch=1,EE,E00367C8,extended,005419F8 +patch=1,EE,205419F0,extended,3FB00000 +patch=1,EE,205419F4,extended,3F2F7CEE +patch=1,EE,205419FC,extended,BFB00000 +patch=1,EE,E00367C8,extended,004877D8 +patch=1,EE,204877D0,extended,3FB00000 +patch=1,EE,204877D4,extended,3F2F7CEE +patch=1,EE,204877DC,extended,BFB00000 +patch=1,EE,E00367C8,extended,004A0BF0 +patch=1,EE,204A0BE8,extended,3FB00000 +patch=1,EE,204A0BEC,extended,3F2F7CEE +patch=1,EE,204A0BF4,extended,BFB00000 +patch=1,EE,E00367C8,extended,0049FD88 +patch=1,EE,2049FD80,extended,3FB00000 +patch=1,EE,2049FD84,extended,3F2F7CEE +patch=1,EE,2049FD8C,extended,BFB00000 +patch=1,EE,E00367C8,extended,0048AD38 +patch=1,EE,2048AD30,extended,3FB00000 +patch=1,EE,2048AD34,extended,3F2F7CEE +patch=1,EE,2048AD3C,extended,BFB00000 +patch=1,EE,E00367C8,extended,0049A7D8 +patch=1,EE,2049A7D0,extended,3FB00000 +patch=1,EE,2049A7D4,extended,3F2F7CEE +patch=1,EE,2049A7DC,extended,BFB00000 +patch=1,EE,E00367C8,extended,004ACDA8 +patch=1,EE,204ACDA0,extended,3FB00000 +patch=1,EE,204ACDA4,extended,3F2F7CEE +patch=1,EE,204ACDAC,extended,BFB00000 +patch=1,EE,E00367C8,extended,0049C198 +patch=1,EE,2049C190,extended,3FB00000 +patch=1,EE,2049C194,extended,3F2F7CEE +patch=1,EE,2049C19C,extended,BFB00000 +patch=1,EE,E00367C8,extended,0048F778 +patch=1,EE,2048F770,extended,3FB00000 +patch=1,EE,2048F774,extended,3F2F7CEE +patch=1,EE,2048F77C,extended,BFB00000 + +[Remove Blackbars] +author=PeterDelta +description=Removes black bars in cutscenes +patch=1,EE,002501DC,extended,00000000 +patch=1,EE,E0010001,extended,0020B0D4 +patch=1,EE,002501DC,extended,00000001 [50 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,001D5E78,word,00000001 //00000002 -patch=1,EE,001D5E7C,word,00000000 //00000001 -patch=1,EE,001D4BA8,word,00000000 //00000040 \ No newline at end of file +description=Might need EE Overclock (130%). +patch=1,EE,001D5E78,extended,00000001 //00000002 +patch=1,EE,001D5E7C,extended,00000000 //00000001 +patch=1,EE,001D4BA8,extended,00000000 //00000040 +patch=1,EE,001D5E8C,extended,00000000 \ No newline at end of file diff --git a/patches/SLES-82026_98D4BC93.pnach b/patches/SLES-82026_98D4BC93.pnach index ae4c5462..a59a0858 100644 --- a/patches/SLES-82026_98D4BC93.pnach +++ b/patches/SLES-82026_98D4BC93.pnach @@ -49,6 +49,10 @@ patch=1,EE,E00367C8,extended,004A0BF0 patch=1,EE,204A0BE8,extended,3FB00000 patch=1,EE,204A0BEC,extended,3F2F7CEE patch=1,EE,204A0BF4,extended,BFB00000 +patch=1,EE,E00367C8,extended,0049FD88 +patch=1,EE,2049FD80,extended,3FB00000 +patch=1,EE,2049FD84,extended,3F2F7CEE +patch=1,EE,2049FD8C,extended,BFB00000 patch=1,EE,E00367C8,extended,0048AD38 patch=1,EE,2048AD30,extended,3FB00000 patch=1,EE,2048AD34,extended,3F2F7CEE @@ -57,6 +61,18 @@ patch=1,EE,E00367C8,extended,0049A7D8 patch=1,EE,2049A7D0,extended,3FB00000 patch=1,EE,2049A7D4,extended,3F2F7CEE patch=1,EE,2049A7DC,extended,BFB00000 +patch=1,EE,E00367C8,extended,004ACDA8 +patch=1,EE,204ACDA0,extended,3FB00000 +patch=1,EE,204ACDA4,extended,3F2F7CEE +patch=1,EE,204ACDAC,extended,BFB00000 +patch=1,EE,E00367C8,extended,0049C198 +patch=1,EE,2049C190,extended,3FB00000 +patch=1,EE,2049C194,extended,3F2F7CEE +patch=1,EE,2049C19C,extended,BFB00000 +patch=1,EE,E00367C8,extended,0048F778 +patch=1,EE,2048F770,extended,3FB00000 +patch=1,EE,2048F774,extended,3F2F7CEE +patch=1,EE,2048F77C,extended,BFB00000 [Remove Blackbars] author=PeterDelta @@ -67,7 +83,8 @@ patch=1,EE,002501DC,extended,00000001 [50 FPS] author=PeterDelta -description=Unlocks internal FPS. Might need EE Overclock at 130%. -patch=1,EE,001D5E78,word,00000001 //00000002 -patch=1,EE,001D5E7C,word,00000000 //00000001 -patch=1,EE,001D4BA8,word,00000000 //00000040 \ No newline at end of file +description=Might need EE Overclock (130%). +patch=1,EE,001D5E78,extended,00000001 //00000002 +patch=1,EE,001D5E7C,extended,00000000 //00000001 +patch=1,EE,001D4BA8,extended,00000000 //00000040 +patch=1,EE,001D5E8C,extended,00000000 \ No newline at end of file diff --git a/patches/SLES-82048_8A5C25A7.pnach b/patches/SLES-82048_8A5C25A7.pnach index c6068dbb..2d2b5d2c 100644 --- a/patches/SLES-82048_8A5C25A7.pnach +++ b/patches/SLES-82048_8A5C25A7.pnach @@ -2,8 +2,8 @@ gametitle=Metal Gear Solid 3: Subsistence [PAL-Spain] (SLES_820.48) (Disc 1 of 3 [Widescreen 16:9] gsaspectratio=16:9 -author=PeterDelta and El_Patas -comment=Renders the game in 16:9 aspect ratio +author=PeterDelta & El_Patas +description=Renders the game in 16:9 aspect ratio patch=1,EE,20205D4C,extended,3F400000 //3F800000 (Increases horiz. axis) patch=1,EE,E00367C8,extended,004CFC50 patch=1,EE,204CFC48,extended,3FB00000 @@ -49,6 +49,10 @@ patch=1,EE,E00367C8,extended,004B9EF8 patch=1,EE,204B9EF0,extended,3FB00000 patch=1,EE,204B9EF4,extended,3F43F7CF patch=1,EE,204B9EFC,extended,BFB00000 +patch=1,EE,E00367C8,extended,004B5980 +patch=1,EE,204B5978,extended,3FB00000 +patch=1,EE,204B597C,extended,3F43F7CF +patch=1,EE,204B5984,extended,BFB00000 patch=1,EE,E00367C8,extended,004A0930 patch=1,EE,204A0928,extended,3FB00000 patch=1,EE,204A092C,extended,3F43F7CF @@ -57,6 +61,18 @@ patch=1,EE,E00367C8,extended,004B04E0 patch=1,EE,204B04D8,extended,3FB00000 patch=1,EE,204B04DC,extended,3F43F7CF patch=1,EE,204B04E4,extended,BFB00000 +patch=1,EE,E00367C8,extended,004C2B20 +patch=1,EE,204C2B18,extended,3FB00000 +patch=1,EE,204C2B1C,extended,3F43F7CF +patch=1,EE,204C2B24,extended,BFB00000 +patch=1,EE,E00367C8,extended,004B1EA0 +patch=1,EE,204B1E98,extended,3FB00000 +patch=1,EE,204B1E9C,extended,3F43F7CF +patch=1,EE,204B1EA4,extended,BFB00000 +patch=1,EE,E00367C8,extended,004A53F0 +patch=1,EE,204A53E8,extended,3FB00000 +patch=1,EE,204A53EC,extended,3F43F7CF +patch=1,EE,204A53F4,extended,BFB00000 [Remove Blackbars] author=PeterDelta @@ -66,8 +82,9 @@ patch=1,EE,E0010001,extended,0020CE74 patch=1,EE,0026139C,extended,00000001 [50 FPS] -author=Snake356 -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +author=Snake356 & PeterDelta +description=Might need EE Overclock (130%). patch=1,EE,001D67B8,extended,00000000 //00000040 patch=1,EE,001D7A78,extended,00000001 //00000002 -patch=1,EE,001D7A7C,extended,00000000 //00000001 \ No newline at end of file +patch=1,EE,001D7A7C,extended,00000000 //00000001 +patch=1,EE,001D7A8C,extended,00000000 \ No newline at end of file diff --git a/patches/SLKA-15002_DD35503C.pnach b/patches/SLKA-15002_DD35503C.pnach index 492da9c4..9764e68d 100644 --- a/patches/SLKA-15002_DD35503C.pnach +++ b/patches/SLKA-15002_DD35503C.pnach @@ -2,7 +2,7 @@ gametitle=Space Raiders (K)(SLKA-15002) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-15006_741A5EA2.pnach b/patches/SLKA-15006_741A5EA2.pnach index ebd72a9e..a3bfbb36 100644 --- a/patches/SLKA-15006_741A5EA2.pnach +++ b/patches/SLKA-15006_741A5EA2.pnach @@ -2,7 +2,7 @@ gametitle=Kinght Rider (K)(SLKA-15006) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ThirteenAG (NTSC-K by Arapapa) +author=ThirteenAG (NTSC-K by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLKA-15009_B8605ABB.pnach b/patches/SLKA-15009_B8605ABB.pnach index d65323af..413e745e 100644 --- a/patches/SLKA-15009_B8605ABB.pnach +++ b/patches/SLKA-15009_B8605ABB.pnach @@ -2,7 +2,7 @@ gametitle=Hudson Selection Vol 4 - Takahashi Meijin no Bouken Jima (K) (SLKA-150 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (713d8a3f efeeee3e 00000045) patch=1,EE,206f1c60,word,3F4F5C29 // 3f8a3d71 diff --git a/patches/SLKA-15016_69B1F432.pnach b/patches/SLKA-15016_69B1F432.pnach index 9249980f..b66548bd 100644 --- a/patches/SLKA-15016_69B1F432.pnach +++ b/patches/SLKA-15016_69B1F432.pnach @@ -2,7 +2,7 @@ gametitle=Harry Potter - Quidditch World Cup (NTSC-K) (SLKA-15016) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 // 00000000 00000000 c3750046 00000000 diff --git a/patches/SLKA-15018_4EBA5BCF.pnach b/patches/SLKA-15018_4EBA5BCF.pnach index f62dff73..b023550c 100644 --- a/patches/SLKA-15018_4EBA5BCF.pnach +++ b/patches/SLKA-15018_4EBA5BCF.pnach @@ -2,7 +2,7 @@ gametitle=Kidou Senshi Gundam - SEED (K)(SLKA-15018) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-15028_BC808780.pnach b/patches/SLKA-15028_BC808780.pnach index e17e0e74..e4445a27 100644 --- a/patches/SLKA-15028_BC808780.pnach +++ b/patches/SLKA-15028_BC808780.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Ultimate Vol.06 - Love Upper Boxing (K)(SLKA-15028) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-15030_9AD6381D.pnach b/patches/SLKA-15030_9AD6381D.pnach index 35e3b9ea..f5d87483 100644 --- a/patches/SLKA-15030_9AD6381D.pnach +++ b/patches/SLKA-15030_9AD6381D.pnach @@ -2,7 +2,7 @@ gametitle=The Block Hyper (K)(SLKA-15030) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-15032_01093275.pnach b/patches/SLKA-15032_01093275.pnach index d520e027..735af488 100644 --- a/patches/SLKA-15032_01093275.pnach +++ b/patches/SLKA-15032_01093275.pnach @@ -2,7 +2,7 @@ gametitle=Gradius V (K)(SLKA-15032) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-15035_8AA8BEA6.pnach b/patches/SLKA-15035_8AA8BEA6.pnach index 22d61489..bda45b92 100644 --- a/patches/SLKA-15035_8AA8BEA6.pnach +++ b/patches/SLKA-15035_8AA8BEA6.pnach @@ -2,7 +2,7 @@ gametitle=Saiyuki Reload - Gunlock (K)(SLKA-15035) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-15041_A745BF1E.pnach b/patches/SLKA-15041_A745BF1E.pnach index a977b7e2..736abe30 100644 --- a/patches/SLKA-15041_A745BF1E.pnach +++ b/patches/SLKA-15041_A745BF1E.pnach @@ -2,7 +2,7 @@ gametitle=The Cat Fight (K)(SLKA-15041 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,0018ffb4,word,3c013f40 //00000000 diff --git a/patches/SLKA-15042_BC0F422C.pnach b/patches/SLKA-15042_BC0F422C.pnach index 539183a2..988d78f9 100644 --- a/patches/SLKA-15042_BC0F422C.pnach +++ b/patches/SLKA-15042_BC0F422C.pnach @@ -2,7 +2,7 @@ gametitle=The Suieitaikai (K)(SLKA-15042) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-15045_5204B254.pnach b/patches/SLKA-15045_5204B254.pnach index ff89e0b4..4c303391 100644 --- a/patches/SLKA-15045_5204B254.pnach +++ b/patches/SLKA-15045_5204B254.pnach @@ -2,7 +2,7 @@ gametitle=The Chanbara (K)(SLKA-15045) [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce (NTSC-K by Arapapa) +author=synce (NTSC-K by Arapapa) patch=1,EE,202B51F4,extended,3F400000 diff --git a/patches/SLKA-15058_B5DB999E.pnach b/patches/SLKA-15058_B5DB999E.pnach index 0b18407c..0583294e 100644 --- a/patches/SLKA-15058_B5DB999E.pnach +++ b/patches/SLKA-15058_B5DB999E.pnach @@ -2,7 +2,7 @@ gametitle=The Chikyuu Boueigun 2 (K)(SLKA-15058) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-20070_2799A4E5.pnach b/patches/SLKA-20070_2799A4E5.pnach index 1f59aef5..727c15e0 100644 --- a/patches/SLKA-20070_2799A4E5.pnach +++ b/patches/SLKA-20070_2799A4E5.pnach @@ -2,7 +2,7 @@ gametitle=Ace Combat Zero: The Belkan War (SLKA-20070) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //widescreen fix //c3150344 d7131044 diff --git a/patches/SLKA-25003_70BFFBBB.pnach b/patches/SLKA-25003_70BFFBBB.pnach index 9601e6db..15f7d1b0 100644 --- a/patches/SLKA-25003_70BFFBBB.pnach +++ b/patches/SLKA-25003_70BFFBBB.pnach @@ -2,7 +2,7 @@ gametitle=Herdy Gerdy (K)(SLKA-25003) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25006_5208AE89.pnach b/patches/SLKA-25006_5208AE89.pnach index 696b9e29..1316f403 100644 --- a/patches/SLKA-25006_5208AE89.pnach +++ b/patches/SLKA-25006_5208AE89.pnach @@ -2,7 +2,7 @@ gametitle=Twin Caliber (K)(SLKA-25006) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLKA-25010_04DD88DB.pnach b/patches/SLKA-25010_04DD88DB.pnach index fd055df0..91f5c664 100644 --- a/patches/SLKA-25010_04DD88DB.pnach +++ b/patches/SLKA-25010_04DD88DB.pnach @@ -2,7 +2,7 @@ gametitle=Shinseiki Evangelion 2 - Evangelions (K)(SLKA-250103) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25010_F9507A7C.pnach b/patches/SLKA-25010_F9507A7C.pnach index b6beeb65..b6a643fb 100644 --- a/patches/SLKA-25010_F9507A7C.pnach +++ b/patches/SLKA-25010_F9507A7C.pnach @@ -2,7 +2,7 @@ gametitle=Chou Battle Houshi (K)(SLKA-25010) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25011_637125B6.pnach b/patches/SLKA-25011_637125B6.pnach index 59f71315..a60e002e 100644 --- a/patches/SLKA-25011_637125B6.pnach +++ b/patches/SLKA-25011_637125B6.pnach @@ -2,7 +2,7 @@ gametitle=Reign of Fire (K)(SLKA-25011) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25015_B3734A96.pnach b/patches/SLKA-25015_B3734A96.pnach index 2c72a7ff..29c4d70f 100644 --- a/patches/SLKA-25015_B3734A96.pnach +++ b/patches/SLKA-25015_B3734A96.pnach @@ -2,7 +2,7 @@ gametitle=Evolution Skateboarding (K)(SLKA-25015) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25020_C01FD223.pnach b/patches/SLKA-25020_C01FD223.pnach index 5037c0a2..dd7651cc 100644 --- a/patches/SLKA-25020_C01FD223.pnach +++ b/patches/SLKA-25020_C01FD223.pnach @@ -2,7 +2,7 @@ gametitle=TimeSplitters 2 (K)(SLKA-25020) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 (NTSC-K by Arapapa) +author=No.47 (NTSC-K by Arapapa) patch=1,EE,20571870,word,3FC71C71 patch=1,EE,20572444,word,3FC71C71 diff --git a/patches/SLKA-25024_80B66618.pnach b/patches/SLKA-25024_80B66618.pnach index 3cfc6b56..91743307 100644 --- a/patches/SLKA-25024_80B66618.pnach +++ b/patches/SLKA-25024_80B66618.pnach @@ -2,7 +2,7 @@ gametitle=Disney's Stitch - Experiment 626 (K)(SLKA-25024) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25026_AD0C84EA.pnach b/patches/SLKA-25026_AD0C84EA.pnach index b2d2c484..9b260124 100644 --- a/patches/SLKA-25026_AD0C84EA.pnach +++ b/patches/SLKA-25026_AD0C84EA.pnach @@ -2,7 +2,7 @@ gametitle=Chaos Legion (K) (SLKA_250.26) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) //Wide 16:9 patch=1,EE,00242a1c,word,3c013f40 diff --git a/patches/SLKA-25027_9C5D24FF.pnach b/patches/SLKA-25027_9C5D24FF.pnach index dcede699..5f1e5e24 100644 --- a/patches/SLKA-25027_9C5D24FF.pnach +++ b/patches/SLKA-25027_9C5D24FF.pnach @@ -2,7 +2,7 @@ description=Renders the game in 16:9 aspect ratio, instead of 4:3. gsaspectratio=16:9 gametitle = NBA Street Vol. 2 (K)(SLKA-25027) -comment = Widescreen Hack by Ko81e24wy (NTSC-K by Arapapa) +author=Ko81e24wy (NTSC-K by Arapapa) // Widescreen 16:9 patch=1,EE,20956EE0,extended,3F400000 diff --git a/patches/SLKA-25028_37FA69D8.pnach b/patches/SLKA-25028_37FA69D8.pnach index f0727581..a31d79b3 100644 --- a/patches/SLKA-25028_37FA69D8.pnach +++ b/patches/SLKA-25028_37FA69D8.pnach @@ -2,7 +2,7 @@ gametitle=Mission Impossible - Operation Surma (K) (SLKA-25028) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by Arapapa +author=Arapapa // 16:9 (0000803f 00000000 00000000 00000000 00000080) patch=1,EE,20657FE0,word,3F400000 // 3F800000 diff --git a/patches/SLKA-25030_43E396A7.pnach b/patches/SLKA-25030_43E396A7.pnach index 975647e8..56fb2f1d 100644 --- a/patches/SLKA-25030_43E396A7.pnach +++ b/patches/SLKA-25030_43E396A7.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown - Shut Your Mouth (K)(SLKA-25030) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLKA-25031_9AB05FF8.pnach b/patches/SLKA-25031_9AB05FF8.pnach index a54b19db..34b71e18 100644 --- a/patches/SLKA-25031_9AB05FF8.pnach +++ b/patches/SLKA-25031_9AB05FF8.pnach @@ -2,7 +2,7 @@ gametitle=Tom Clancy's Ghost Recon (K) (SLKA_250.31) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //sp patch=1,EE,003a8b94,word,3c023f40 diff --git a/patches/SLKA-25032_E5BE5D27.pnach b/patches/SLKA-25032_E5BE5D27.pnach index e80476e9..2b4ac441 100644 --- a/patches/SLKA-25032_E5BE5D27.pnach +++ b/patches/SLKA-25032_E5BE5D27.pnach @@ -2,7 +2,7 @@ gametitle=Enter the Matrix (SLKA_25032) Ver. 2.0 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) //built-in widescreen //d00b74a2 d00b60a2 diff --git a/patches/SLKA-25033_DB0707F3.pnach b/patches/SLKA-25033_DB0707F3.pnach index c6d0b14f..24f69279 100644 --- a/patches/SLKA-25033_DB0707F3.pnach +++ b/patches/SLKA-25033_DB0707F3.pnach @@ -2,7 +2,7 @@ gametitle=Gregory Horror Show - Soul Collector (K)(SLKA-25033) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25034_006C35A7.pnach b/patches/SLKA-25034_006C35A7.pnach index 4d26089e..b4f2589c 100644 --- a/patches/SLKA-25034_006C35A7.pnach +++ b/patches/SLKA-25034_006C35A7.pnach @@ -2,7 +2,7 @@ gametitle=Top Angler - Real Bass Fishing (K)(SLKA-25034) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25035_3F192139.pnach b/patches/SLKA-25035_3F192139.pnach index 5133a8ce..5f158b3f 100644 --- a/patches/SLKA-25035_3F192139.pnach +++ b/patches/SLKA-25035_3F192139.pnach @@ -2,7 +2,7 @@ gametitle=Kidou Senshi Gundam Senki - Lost War Chronicles (K)(SLKA-25035) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25038_A8D433AD.pnach b/patches/SLKA-25038_A8D433AD.pnach index 83b8fca1..13c24ce8 100644 --- a/patches/SLKA-25038_A8D433AD.pnach +++ b/patches/SLKA-25038_A8D433AD.pnach @@ -2,7 +2,7 @@ gametitle=Gun Survivor 4 - Biohazard - Heroes Never Die (K)(SLKA-25038) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant (NTSC-K by Arapapa) +author=Little Giant (NTSC-K by Arapapa) patch=1,EE,00108b74,word,3c013f40 //00000000 hor fov patch=1,EE,00108b78,word,44810000 //00000000 diff --git a/patches/SLKA-25041_DB4EB6A9.pnach b/patches/SLKA-25041_DB4EB6A9.pnach index b00efbb8..4ab20585 100644 --- a/patches/SLKA-25041_DB4EB6A9.pnach +++ b/patches/SLKA-25041_DB4EB6A9.pnach @@ -2,7 +2,7 @@ gametitle=Armored Core - Silent Line (K) (SLKA_250.41) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 (00000000(*) 00000000 43ad1346 00000000(*) 00000000(*)) patch=1,EE,0031e374,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLKA-25042_48397D33.pnach b/patches/SLKA-25042_48397D33.pnach index d85e57c4..d2a4820e 100644 --- a/patches/SLKA-25042_48397D33.pnach +++ b/patches/SLKA-25042_48397D33.pnach @@ -2,7 +2,7 @@ gametitle=Tamamayu Monogatari 2 (K) (SLKA_25042) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by synce (pnach by Arapapa) +author=synce (pnach by Arapapa) //16:9 (0000803f d9eeee3e 00080000) patch=1,EE,21E17B3C,extended,3F400000 // 3f800000 diff --git a/patches/SLKA-25044_7CE9B195.pnach b/patches/SLKA-25044_7CE9B195.pnach index e66b374d..4e86dcec 100644 --- a/patches/SLKA-25044_7CE9B195.pnach +++ b/patches/SLKA-25044_7CE9B195.pnach @@ -2,7 +2,7 @@ gametitle=Robotech - Battlecry (K)(SLKA-25044) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25046_0192F911.pnach b/patches/SLKA-25046_0192F911.pnach index 19c404bc..87a99464 100644 --- a/patches/SLKA-25046_0192F911.pnach +++ b/patches/SLKA-25046_0192F911.pnach @@ -2,7 +2,7 @@ gametitle=Dragon Ball Z (K)(SLKA-25046) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by sergx12 (NTSC-K by Arapapa) +author=sergx12 (NTSC-K by Arapapa) //Gameplay 16:9 diff --git a/patches/SLKA-25047_1B4EBBA4.pnach b/patches/SLKA-25047_1B4EBBA4.pnach index 64dee1b4..a45085f5 100644 --- a/patches/SLKA-25047_1B4EBBA4.pnach +++ b/patches/SLKA-25047_1B4EBBA4.pnach @@ -2,7 +2,7 @@ gametitle=Shin Combat Choro Q (K)(SLKA-25047) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25051_0E6F7A7B.pnach b/patches/SLKA-25051_0E6F7A7B.pnach index 55512787..00eac5e4 100644 --- a/patches/SLKA-25051_0E6F7A7B.pnach +++ b/patches/SLKA-25051_0E6F7A7B.pnach @@ -2,7 +2,7 @@ gametitle=Clock Tower 3 (SLKA_25051) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by nemesis2000 and hyakki (NTSC-K by Arapapa) +author=nemesis2000 and hyakki (NTSC-K by Arapapa) //gameplay by hyakki patch=1,EE,01939da8,word,3f1fbe77 diff --git a/patches/SLKA-25055_81D0BA2B.pnach b/patches/SLKA-25055_81D0BA2B.pnach index 1a869838..ef01e644 100644 --- a/patches/SLKA-25055_81D0BA2B.pnach +++ b/patches/SLKA-25055_81D0BA2B.pnach @@ -2,7 +2,7 @@ gametitle=Hitman 2 - Silent Assassin (SLKA_25055) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 (NTSC-K by Arapapa) +author=No.47 (NTSC-K by Arapapa) //Widescreen hack 16:9 patch=1,EE,215AAA18,word,3FBAAAAA // 3f9692b4 diff --git a/patches/SLKA-25056_828024B7.pnach b/patches/SLKA-25056_828024B7.pnach index 569efee6..dc895b8b 100644 --- a/patches/SLKA-25056_828024B7.pnach +++ b/patches/SLKA-25056_828024B7.pnach @@ -2,7 +2,7 @@ gametitle=Finding Nemo (K)(SLKA-25056) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25059_3CA4D49.pnach b/patches/SLKA-25059_3CA4D49.pnach index b799c2b7..21773360 100644 --- a/patches/SLKA-25059_3CA4D49.pnach +++ b/patches/SLKA-25059_3CA4D49.pnach @@ -2,7 +2,7 @@ gametitle=Pride FC - Fighting Championships (K)(SLKA-25059) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25060_FEDC6572.pnach b/patches/SLKA-25060_FEDC6572.pnach index 0b9a665f..c3f7afc3 100644 --- a/patches/SLKA-25060_FEDC6572.pnach +++ b/patches/SLKA-25060_FEDC6572.pnach @@ -2,7 +2,7 @@ gametitle=I.Q. Remix+ - Intelligent Qube (K)(SLKA-25060) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25061_040421BE.pnach b/patches/SLKA-25061_040421BE.pnach index 313d62b2..487ce11e 100644 --- a/patches/SLKA-25061_040421BE.pnach +++ b/patches/SLKA-25061_040421BE.pnach @@ -2,7 +2,7 @@ gametitle=Tom Clancy's Splinter Cell (NTSC-K)(SLKA-25061) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) //Search values are different than NTSC-U. diff --git a/patches/SLKA-25067_08141F74.pnach b/patches/SLKA-25067_08141F74.pnach index ab3e6bee..4ca1d1ef 100644 --- a/patches/SLKA-25067_08141F74.pnach +++ b/patches/SLKA-25067_08141F74.pnach @@ -2,7 +2,7 @@ gametitle=Unlimited Saga (K) (SLKA-25067) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 battles //00000000 00000000 43ad1346 00000000 00000000 diff --git a/patches/SLKA-25072_91F5D064.pnach b/patches/SLKA-25072_91F5D064.pnach index bd8f68c2..f7e7bec9 100644 --- a/patches/SLKA-25072_91F5D064.pnach +++ b/patches/SLKA-25072_91F5D064.pnach @@ -2,7 +2,7 @@ gametitle=Maximo vs Army of Zin (K) (SLKA-25072) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 (pnach NTSC-K by Arapapa) +author=No.47 (pnach NTSC-K by Arapapa) //16:9 //f628ac3f 00007042 diff --git a/patches/SLKA-25081_3BAAB99F.pnach b/patches/SLKA-25081_3BAAB99F.pnach index f87ac3b5..dc66f28e 100644 --- a/patches/SLKA-25081_3BAAB99F.pnach +++ b/patches/SLKA-25081_3BAAB99F.pnach @@ -2,7 +2,7 @@ gametitle=SD Gundam G Generation Neo (K)(SLKA-25081) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25082_9A93FE5D.pnach b/patches/SLKA-25082_9A93FE5D.pnach index 6e751cf4..f4e6f532 100644 --- a/patches/SLKA-25082_9A93FE5D.pnach +++ b/patches/SLKA-25082_9A93FE5D.pnach @@ -2,7 +2,7 @@ gametitle=Castlevania: Lament of Innocence (K) (SLKA_25082) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach NTSC-K by Arapapa) +author=nemesis2000 (pnach NTSC-K by Arapapa) //gameplay patch=1,EE,006e801c,word,23c013f40 //hor value diff --git a/patches/SLKA-25085_9FDF8B1E.pnach b/patches/SLKA-25085_9FDF8B1E.pnach index 4366911f..7e119364 100644 --- a/patches/SLKA-25085_9FDF8B1E.pnach +++ b/patches/SLKA-25085_9FDF8B1E.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 4: Xtreme Legends (SLKA-25085) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by saltA) +author=nemesis2000 (pnach by saltA) patch=1,EE,0013a220,word,3c0243d6 patch=1,EE,0018f460,word,3c023f2b diff --git a/patches/SLKA-25086_3E26A38A.pnach b/patches/SLKA-25086_3E26A38A.pnach index f48277f2..2805ce89 100644 --- a/patches/SLKA-25086_3E26A38A.pnach +++ b/patches/SLKA-25086_3E26A38A.pnach @@ -2,7 +2,7 @@ gametitle=NBA Live 2004 (K)(SLKA-25086) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLKA-25088_5938CA04.pnach b/patches/SLKA-25088_5938CA04.pnach index b1d7c83f..0a9acef4 100644 --- a/patches/SLKA-25088_5938CA04.pnach +++ b/patches/SLKA-25088_5938CA04.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Tactics 2 (SLKA_250.88) (NTSC-K) [Widescreen 16:9] gsaspectratio=16:9 -comment=widescreen 16:9 hack by 99skull +author=99skull patch=1,EE,00140834,word,3C023F40 //3C023F80, wide diff --git a/patches/SLKA-25090_E2051314.pnach b/patches/SLKA-25090_E2051314.pnach index b7808b84..33218a0c 100644 --- a/patches/SLKA-25090_E2051314.pnach +++ b/patches/SLKA-25090_E2051314.pnach @@ -2,7 +2,7 @@ gametitle=Starsky & Hutch (K)(SLKA-25090) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25091_3750F7C7.pnach b/patches/SLKA-25091_3750F7C7.pnach index bcee9287..72e97294 100644 --- a/patches/SLKA-25091_3750F7C7.pnach +++ b/patches/SLKA-25091_3750F7C7.pnach @@ -2,7 +2,7 @@ gametitle=Hanjuku Hero vs 3D (K)(SLKA-25091) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLKA-25092_316527D2.pnach b/patches/SLKA-25092_316527D2.pnach index d73deb4e..5ea371d6 100644 --- a/patches/SLKA-25092_316527D2.pnach +++ b/patches/SLKA-25092_316527D2.pnach @@ -2,7 +2,7 @@ gametitle=Onimusha Buraiden (K)(SLKA-25092) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by VIRGIN KLM (NTSC-K by Arapapa) +author=VIRGIN KLM (NTSC-K by Arapapa) //Widescreen patch=1,EE,204fc3c0,extended,3F400000 //3F800000 diff --git a/patches/SLKA-25093_DAFFFB0D.pnach b/patches/SLKA-25093_DAFFFB0D.pnach index f6adaaf8..d5d735c2 100644 --- a/patches/SLKA-25093_DAFFFB0D.pnach +++ b/patches/SLKA-25093_DAFFFB0D.pnach @@ -2,7 +2,7 @@ gametitle=Onimusha 3 - Demon Siege (K)(SLKA-25093) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesiss2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLKA-25097_5C4FC84B.pnach b/patches/SLKA-25097_5C4FC84B.pnach index 73c69b35..6189cc4c 100644 --- a/patches/SLKA-25097_5C4FC84B.pnach +++ b/patches/SLKA-25097_5C4FC84B.pnach @@ -2,7 +2,7 @@ gametitle=Tiger Woods PGA Tour 2004 (NTSC-K)(SLKA-25097) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by VIRGIN KLM and Arapapa +author=VIRGIN KLM and Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25099_C4FBEC7B.pnach b/patches/SLKA-25099_C4FBEC7B.pnach index aff45a76..c1f27e10 100644 --- a/patches/SLKA-25099_C4FBEC7B.pnach +++ b/patches/SLKA-25099_C4FBEC7B.pnach @@ -2,7 +2,7 @@ gametitle=The Sims - In The City (NTSC-K)(SLKA-25099) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25100_BFCCF369.pnach b/patches/SLKA-25100_BFCCF369.pnach index f1a28d55..e1b8b450 100644 --- a/patches/SLKA-25100_BFCCF369.pnach +++ b/patches/SLKA-25100_BFCCF369.pnach @@ -2,7 +2,7 @@ gametitle=Breath of Fire: Dragon Quarter (K) (SLKA-25100) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) patch=1,EE,0012dc1c,word,3c024306 //hor val patch=1,EE,0012dc20,word,3442f940 diff --git a/patches/SLKA-25102_E600953D.pnach b/patches/SLKA-25102_E600953D.pnach index a957c95c..469ff233 100644 --- a/patches/SLKA-25102_E600953D.pnach +++ b/patches/SLKA-25102_E600953D.pnach @@ -2,7 +2,7 @@ gametitle=Batman - Rise of Shin Tzu (K)(SLKA-25102) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25105_EB328633.pnach b/patches/SLKA-25105_EB328633.pnach index ee66335b..2e2e3048 100644 --- a/patches/SLKA-25105_EB328633.pnach +++ b/patches/SLKA-25105_EB328633.pnach @@ -2,7 +2,7 @@ gametitle=XIII (K) (SLKA_25105) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) // 16:9 diff --git a/patches/SLKA-25107_6178158D.pnach b/patches/SLKA-25107_6178158D.pnach index 4faa308c..a1a1bf83 100644 --- a/patches/SLKA-25107_6178158D.pnach +++ b/patches/SLKA-25107_6178158D.pnach @@ -2,7 +2,7 @@ gametitle=Crouching Tiger Hidden Dragon (K)(SLKA-25107) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25110_0167915E.pnach b/patches/SLKA-25110_0167915E.pnach index ca5d153a..7c11eece 100644 --- a/patches/SLKA-25110_0167915E.pnach +++ b/patches/SLKA-25110_0167915E.pnach @@ -2,7 +2,7 @@ gametitle=NBA Live 2005 (K)(SLKA-25110) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25116_A70A7299.pnach b/patches/SLKA-25116_A70A7299.pnach index efeba022..e6434ccd 100644 --- a/patches/SLKA-25116_A70A7299.pnach +++ b/patches/SLKA-25116_A70A7299.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown - Here Comes the Pain (K)(SLKA-25116) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLKA-25117_3B8E8F67.pnach b/patches/SLKA-25117_3B8E8F67.pnach index d8fa5747..e4467eb4 100644 --- a/patches/SLKA-25117_3B8E8F67.pnach +++ b/patches/SLKA-25117_3B8E8F67.pnach @@ -2,7 +2,7 @@ gametitle= Winning Eleven 7 - International (NTSC-K) (SLKA_25117) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,010cc58c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLKA-25120_41C47E63.pnach b/patches/SLKA-25120_41C47E63.pnach index e09ef8a2..4db6d45c 100644 --- a/patches/SLKA-25120_41C47E63.pnach +++ b/patches/SLKA-25120_41C47E63.pnach @@ -8,3 +8,7 @@ patch=1,EE,004B536C,word,3C023F10 //3C023F40 patch=1,EE,004B53C4,word,3C02402B //3C024000 +[Remove Blur/Bloom] +author=fobes +description=Removes the post-processing blur/bloom effect +patch=1,EE,004A9D94,word,00000000 diff --git a/patches/SLKA-25121_97A4995B.pnach b/patches/SLKA-25121_97A4995B.pnach index 6bc17a36..c755d012 100644 --- a/patches/SLKA-25121_97A4995B.pnach +++ b/patches/SLKA-25121_97A4995B.pnach @@ -2,7 +2,7 @@ gametitle=Vexx (NTSC-K)(SLKA-25121) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas (NTSC-K by Arapapa) +author=El_Patas (NTSC-K by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLKA-25122_EA39D6EF.pnach b/patches/SLKA-25122_EA39D6EF.pnach index f14321cc..60fe444b 100644 --- a/patches/SLKA-25122_EA39D6EF.pnach +++ b/patches/SLKA-25122_EA39D6EF.pnach @@ -2,7 +2,7 @@ gametitle=Sonic Heroes (NTSC-K)(SLKA-25122) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) //Widescreen hack 16:9 patch=1,EE,00167bcc,word,10000042 //10000041 diff --git a/patches/SLKA-25126_A72F7A17.pnach b/patches/SLKA-25126_A72F7A17.pnach index 853fe758..d4da38c9 100644 --- a/patches/SLKA-25126_A72F7A17.pnach +++ b/patches/SLKA-25126_A72F7A17.pnach @@ -2,7 +2,7 @@ gametitle=Shin Sangoku Musou 3 - Moushouden (K)(SLKA-25126) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLKA-25129_4A5539CF.pnach b/patches/SLKA-25129_4A5539CF.pnach index 96531bcc..612105cf 100644 --- a/patches/SLKA-25129_4A5539CF.pnach +++ b/patches/SLKA-25129_4A5539CF.pnach @@ -2,7 +2,7 @@ gametitle=James Bond 007 - Everything or Nothing (NTSC-K)(SLKA-25129) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) //Widescreen Hack 16:9 patch=1,EE,0041ab2c,word,3faaaaab //3f800000 diff --git a/patches/SLKA-25132_650BE5EC.pnach b/patches/SLKA-25132_650BE5EC.pnach index 4b849ded..6c87fab7 100644 --- a/patches/SLKA-25132_650BE5EC.pnach +++ b/patches/SLKA-25132_650BE5EC.pnach @@ -2,7 +2,7 @@ gametitle=Kidou Senshi Gundam - Meguriai Sora (K)(SLKA-25132) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25133_8A8FC183.pnach b/patches/SLKA-25133_8A8FC183.pnach index b764c36f..1fa054bd 100644 --- a/patches/SLKA-25133_8A8FC183.pnach +++ b/patches/SLKA-25133_8A8FC183.pnach @@ -2,7 +2,7 @@ gametitle=AirForce Delta Strike (NTSC-K)(SLKA-25133) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25135_6BA65DD8.pnach b/patches/SLKA-25135_6BA65DD8.pnach index 153e2f53..7a3c3eb7 100644 --- a/patches/SLKA-25135_6BA65DD8.pnach +++ b/patches/SLKA-25135_6BA65DD8.pnach @@ -2,7 +2,7 @@ gametitle=Kunoichi (K) (SLKA-25135) [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce (pnach NTSC-K by Arapapa) +author=synce (pnach NTSC-K by Arapapa) patch=1,EE,21A3EAC0,extended,3f248b43 diff --git a/patches/SLKA-25136_C5D0EBD2.pnach b/patches/SLKA-25136_C5D0EBD2.pnach index b210dadc..448542e8 100644 --- a/patches/SLKA-25136_C5D0EBD2.pnach +++ b/patches/SLKA-25136_C5D0EBD2.pnach @@ -2,7 +2,7 @@ gametitle=Need for Speed - Underground (K)(SLKA-25136) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-Kby Arapapa) +author=nemesis2000 (NTSC-Kby Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLKA-25137_8D9CBC4B.pnach b/patches/SLKA-25137_8D9CBC4B.pnach index 6beb9fc0..7e07e44d 100644 --- a/patches/SLKA-25137_8D9CBC4B.pnach +++ b/patches/SLKA-25137_8D9CBC4B.pnach @@ -2,7 +2,7 @@ gametitle=The Sims - Bustin' Out (NTSC-K)(SLKA-25137) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25139_68C8FC78.pnach b/patches/SLKA-25139_68C8FC78.pnach index 1d945acd..196e8ffb 100644 --- a/patches/SLKA-25139_68C8FC78.pnach +++ b/patches/SLKA-25139_68C8FC78.pnach @@ -2,7 +2,7 @@ gametitle=Fuuun Shinsengumi [NTSC-K] (SLKA-25139) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //16:9 patch=1,EE,001474c0,word,3c023f40 //3c023f80 diff --git a/patches/SLKA-25140_F27AB8B3.pnach b/patches/SLKA-25140_F27AB8B3.pnach index 1eb05249..9a755c83 100644 --- a/patches/SLKA-25140_F27AB8B3.pnach +++ b/patches/SLKA-25140_F27AB8B3.pnach @@ -2,7 +2,7 @@ gametitle=Medal of Honor - Rising Sun (NTSC-K)(SLKA-25140) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) //Widescreen hack 16:9 patch=1,EE,003a42a0,word,3f100000 //3f400000 diff --git a/patches/SLKA-25142_5961800A.pnach b/patches/SLKA-25142_5961800A.pnach index 68241945..cf81e39c 100644 --- a/patches/SLKA-25142_5961800A.pnach +++ b/patches/SLKA-25142_5961800A.pnach @@ -2,7 +2,7 @@ gametitle=Tak and the Power of Juju (K)(SLKA-25142) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25144_11624CD6.pnach b/patches/SLKA-25144_11624CD6.pnach index 53f53d0f..0025e85d 100644 --- a/patches/SLKA-25144_11624CD6.pnach +++ b/patches/SLKA-25144_11624CD6.pnach @@ -2,7 +2,7 @@ gametitle=Final Fantasy X-2 (NTSC-K) (SLKA_25144) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) //Wide Screen 16:9 (4C3F013C CDCC2134 00b08144) patch=1,EE,001aaab8,word,3c013f19 //3c013f4c diff --git a/patches/SLKA-25148_8F14728A.pnach b/patches/SLKA-25148_8F14728A.pnach index 62309d14..ef094cf5 100644 --- a/patches/SLKA-25148_8F14728A.pnach +++ b/patches/SLKA-25148_8F14728A.pnach @@ -2,7 +2,7 @@ gametitle=MVP Baseball 2004 (K)(SLKA-25148) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,005ba998,word,3c013f40 //3c013f80 diff --git a/patches/SLKA-25149_C54646E9.pnach b/patches/SLKA-25149_C54646E9.pnach index 19941574..b2cf18e3 100644 --- a/patches/SLKA-25149_C54646E9.pnach +++ b/patches/SLKA-25149_C54646E9.pnach @@ -2,9 +2,9 @@ gametitle=Silent Hill 4 - The Room (K) (SLKA_25149) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) comment=FMV hack by Pelvicthrustman -comment=Black borders fix by nemesis2000 +author=nemesis2000 // 16:9 //00000000(*) 03050146 00000000 00000000(*) diff --git a/patches/SLKA-25152_66DADE18.pnach b/patches/SLKA-25152_66DADE18.pnach index 20c51bd1..f653e306 100644 --- a/patches/SLKA-25152_66DADE18.pnach +++ b/patches/SLKA-25152_66DADE18.pnach @@ -2,7 +2,7 @@ gametitle=Hajime no Ippo All-Stars (K)(SLKA-25152) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25156_B7ADE017.pnach b/patches/SLKA-25156_B7ADE017.pnach index 107c05e6..ebf0f0d2 100644 --- a/patches/SLKA-25156_B7ADE017.pnach +++ b/patches/SLKA-25156_B7ADE017.pnach @@ -2,7 +2,7 @@ gametitle=Medal of Honor - Vanguard (K)(SLKA-25156) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) //09 00 60 10 86 A8 00 46 AA 3F 01 3C patch=1,EE,001308b4,word,00000000 diff --git a/patches/SLKA-25159_6BE74384.pnach b/patches/SLKA-25159_6BE74384.pnach index 4cb02bd6..3c651f88 100644 --- a/patches/SLKA-25159_6BE74384.pnach +++ b/patches/SLKA-25159_6BE74384.pnach @@ -2,7 +2,7 @@ gametitle=Astro Boy (K)(SLKA-25159) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25161_6508F464.pnach b/patches/SLKA-25161_6508F464.pnach index ca631bb4..f168725c 100644 --- a/patches/SLKA-25161_6508F464.pnach +++ b/patches/SLKA-25161_6508F464.pnach @@ -2,7 +2,7 @@ gametitle=Aqua Kids (K)(SLKA-25161) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLKA-25166_75326E04.pnach b/patches/SLKA-25166_75326E04.pnach index 1612beb1..9680bee0 100644 --- a/patches/SLKA-25166_75326E04.pnach +++ b/patches/SLKA-25166_75326E04.pnach @@ -2,7 +2,7 @@ gametitle=Sengoku Musou (K)(SLKA-25166) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 diff --git a/patches/SLKA-25170_819DDCF8.pnach b/patches/SLKA-25170_819DDCF8.pnach index 9a25610a..1b6129c2 100644 --- a/patches/SLKA-25170_819DDCF8.pnach +++ b/patches/SLKA-25170_819DDCF8.pnach @@ -2,7 +2,7 @@ gametitle=SD Gundam G Generation Seed (K)(SLKA-25170) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25172_99A8B4FF.pnach b/patches/SLKA-25172_99A8B4FF.pnach index 89f29a2b..b294f07a 100644 --- a/patches/SLKA-25172_99A8B4FF.pnach +++ b/patches/SLKA-25172_99A8B4FF.pnach @@ -2,7 +2,7 @@ gametitle=Harry Potter and the Prisoner of Azkaban (K)(SLKA-25172) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Devina and Arapapa +author=Devina and Arapapa //Widescreen hack 16:9 //to widen the HUD to hide unwanted elements, diff --git a/patches/SLKA-25180_002C5D88.pnach b/patches/SLKA-25180_002C5D88.pnach index be3ca3fe..40b94b5d 100644 --- a/patches/SLKA-25180_002C5D88.pnach +++ b/patches/SLKA-25180_002C5D88.pnach @@ -2,7 +2,7 @@ gametitle=Tom Clancy's Splinter Cell 2 - Pandora Tomorrow (NTSC-K)(SLKA-25180) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) //Search values are different than NTSC-U. diff --git a/patches/SLKA-25182_F506742F.pnach b/patches/SLKA-25182_F506742F.pnach index aed18405..8793f32c 100644 --- a/patches/SLKA-25182_F506742F.pnach +++ b/patches/SLKA-25182_F506742F.pnach @@ -2,7 +2,7 @@ gametitle=Hajime no Ippo 2 - Victorious Road (K)(SLKA-25182) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25199_C45E77F4.pnach b/patches/SLKA-25199_C45E77F4.pnach index 248bfa19..acf90bb8 100644 --- a/patches/SLKA-25199_C45E77F4.pnach +++ b/patches/SLKA-25199_C45E77F4.pnach @@ -2,7 +2,7 @@ gametitle=Kengo 3 (K)(SLKA-25199) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas (NTSC-K by Arapapa) +author=El_Patas (NTSC-K by Arapapa) //Gameplay 16:9 (Memory hack) patch=1,EE,20868E78,extended,3F400000 //3F800000 (Increases hor. axis) diff --git a/patches/SLKA-25201_1102F889.pnach b/patches/SLKA-25201_1102F889.pnach index d46c6435..27eae09b 100644 --- a/patches/SLKA-25201_1102F889.pnach +++ b/patches/SLKA-25201_1102F889.pnach @@ -2,7 +2,7 @@ gametitle=Armored Core - Nexus - Disc 1 - Evolution (NTSC-K) (SLKA-25201) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 patch=1,EE,0023fe6c,word,3c013f40 // 00000000 hor fov menu diff --git a/patches/SLKA-25202_1102F889.pnach b/patches/SLKA-25202_1102F889.pnach index c4e7aff1..85b76c2b 100644 --- a/patches/SLKA-25202_1102F889.pnach +++ b/patches/SLKA-25202_1102F889.pnach @@ -2,7 +2,7 @@ gametitle=Armored Core - Nexus - Disc 2 - Revolution (NTSC-K) (SLKA-25202) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 patch=1,EE,0023fe6c,word,3c013f40 // 00000000 hor fov menu diff --git a/patches/SLKA-25204_36416C48.pnach b/patches/SLKA-25204_36416C48.pnach index 456fc3dc..b044f137 100644 --- a/patches/SLKA-25204_36416C48.pnach +++ b/patches/SLKA-25204_36416C48.pnach @@ -2,7 +2,7 @@ gametitle=Showdown - Legends of Wrestling (K)(SLKA-25204) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25205_4B27353A.pnach b/patches/SLKA-25205_4B27353A.pnach index 88fc2c6c..6da9f17c 100644 --- a/patches/SLKA-25205_4B27353A.pnach +++ b/patches/SLKA-25205_4B27353A.pnach @@ -2,7 +2,7 @@ gametitle=Dragonball Z 3 (K) (SLKA-25205) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 patch=1,EE,00131ba8,word,080c91f2 // 46000803 jump to code-inject 003247c8 diff --git a/patches/SLKA-25206_5F060991.pnach b/patches/SLKA-25206_5F060991.pnach index 903d9fee..7993f6cc 100644 --- a/patches/SLKA-25206_5F060991.pnach +++ b/patches/SLKA-25206_5F060991.pnach @@ -2,7 +2,7 @@ gametitle=Burnout 3 - Takedown (K) (SLKA-25206) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by Aero_ (NTSC-K by Arapapa) +author=Aero_ (NTSC-K by Arapapa) diff --git a/patches/SLKA-25208_0326AE0E.pnach b/patches/SLKA-25208_0326AE0E.pnach index 752dd0ea..7997fba0 100644 --- a/patches/SLKA-25208_0326AE0E.pnach +++ b/patches/SLKA-25208_0326AE0E.pnach @@ -2,7 +2,7 @@ gametitle=One Piece - Round the Land! (NTSC-K) (SLKA_25208) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 diff --git a/patches/SLKA-25210_7A7E708C.pnach b/patches/SLKA-25210_7A7E708C.pnach index dfb80157..e0252797 100644 --- a/patches/SLKA-25210_7A7E708C.pnach +++ b/patches/SLKA-25210_7A7E708C.pnach @@ -2,7 +2,7 @@ gametitle=Summer Heat Beach Volleyball (K)(SLKA-25210) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 (NTSC-K by Arapapa) +author=No.47 (NTSC-K by Arapapa) patch=1,EE,001b1934,word,3c01464f //3c014622 patch=1,EE,001b1ad8,word,3c01464f //3c014622 diff --git a/patches/SLKA-25211_589A6B75.pnach b/patches/SLKA-25211_589A6B75.pnach index 838aa14e..4438280c 100644 --- a/patches/SLKA-25211_589A6B75.pnach +++ b/patches/SLKA-25211_589A6B75.pnach @@ -2,7 +2,7 @@ gametitle= King of Fighters - Maximum Impact (K)(SLKA-25211) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLKA-25213_DF3FEFA9.pnach b/patches/SLKA-25213_DF3FEFA9.pnach index 5b3d4eb9..80bc86fe 100644 --- a/patches/SLKA-25213_DF3FEFA9.pnach +++ b/patches/SLKA-25213_DF3FEFA9.pnach @@ -2,7 +2,7 @@ gametitle=Berserk (K)(SLKA-25213) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25218_A7B09415.pnach b/patches/SLKA-25218_A7B09415.pnach index 7136a637..fb40aea4 100644 --- a/patches/SLKA-25218_A7B09415.pnach +++ b/patches/SLKA-25218_A7B09415.pnach @@ -2,7 +2,7 @@ gametitle=Hitman - Contracts (K)(SLKA-25218) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLKA-25219_93421C9E.pnach b/patches/SLKA-25219_93421C9E.pnach index 9e8e5b8a..8e23f6f6 100644 --- a/patches/SLKA-25219_93421C9E.pnach +++ b/patches/SLKA-25219_93421C9E.pnach @@ -2,7 +2,7 @@ gametitle=Monster Hunter G (K) (SLKA_252.19) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //Wide hack 16:9 (Search the values are same Monseter Hunter. F0FFBD27 B63F023C 0000BFFF 6EDB4234) patch=1,EE,00134fa4,word,3c023ff3 diff --git a/patches/SLKA-25221_56075A21.pnach b/patches/SLKA-25221_56075A21.pnach index 6053a276..27fd11ec 100644 --- a/patches/SLKA-25221_56075A21.pnach +++ b/patches/SLKA-25221_56075A21.pnach @@ -2,7 +2,7 @@ gametitle=Busin Zero (K) (SLKA-25221) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (6d34003d cccc8c3f(*) cccc8c3f cccc8c3f cccc8c3f) patch=1,EE,2050F274,word,3F533333 // 3f8ccccc diff --git a/patches/SLKA-25225_FDA2F2DF.pnach b/patches/SLKA-25225_FDA2F2DF.pnach index 5d22567a..3e1d663b 100644 --- a/patches/SLKA-25225_FDA2F2DF.pnach +++ b/patches/SLKA-25225_FDA2F2DF.pnach @@ -2,7 +2,7 @@ gametitle=DoRoRo (K)(SLKA-25225) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant, Arapapa +author=Little Giant, Arapapa //Widescreen hack 16:9 patch=1,EE,001b8cbc,word,3c023f06 //3c023f33 diff --git a/patches/SLKA-25226_B24520AD.pnach b/patches/SLKA-25226_B24520AD.pnach index 1a40ebdc..a908cbfe 100644 --- a/patches/SLKA-25226_B24520AD.pnach +++ b/patches/SLKA-25226_B24520AD.pnach @@ -2,7 +2,7 @@ gametitle=The Incredibles (K)(SLKA-25226) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Sergx12 (NTSC-K by Arpapa) +author=sergx12 (NTSC-K by Arpapa) //Gameplay 16:9 //003f023c 00008244 8e3c033c diff --git a/patches/SLKA-25230_FD3969E1.pnach b/patches/SLKA-25230_FD3969E1.pnach index a11033f1..5e4ce86f 100644 --- a/patches/SLKA-25230_FD3969E1.pnach +++ b/patches/SLKA-25230_FD3969E1.pnach @@ -2,7 +2,7 @@ gametitle=Def Jam - Fight for NY (K)(SLKA-25230) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 diff --git a/patches/SLKA-25232_4DF3A440.pnach b/patches/SLKA-25232_4DF3A440.pnach index 518a147d..4bfb8216 100644 --- a/patches/SLKA-25232_4DF3A440.pnach +++ b/patches/SLKA-25232_4DF3A440.pnach @@ -2,7 +2,7 @@ gametitle=Naruto - Narutimett Hero International (NTSC-K) (SLKA_25232) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //16:9 (0000803f 0000803f 00008043) diff --git a/patches/SLKA-25234_6435675C.pnach b/patches/SLKA-25234_6435675C.pnach index e03cae74..4b10ac81 100644 --- a/patches/SLKA-25234_6435675C.pnach +++ b/patches/SLKA-25234_6435675C.pnach @@ -2,7 +2,7 @@ gametitle=Rumble Roses (K)(SLKA-25234) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht Mod Pnach crc by Acem +author=ElHecht Mod Pnach crc by Acem comment=Font fix by Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25243_BB70F989.pnach b/patches/SLKA-25243_BB70F989.pnach index 5d02a213..668726c6 100644 --- a/patches/SLKA-25243_BB70F989.pnach +++ b/patches/SLKA-25243_BB70F989.pnach @@ -2,7 +2,7 @@ gametitle=Medal of Honor - European Assault (NTSC-K)(SLKA-25243) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) //Widescreen hack 16:9 patch=1,EE,0012927c,word,00000000 //10400009 diff --git a/patches/SLKA-25244_008A0D12.pnach b/patches/SLKA-25244_008A0D12.pnach index 166c186a..4ca8c07f 100644 --- a/patches/SLKA-25244_008A0D12.pnach +++ b/patches/SLKA-25244_008A0D12.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown vs Raw (K)(SLKA-25244) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25252_22425C19.pnach b/patches/SLKA-25252_22425C19.pnach index 9425f101..58aa3fc9 100644 --- a/patches/SLKA-25252_22425C19.pnach +++ b/patches/SLKA-25252_22425C19.pnach @@ -2,7 +2,7 @@ gametitle=Forgotten Realms - Demon Stone (K)(SLKA-25252) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLKA-25255_1453B44C.pnach b/patches/SLKA-25255_1453B44C.pnach index 6b4198f2..c221977b 100644 --- a/patches/SLKA-25255_1453B44C.pnach +++ b/patches/SLKA-25255_1453B44C.pnach @@ -2,7 +2,7 @@ gametitle=Kidou Senshi Gundam SEED - Owaranai Ashita e (K)(SLKA-25255) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25257_48793741.pnach b/patches/SLKA-25257_48793741.pnach index 8c225ee0..a7440d30 100644 --- a/patches/SLKA-25257_48793741.pnach +++ b/patches/SLKA-25257_48793741.pnach @@ -2,7 +2,7 @@ gametitle=Fu-un Bakumatsu Den (K)(SLKA-25257) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25262_A37A7348.pnach b/patches/SLKA-25262_A37A7348.pnach index eac4c3f1..3c0e5da2 100644 --- a/patches/SLKA-25262_A37A7348.pnach +++ b/patches/SLKA-25262_A37A7348.pnach @@ -2,7 +2,7 @@ gametitle= Winning Eleven 8 - International (NTSC-K) (SLKA_25262) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,00104634,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLKA-25264_94A0C34F.pnach b/patches/SLKA-25264_94A0C34F.pnach index 905d62fd..7240a158 100644 --- a/patches/SLKA-25264_94A0C34F.pnach +++ b/patches/SLKA-25264_94A0C34F.pnach @@ -2,7 +2,7 @@ gametitle=Full Spectrum Warrior (K)(SLKA-25264) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25265_05931990.pnach b/patches/SLKA-25265_05931990.pnach index 94e4c625..76a23e42 100644 --- a/patches/SLKA-25265_05931990.pnach +++ b/patches/SLKA-25265_05931990.pnach @@ -2,7 +2,7 @@ gametitle=Devil May Cry 3 (K) (SLKA_25265) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Acem (pnach NTSC-K by Arapapa) +author=Acem (pnach NTSC-K by Arapapa) //16:9 (0000803f 5555153f) patch=1,EE,21CAF990,word,3F400000 // 3f800000 diff --git a/patches/SLKA-25270_F9A37D6E.pnach b/patches/SLKA-25270_F9A37D6E.pnach index 7b2c5c9f..b2e6659b 100644 --- a/patches/SLKA-25270_F9A37D6E.pnach +++ b/patches/SLKA-25270_F9A37D6E.pnach @@ -2,7 +2,7 @@ gametitle=Armored Core - Fomula Front (K) (SLKA_252.70) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 (search 00000000 00000000 43ad1346 00000000) patch=1,EE,0013e1ac,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLKA-25272_1C713A5C.pnach b/patches/SLKA-25272_1C713A5C.pnach index 2f160972..05276ef9 100644 --- a/patches/SLKA-25272_1C713A5C.pnach +++ b/patches/SLKA-25272_1C713A5C.pnach @@ -2,7 +2,7 @@ gametitle=Tak 2 - The Staff of Dreams (K)(SLKA-25272) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25277_03E58308.pnach b/patches/SLKA-25277_03E58308.pnach index 54310181..75ed5857 100644 --- a/patches/SLKA-25277_03E58308.pnach +++ b/patches/SLKA-25277_03E58308.pnach @@ -2,7 +2,7 @@ gametitle=Brothers in Arms: Road to Hill 30 (K) (SLKA_252.77) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //gameplay patch=1,EE,003058cc,word,3c023f40 diff --git a/patches/SLKA-25279_C139D620.pnach b/patches/SLKA-25279_C139D620.pnach index 5020aba1..abdc4ae1 100644 --- a/patches/SLKA-25279_C139D620.pnach +++ b/patches/SLKA-25279_C139D620.pnach @@ -2,7 +2,7 @@ gametitle=Hello Kitty - Mission Rescue (K)(SLKA-25279) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25291_BD11A6EE.pnach b/patches/SLKA-25291_BD11A6EE.pnach index 3d9186c5..d64ee119 100644 --- a/patches/SLKA-25291_BD11A6EE.pnach +++ b/patches/SLKA-25291_BD11A6EE.pnach @@ -2,7 +2,7 @@ gametitle=Chains of Power (K)(SLKA-25291) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLKA-25296_2B8BBCBB.pnach b/patches/SLKA-25296_2B8BBCBB.pnach index 7462e257..e549cc54 100644 --- a/patches/SLKA-25296_2B8BBCBB.pnach +++ b/patches/SLKA-25296_2B8BBCBB.pnach @@ -2,7 +2,7 @@ gametitle=Inuyasha - Okugi Ranbu (K)(SLKA-25296) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant (NTSC-K by Arapapa) +author=Little Giant (NTSC-K by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLKA-25300_F2E397C0.pnach b/patches/SLKA-25300_F2E397C0.pnach index 95ff319b..9879bd93 100644 --- a/patches/SLKA-25300_F2E397C0.pnach +++ b/patches/SLKA-25300_F2E397C0.pnach @@ -2,7 +2,7 @@ gametitle=Digital Devil Saga Avatar Tuner (SLKA_253.00) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by synce (pnach by Arapapa) +author=synce (pnach by Arapapa) patch=1,EE,20324264,extended,3fc65461 // 3f951eb8 diff --git a/patches/SLKA-25301_43202D1A.pnach b/patches/SLKA-25301_43202D1A.pnach index 4dc16c21..bf021df4 100644 --- a/patches/SLKA-25301_43202D1A.pnach +++ b/patches/SLKA-25301_43202D1A.pnach @@ -2,7 +2,7 @@ gametitle=Digital Devil Saga Avatar Tuner 2 (SLKA_25301) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by synce (pnach NTSC-K by Arapapa) +author=synce (pnach NTSC-K by Arapapa) patch=1,EE,2037F7E4,word,3FC6D395 // 3f951eb8 diff --git a/patches/SLKA-25304_EEA60511.pnach b/patches/SLKA-25304_EEA60511.pnach index 9b000bf0..ee91f752 100644 --- a/patches/SLKA-25304_EEA60511.pnach +++ b/patches/SLKA-25304_EEA60511.pnach @@ -2,7 +2,7 @@ gametitle=Burnout Revenge (K) (SLKA-25304) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by Dread and Arapapa +author=Dread and Arapapa ////Force turn on Internal Widescreen (Full boot bypassing) patch=1,EE,003a6478,word,24020002 //30420003 diff --git a/patches/SLKA-25307_9669948F.pnach b/patches/SLKA-25307_9669948F.pnach index 519489dc..d5f6e2c3 100644 --- a/patches/SLKA-25307_9669948F.pnach +++ b/patches/SLKA-25307_9669948F.pnach @@ -2,7 +2,7 @@ gametitle=Dragon Ball Z - Sparking! (K)(SLKA-25307) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by sergx12/ElHecht (NTSC-K by Arapapa) +author=sergx12/ElHecht (NTSC-K by Arapapa) // 16:9 menu patch=1,EE,001fc244,word,3F600000 // 3f490fda sky/background fix diff --git a/patches/SLKA-25315_FC04B01D.pnach b/patches/SLKA-25315_FC04B01D.pnach index 4d7aa1ef..fb920d86 100644 --- a/patches/SLKA-25315_FC04B01D.pnach +++ b/patches/SLKA-25315_FC04B01D.pnach @@ -2,7 +2,7 @@ gametitle=NBA Live 06 (K)(SLKA-25315) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25318_F5D214FB.pnach b/patches/SLKA-25318_F5D214FB.pnach index 2541c01b..691051c3 100644 --- a/patches/SLKA-25318_F5D214FB.pnach +++ b/patches/SLKA-25318_F5D214FB.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown! vs Raw 2006 (K)(SLKA-25318) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25319_1C0740ED.pnach b/patches/SLKA-25319_1C0740ED.pnach index bea8f853..0a325963 100644 --- a/patches/SLKA-25319_1C0740ED.pnach +++ b/patches/SLKA-25319_1C0740ED.pnach @@ -2,7 +2,7 @@ gametitle=SpongeBob SquarePants - Lights, Camera, Pants! (K)(SLKA-25319) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLKA-25320_562BE37A.pnach b/patches/SLKA-25320_562BE37A.pnach index 81a3985a..d0580f8a 100644 --- a/patches/SLKA-25320_562BE37A.pnach +++ b/patches/SLKA-25320_562BE37A.pnach @@ -2,7 +2,7 @@ gametitle=Ikusa Gami (K)(SLKA-25320) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLKA-25321_8632E388.pnach b/patches/SLKA-25321_8632E388.pnach index d879dc3e..ae748f58 100644 --- a/patches/SLKA-25321_8632E388.pnach +++ b/patches/SLKA-25321_8632E388.pnach @@ -2,7 +2,7 @@ gametitle= K-League Winning Eleven 9 - Asia Championship (NTSC-K) (SLKA_25321) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,0010444c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLKA-25328_950876FA.pnach b/patches/SLKA-25328_950876FA.pnach index 3f7f82b9..38c99ab5 100644 --- a/patches/SLKA-25328_950876FA.pnach +++ b/patches/SLKA-25328_950876FA.pnach @@ -2,7 +2,7 @@ gametitle=Castlevania: Curse of Darkness (K) (SLKA_25328) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach NTSC-K by Arapapa) +author=nemesis2000 (pnach NTSC-K by Arapapa) //gameplay patch=1,EE,00751d7c,word,3c013f40 //hor value diff --git a/patches/SLKA-25331_068558AE.pnach b/patches/SLKA-25331_068558AE.pnach index 3bb858af..5e1c6a65 100644 --- a/patches/SLKA-25331_068558AE.pnach +++ b/patches/SLKA-25331_068558AE.pnach @@ -2,7 +2,7 @@ gametitle=Marc Ecko's Getting Up - Contents Under Pressure (K)(SLKA-25331) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by sergx12 (NTSC-K by Arapapa) +author=sergx12 (NTSC-K by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLKA-25337_EA9B3268.pnach b/patches/SLKA-25337_EA9B3268.pnach index a11ef1eb..f34b7be3 100644 --- a/patches/SLKA-25337_EA9B3268.pnach +++ b/patches/SLKA-25337_EA9B3268.pnach @@ -2,7 +2,7 @@ gametitle=Peter Jackson's King Kong - The Official Game of the Movie (K)(SLKA-25 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25343_E8BF0F97.pnach b/patches/SLKA-25343_E8BF0F97.pnach index 268eb328..e079b18e 100644 --- a/patches/SLKA-25343_E8BF0F97.pnach +++ b/patches/SLKA-25343_E8BF0F97.pnach @@ -2,7 +2,7 @@ gametitle=Thrillville - Off the Rails (K)(SLKA-25343) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25345_EF8BBFE6.pnach b/patches/SLKA-25345_EF8BBFE6.pnach index a43302aa..55e430ab 100644 --- a/patches/SLKA-25345_EF8BBFE6.pnach +++ b/patches/SLKA-25345_EF8BBFE6.pnach @@ -2,7 +2,7 @@ gametitle=Chicken Little (K)(SLKA-25345) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25349_865109E4.pnach b/patches/SLKA-25349_865109E4.pnach index 5416849e..6e81ae09 100644 --- a/patches/SLKA-25349_865109E4.pnach +++ b/patches/SLKA-25349_865109E4.pnach @@ -2,7 +2,7 @@ gametitle=Jacked (K)(SLKA-25349) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25351_9CF2D6C3.pnach b/patches/SLKA-25351_9CF2D6C3.pnach index 6709c8bc..bf932e87 100644 --- a/patches/SLKA-25351_9CF2D6C3.pnach +++ b/patches/SLKA-25351_9CF2D6C3.pnach @@ -2,7 +2,7 @@ gametitle=One Piece - Pirates Carnival (K)(SLKA-25351) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant (NTSC-K by Arapapa) +author=Little Giant (NTSC-K by Arapapa) patch=1,EE,001c922c,word,3c023fe3 //3c023faa patch=1,EE,001c9230,word,34428e39 //3442aaab diff --git a/patches/SLKA-25352_3EDAB3F6.pnach b/patches/SLKA-25352_3EDAB3F6.pnach index 44df29d8..4c69d1e1 100644 --- a/patches/SLKA-25352_3EDAB3F6.pnach +++ b/patches/SLKA-25352_3EDAB3F6.pnach @@ -2,7 +2,7 @@ gametitle=Full Metal Alchemist - Dream Carnival (K)(SLKA-25352) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25354_3EBABC9C.pnach b/patches/SLKA-25354_3EBABC9C.pnach index 4a10b58b..d93fcef7 100644 --- a/patches/SLKA-25354_3EBABC9C.pnach +++ b/patches/SLKA-25354_3EBABC9C.pnach @@ -2,7 +2,7 @@ gametitle=Metal Gear Solid 3 - Subsistence [Limited Edition] [Disc2of3] (K)(SLKA [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25358_92037CC4.pnach b/patches/SLKA-25358_92037CC4.pnach index e119b2db..3e5cf8ce 100644 --- a/patches/SLKA-25358_92037CC4.pnach +++ b/patches/SLKA-25358_92037CC4.pnach @@ -2,7 +2,7 @@ gametitle=Sonic Riders (K)(SLKA-25358) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLKA-25359_94D2FAA2.pnach b/patches/SLKA-25359_94D2FAA2.pnach index 43a4d3d9..a3aeed77 100644 --- a/patches/SLKA-25359_94D2FAA2.pnach +++ b/patches/SLKA-25359_94D2FAA2.pnach @@ -2,7 +2,7 @@ gametitle= Winning Eleven 9 - Liveware Evolution (NTSC-K) (SLKA_25359) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,0010444c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLKA-25360_3894622B.pnach b/patches/SLKA-25360_3894622B.pnach index d53c29e7..bb14dcc3 100644 --- a/patches/SLKA-25360_3894622B.pnach +++ b/patches/SLKA-25360_3894622B.pnach @@ -2,7 +2,7 @@ gametitle=Samurai Champloo (K)(SLKA-25360) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) patch=1,EE,00140424,word,3c023fbd //3c023f8e patch=1,EE,0014042c,word,3442a12e //344238e4 diff --git a/patches/SLKA-25361_42EE9611.pnach b/patches/SLKA-25361_42EE9611.pnach index 4f83722c..e1c2ffe6 100644 --- a/patches/SLKA-25361_42EE9611.pnach +++ b/patches/SLKA-25361_42EE9611.pnach @@ -2,7 +2,7 @@ gametitle=Keroro Gunsou - MeroMero Battle Royale Z (K)(SLKA-25361) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant (NTSC-K by Arapapa) +author=Little Giant (NTSC-K by Arapapa) //16:9 patch=1,EE,E0025555,extended,00a93d04 // diff --git a/patches/SLKA-25362_C8B06625.pnach b/patches/SLKA-25362_C8B06625.pnach index b1b4d66c..9769a7fb 100644 --- a/patches/SLKA-25362_C8B06625.pnach +++ b/patches/SLKA-25362_C8B06625.pnach @@ -2,7 +2,7 @@ gametitle= Sega Rally 2006 (K)(SLKA-25362) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack by VIRGIN KLM +author=VIRGIN KLM //Widescreen patch=1,EE,20383AF8,word,3FC71C71 diff --git a/patches/SLKA-25364_74694096.pnach b/patches/SLKA-25364_74694096.pnach index 17e84ff2..7911c497 100644 --- a/patches/SLKA-25364_74694096.pnach +++ b/patches/SLKA-25364_74694096.pnach @@ -2,7 +2,7 @@ gametitle=Kidou Senshi Gundam - Climax U.C. (K)(SLKA-25364) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25366_E94C9A02.pnach b/patches/SLKA-25366_E94C9A02.pnach index 2007c7e0..d8713ef4 100644 --- a/patches/SLKA-25366_E94C9A02.pnach +++ b/patches/SLKA-25366_E94C9A02.pnach @@ -2,7 +2,7 @@ gametitle=Naruto - Uzumaki Chronicles 2 (NTSC-K) (SLKA_25366) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack (16:9) by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 // 613f023c af474234 (search twice) diff --git a/patches/SLKA-25368_9554A03C.pnach b/patches/SLKA-25368_9554A03C.pnach index a4982b89..0ce16029 100644 --- a/patches/SLKA-25368_9554A03C.pnach +++ b/patches/SLKA-25368_9554A03C.pnach @@ -2,7 +2,7 @@ gametitle=Full Spectrum Warrior - Ten Hammers (K)(SLKA-25368) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25371_9134027F.pnach b/patches/SLKA-25371_9134027F.pnach index 3c795330..8ed490ea 100644 --- a/patches/SLKA-25371_9134027F.pnach +++ b/patches/SLKA-25371_9134027F.pnach @@ -2,7 +2,7 @@ gametitle=Garouden Break Blow (K)(SLKA-25371) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLKA-25372_688E77CC.pnach b/patches/SLKA-25372_688E77CC.pnach index 73319177..6164988e 100644 --- a/patches/SLKA-25372_688E77CC.pnach +++ b/patches/SLKA-25372_688E77CC.pnach @@ -2,7 +2,7 @@ gametitle=BLACK (K)(SLKA-25372) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 and 60 FPS by asasega (NTSC-K by Arapapa) +author=No.47 and 60 FPS by asasega (NTSC-K by Arapapa) patch=1,EE,203BE8BC,extended,00000001 patch=1,EE,204BC950,extended,00000001 diff --git a/patches/SLKA-25379_C6C71A64.pnach b/patches/SLKA-25379_C6C71A64.pnach index ffd2c5cc..fd4073cf 100644 --- a/patches/SLKA-25379_C6C71A64.pnach +++ b/patches/SLKA-25379_C6C71A64.pnach @@ -2,7 +2,7 @@ gametitle=Sengoku Musou 2 (K)(SLKA-25379) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) patch=1,EE,00179868,word,3c023f19 //3c023f4c patch=1,EE,00179870,word,3442999a //3442cccd diff --git a/patches/SLKA-25384_A49563FA.pnach b/patches/SLKA-25384_A49563FA.pnach index 150bda63..24d1f720 100644 --- a/patches/SLKA-25384_A49563FA.pnach +++ b/patches/SLKA-25384_A49563FA.pnach @@ -2,7 +2,7 @@ gametitle=Blazing Souls (K)(SLKA-25384) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25385_B35F8AAE.pnach b/patches/SLKA-25385_B35F8AAE.pnach index ba1de8c3..2cbe5fa5 100644 --- a/patches/SLKA-25385_B35F8AAE.pnach +++ b/patches/SLKA-25385_B35F8AAE.pnach @@ -2,7 +2,7 @@ gametitle=Spider-Man 3 (K)(SLKA-25385) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,0032ab04,word,3c023f22 //3c023f00 diff --git a/patches/SLKA-25388_E446C9F9.pnach b/patches/SLKA-25388_E446C9F9.pnach index a2698af9..dae1199c 100644 --- a/patches/SLKA-25388_E446C9F9.pnach +++ b/patches/SLKA-25388_E446C9F9.pnach @@ -2,7 +2,7 @@ gametitle=One Piece - Grand Adventure (K)(SLKA-25388)) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) patch=1,EE,002b4ed8,word,3c013f40 //00000000 patch=1,EE,002b4eec,word,4481f000 diff --git a/patches/SLKA-25394_13A41CA1.pnach b/patches/SLKA-25394_13A41CA1.pnach index 21c87b0a..64619354 100644 --- a/patches/SLKA-25394_13A41CA1.pnach +++ b/patches/SLKA-25394_13A41CA1.pnach @@ -2,7 +2,7 @@ gametitle= King of Fighters, The - Maximum Impact 2 (K)(SLKA-25394) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25395_600A44DC.pnach b/patches/SLKA-25395_600A44DC.pnach index ea8902d0..df1c052c 100644 --- a/patches/SLKA-25395_600A44DC.pnach +++ b/patches/SLKA-25395_600A44DC.pnach @@ -2,7 +2,7 @@ gametitle=NBA Live 07 (K)(SLKA-25395) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLKA-25397_E29C09A3.pnach b/patches/SLKA-25397_E29C09A3.pnach index 7bd8a07c..323b8633 100644 --- a/patches/SLKA-25397_E29C09A3.pnach +++ b/patches/SLKA-25397_E29C09A3.pnach @@ -2,7 +2,7 @@ gametitle=Dragon Ball Z - Sparking! NEO (K)(SLKA-25397) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by sergx12 (NTSC-K by Arapapa) +author=sergx12 (NTSC-K by Arapapa) // 16:9 //403f013c 00a08144 diff --git a/patches/SLKA-25399_B47431E3.pnach b/patches/SLKA-25399_B47431E3.pnach index 6ab7ec6d..84ed5f67 100644 --- a/patches/SLKA-25399_B47431E3.pnach +++ b/patches/SLKA-25399_B47431E3.pnach @@ -2,7 +2,7 @@ gametitle=The Sims 2 - Pets (NTSC-K)(SLKA-25399) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //aa3f013c abaa2134 00008144 0800e003 00000000 00000000 0800e003 diff --git a/patches/SLKA-25401_56A593F3.pnach b/patches/SLKA-25401_56A593F3.pnach index 39e0578a..7a95381e 100644 --- a/patches/SLKA-25401_56A593F3.pnach +++ b/patches/SLKA-25401_56A593F3.pnach @@ -2,7 +2,7 @@ gametitle=FlatOut 2 (K)(SLKA-25401) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas (NTSC-K by Arapapa) +author=El_Patas (NTSC-K by Arapapa) //Gameplay 16:9 diff --git a/patches/SLKA-25422_F3662F76.pnach b/patches/SLKA-25422_F3662F76.pnach index 6261f9dd..db199848 100644 --- a/patches/SLKA-25422_F3662F76.pnach +++ b/patches/SLKA-25422_F3662F76.pnach @@ -2,7 +2,7 @@ gametitle=Silent Hill Origins (K)(SLKA-25422) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (NTAC-K by nemesis2000) +author=nemesis2000 (NTAC-K by nemesis2000) //Zoom fix (Internal Widescreen) diff --git a/patches/SLKA-25480_5BEB153F.pnach b/patches/SLKA-25480_5BEB153F.pnach index 973c33b6..dc55d526 100644 --- a/patches/SLKA-25480_5BEB153F.pnach +++ b/patches/SLKA-25480_5BEB153F.pnach @@ -2,7 +2,7 @@ gametitle= Winning Eleven 2012 (NTSC-K) (SLKA_25480) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach El_Patas (NTSC-K by Arapapa) +author=El_Patas (NTSC-K by Arapapa) // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,001043fc,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLKA-64540_900D62AA.pnach b/patches/SLKA-64540_900D62AA.pnach index 1cf11e5f..5dbf254a 100644 --- a/patches/SLKA-64540_900D62AA.pnach +++ b/patches/SLKA-64540_900D62AA.pnach @@ -2,7 +2,7 @@ gametitle=The Sims (NTSC-K)(SLKA-64540) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //aa3f013c abaa2134 00008144 0800e003 00000000 00000000 0800e003 diff --git a/patches/SLPM-20391_D13EAC09.pnach b/patches/SLPM-20391_D13EAC09.pnach index 56614334..76740891 100644 --- a/patches/SLPM-20391_D13EAC09.pnach +++ b/patches/SLPM-20391_D13EAC09.pnach @@ -2,7 +2,7 @@ gametitle=Saiyuki Reload - Gunlock (J)(SLPS-20391) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-20436_4FF4AA01.pnach b/patches/SLPM-20436_4FF4AA01.pnach index 882b1568..76f3b9fa 100644 --- a/patches/SLPM-20436_4FF4AA01.pnach +++ b/patches/SLPM-20436_4FF4AA01.pnach @@ -2,7 +2,7 @@ gametitle=Sakigake Otokojuku (J) (SLPS-20436) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,00233b44,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-25401_EB925207.pnach b/patches/SLPM-25401_EB925207.pnach index d2db62d8..c7cfb5a8 100644 --- a/patches/SLPM-25401_EB925207.pnach +++ b/patches/SLPM-25401_EB925207.pnach @@ -2,7 +2,7 @@ gametitle=Magna Carta [NTSC-J] (SLPM-25401) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant patch=1,EE,002bd898,word,3c023f40 //3c023f80 diff --git a/patches/SLPM-55005_D6E90E33.pnach b/patches/SLPM-55005_D6E90E33.pnach index 002d286d..9cec6c07 100644 --- a/patches/SLPM-55005_D6E90E33.pnach +++ b/patches/SLPM-55005_D6E90E33.pnach @@ -2,7 +2,7 @@ gametitle=Mana Khemia 2: Fall of Alchemy [NTSC-J](SLPM-55005) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //3D scenes patch=1,EE,005e1594,word,3c013f40 //hor value diff --git a/patches/SLPM-55008_721DEBE4.pnach b/patches/SLPM-55008_721DEBE4.pnach new file mode 100644 index 00000000..98c22b5f --- /dev/null +++ b/patches/SLPM-55008_721DEBE4.pnach @@ -0,0 +1,17 @@ +gametitle=Sengoku Basara X (Japan) SLPM-55008 + +author=FelixTheCat1970 +[No-Interlacing] +description=Autoboot in progressive scan video mode and 640x480 pixels-lines +gsinterlacemode=1 +gsaspectratio=4:3 + +patch=0,EE,202FAF80,extended,0000102D +patch=0,EE,2019CF00,extended,A2120016 +patch=0,EE,2010CF00,extended,0000202D +patch=0,EE,001EA6B4,extended,24060000 +patch=0,EE,20386720,extended,002A0640 +patch=0,EE,20386740,extended,002A0640 +patch=0,EE,002A0550,extended,24020000 +patch=0,EE,201EA7D0,extended,AE0AFCB4 +patch=0,EE,001EA6B8,extended,24020003 \ No newline at end of file diff --git a/patches/SLPM-55024_0A4B3607.pnach b/patches/SLPM-55024_0A4B3607.pnach index b7bcbeae..088d5590 100644 --- a/patches/SLPM-55024_0A4B3607.pnach +++ b/patches/SLPM-55024_0A4B3607.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou Powerful Pro Yakyuu 15 (J)(SLPM-55024) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //X-Fov patch=1,EE,0034f994,word,3f19999a //3f4ccccd diff --git a/patches/SLPM-55033_B0C15891.pnach b/patches/SLPM-55033_B0C15891.pnach index 28a34dee..443997d1 100644 --- a/patches/SLPM-55033_B0C15891.pnach +++ b/patches/SLPM-55033_B0C15891.pnach @@ -2,7 +2,7 @@ gametitle= J-League Winning Eleven 2008 - Club Championship (NTSC-J) (SLPM-55033 [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,001043fc,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-55062_99E75AF9.pnach b/patches/SLPM-55062_99E75AF9.pnach index 15f404a2..dccab5fe 100644 --- a/patches/SLPM-55062_99E75AF9.pnach +++ b/patches/SLPM-55062_99E75AF9.pnach @@ -2,7 +2,7 @@ gametitle=ikkyou Powerful Major League 3 (J)(SLPM-55062) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPM-55082_B1E138B6.pnach b/patches/SLPM-55082_B1E138B6.pnach index 06ec5e67..48c57fd7 100644 --- a/patches/SLPM-55082_B1E138B6.pnach +++ b/patches/SLPM-55082_B1E138B6.pnach @@ -2,7 +2,7 @@ gametitle=Shin Sangoku Musou 5 Special [Disc1of2](J)(SLPM-55082) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by 99skul (NTSC-J by Arapapa) +author=99skull (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-55096_B5C43B61.pnach b/patches/SLPM-55096_B5C43B61.pnach index 2d2e958a..eed00736 100644 --- a/patches/SLPM-55096_B5C43B61.pnach +++ b/patches/SLPM-55096_B5C43B61.pnach @@ -2,7 +2,7 @@ gametitle=Thunder Force VI (J)(SLPM-55096) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-55108_3AF675BA.pnach b/patches/SLPM-55108_3AF675BA.pnach index 970633b7..bfd2fe2f 100644 --- a/patches/SLPM-55108_3AF675BA.pnach +++ b/patches/SLPM-55108_3AF675BA.pnach @@ -2,7 +2,7 @@ gametitle=Fate/Unlimited Codes (SLPM-55108) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 //patch=1,EE,0019b5e0,word,3c023fc5 patch=1,EE,0019ae30,word,3c013f40 diff --git a/patches/SLPM-55122_A6F06ED5.pnach b/patches/SLPM-55122_A6F06ED5.pnach index 5b90bb32..39c799d2 100644 --- a/patches/SLPM-55122_A6F06ED5.pnach +++ b/patches/SLPM-55122_A6F06ED5.pnach @@ -2,7 +2,7 @@ gametitle=Gundam Musou 2 (J)(SLPM-55122) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-55146_25D183C3.pnach b/patches/SLPM-55146_25D183C3.pnach index 16206784..66cfbbca 100644 --- a/patches/SLPM-55146_25D183C3.pnach +++ b/patches/SLPM-55146_25D183C3.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou Powerful Pro Yakyuu 2009(SLPM-55146) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Tokman5 +author=Tokman5 //X-Fov patch=1,EE,00355414,word,3F19999A //3F4CCCCD \ No newline at end of file diff --git a/patches/SLPM-55155_3E8C9B7D.pnach b/patches/SLPM-55155_3E8C9B7D.pnach index 8f13d2af..af50c62c 100644 --- a/patches/SLPM-55155_3E8C9B7D.pnach +++ b/patches/SLPM-55155_3E8C9B7D.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou Powerful Major League 2009 (J)(SLPM-55155) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPM-55182_7BFEB536.pnach b/patches/SLPM-55182_7BFEB536.pnach index 05f5aa8c..2db97402 100644 --- a/patches/SLPM-55182_7BFEB536.pnach +++ b/patches/SLPM-55182_7BFEB536.pnach @@ -2,7 +2,7 @@ gametitle= J-League Winning Eleven 2009 - Club Championship (NTSC-J) (SLPM-55182 [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,001043fc,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-55231_F66FAFB2.pnach b/patches/SLPM-55231_F66FAFB2.pnach index cd1ca94d..a1f80e03 100644 --- a/patches/SLPM-55231_F66FAFB2.pnach +++ b/patches/SLPM-55231_F66FAFB2.pnach @@ -2,7 +2,7 @@ gametitle=Silent Hill - Shattered Memories (J)(SLPM-55231) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //widescreen fix patch=1,EE,002c4a0c,word,3c013faa //3c013fe3 diff --git a/patches/SLPM-55258_5DB219F4.pnach b/patches/SLPM-55258_5DB219F4.pnach index d6e37e53..e0ba5f39 100644 --- a/patches/SLPM-55258_5DB219F4.pnach +++ b/patches/SLPM-55258_5DB219F4.pnach @@ -2,7 +2,7 @@ gametitle= Winning Eleven 2010 - Aoki Samurai no Chousen (NTSC-J) (SLPM_55258) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,001043fc,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-55262_B871726D.pnach b/patches/SLPM-55262_B871726D.pnach index 4221542b..ed386e41 100644 --- a/patches/SLPM-55262_B871726D.pnach +++ b/patches/SLPM-55262_B871726D.pnach @@ -2,7 +2,7 @@ gametitle= J-League Winning Eleven 2010 - Club Championship (NTSC-J) (SLPM-55262 [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,001043fc,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-62002_BE388588.pnach b/patches/SLPM-62002_BE388588.pnach index 4fa44408..360c7116 100644 --- a/patches/SLPM-62002_BE388588.pnach +++ b/patches/SLPM-62002_BE388588.pnach @@ -2,7 +2,7 @@ gametitle=International Superstar Soccer (E)(SLES-50039) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62002_EDD8A976.pnach b/patches/SLPM-62002_EDD8A976.pnach index a99139ae..1c0eb40b 100644 --- a/patches/SLPM-62002_EDD8A976.pnach +++ b/patches/SLPM-62002_EDD8A976.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou World Soccer 2000 (J)(SLPM-62002) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Wide Screen 16:9 patch=1,EE,002029d4,word,3c013f40 //00000000 diff --git a/patches/SLPM-62015_14F1013C.pnach b/patches/SLPM-62015_14F1013C.pnach index 03017464..933fcea6 100644 --- a/patches/SLPM-62015_14F1013C.pnach +++ b/patches/SLPM-62015_14F1013C.pnach @@ -2,7 +2,7 @@ gametitle=Silpheed - The Lost Planet (NTSC-J) (SLPS-25447) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (0000803f d7a3703f 0000f943) diff --git a/patches/SLPM-62027_4618791D.pnach b/patches/SLPM-62027_4618791D.pnach index 14e502af..216f8c70 100644 --- a/patches/SLPM-62027_4618791D.pnach +++ b/patches/SLPM-62027_4618791D.pnach @@ -2,7 +2,7 @@ gametitle=Snowboard Heaven (J)(SLPM-62027) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62028_53D4FE33.pnach b/patches/SLPM-62028_53D4FE33.pnach index 47f6998a..ec0dea3e 100644 --- a/patches/SLPM-62028_53D4FE33.pnach +++ b/patches/SLPM-62028_53D4FE33.pnach @@ -2,7 +2,7 @@ gametitle=Greatest Striker (J)(SLPM-62028) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62029_F782A513.pnach b/patches/SLPM-62029_F782A513.pnach index 224c8d73..cbd1d857 100644 --- a/patches/SLPM-62029_F782A513.pnach +++ b/patches/SLPM-62029_F782A513.pnach @@ -2,7 +2,7 @@ gametitle=Bust a Move Dance Summit 2001 (J) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62029_F881A604.pnach b/patches/SLPM-62029_F881A604.pnach index 57ad2222..59d6b980 100644 --- a/patches/SLPM-62029_F881A604.pnach +++ b/patches/SLPM-62029_F881A604.pnach @@ -2,7 +2,7 @@ gametitle=Dance Summit 2001: Bust A Move (J)(SLPM-62029) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62032_07A63225.pnach b/patches/SLPM-62032_07A63225.pnach index 4bc4379f..85afd9f3 100644 --- a/patches/SLPM-62032_07A63225.pnach +++ b/patches/SLPM-62032_07A63225.pnach @@ -2,7 +2,7 @@ gametitle=ESPN NBA 2Night (J)(SLPM-62032) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62035_1CE3766E.pnach b/patches/SLPM-62035_1CE3766E.pnach index 6d24db54..8c3aa6a2 100644 --- a/patches/SLPM-62035_1CE3766E.pnach +++ b/patches/SLPM-62035_1CE3766E.pnach @@ -2,7 +2,7 @@ gametitle=Ikuze! Onsen Takkyuu!! (J)(SLPM-62035) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62040_1715947D.pnach b/patches/SLPM-62040_1715947D.pnach index 778f1244..0b7dcbdf 100644 --- a/patches/SLPM-62040_1715947D.pnach +++ b/patches/SLPM-62040_1715947D.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou World Soccer 2000 - Final Edition (J)(SLPM-62040) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Wide Screen 16:9 patch=1,EE,00102c6c,word,3c013f40 //00000000 diff --git a/patches/SLPM-62041_FE830EBC.pnach b/patches/SLPM-62041_FE830EBC.pnach index 1ca99317..bd09b0eb 100644 --- a/patches/SLPM-62041_FE830EBC.pnach +++ b/patches/SLPM-62041_FE830EBC.pnach @@ -2,7 +2,7 @@ gametitle=ESPN National Hockey Night (J)(SLPM-62041) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62046_D9FB2413.pnach b/patches/SLPM-62046_D9FB2413.pnach index 260ce7a4..967c3b23 100644 --- a/patches/SLPM-62046_D9FB2413.pnach +++ b/patches/SLPM-62046_D9FB2413.pnach @@ -2,7 +2,7 @@ gametitle=WTA Tour Tennis (J)(SLPM-62046) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62048_12266F36.pnach b/patches/SLPM-62048_12266F36.pnach index b52f9f99..463748c3 100644 --- a/patches/SLPM-62048_12266F36.pnach +++ b/patches/SLPM-62048_12266F36.pnach @@ -1,12 +1,11 @@ gametitle=Battle Gear 2 (J)(SLPM-62048) -[Widescreen 16:9] -gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +//[Widescreen 16:9] +//gsaspectratio=16:9 +//author=Arapapa +// Disabled due to breaking car rendering. //Widescreen hack 16:9 //X-Fov -patch=1,EE,205DE8D8,extended,3f400000 //3f800000 - - +//patch=1,EE,205DE8D8,extended,3f400000 //3f800000 \ No newline at end of file diff --git a/patches/SLPM-62051_402435E5.pnach b/patches/SLPM-62051_402435E5.pnach index 7e299c1e..16089a6b 100644 --- a/patches/SLPM-62051_402435E5.pnach +++ b/patches/SLPM-62051_402435E5.pnach @@ -2,7 +2,7 @@ gametitle=Yanya Caballista featuring Gawoo (J)(SLPM-62051) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen Hack 16:9 diff --git a/patches/SLPM-62053_2F4B332E.pnach b/patches/SLPM-62053_2F4B332E.pnach index a4156fab..d22ce9f9 100644 --- a/patches/SLPM-62053_2F4B332E.pnach +++ b/patches/SLPM-62053_2F4B332E.pnach @@ -2,7 +2,7 @@ gametitle=World Soccer Winning Eleven 5 (SLPM-62053) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by BloodRaynare +author=BloodRaynare patch=1,EE,00144688,word,083eb44c patch=1,EE,0014468c,word,00000000 diff --git a/patches/SLPM-62066_FA38CA6F.pnach b/patches/SLPM-62066_FA38CA6F.pnach index dad3bf72..a6ed5f22 100644 --- a/patches/SLPM-62066_FA38CA6F.pnach +++ b/patches/SLPM-62066_FA38CA6F.pnach @@ -2,7 +2,7 @@ gametitle=Machi-ing Maker (J)(SLPM-62066) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62067_821F3647.pnach b/patches/SLPM-62067_821F3647.pnach index 42e6adc4..729a10e0 100644 --- a/patches/SLPM-62067_821F3647.pnach +++ b/patches/SLPM-62067_821F3647.pnach @@ -2,7 +2,7 @@ gametitle=Hunter X Hunter - Ryumyaku no Saidan [NTSC-J] (SLPM-62067) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Gaint +author=Little Giant patch=1,EE,00118e34,extended,3c024408 //3c024448 zoom patch=1,EE,202CBDEC,extended,3F9F3B64 //3F6ED917 vert diff --git a/patches/SLPM-62069_284C23D4.pnach b/patches/SLPM-62069_284C23D4.pnach index 409a1989..cbe9ae4f 100644 --- a/patches/SLPM-62069_284C23D4.pnach +++ b/patches/SLPM-62069_284C23D4.pnach @@ -2,7 +2,7 @@ gametitle=All-Star Baseball 2002 (J)(SLPM-62069) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Y-fov diff --git a/patches/SLPM-62081_59C8E0B8.pnach b/patches/SLPM-62081_59C8E0B8.pnach index 106caab3..12053349 100644 --- a/patches/SLPM-62081_59C8E0B8.pnach +++ b/patches/SLPM-62081_59C8E0B8.pnach @@ -2,7 +2,7 @@ gametitle=Everblue (J) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62084_33A198C1.pnach b/patches/SLPM-62084_33A198C1.pnach index 58efeb0b..8b85bb73 100644 --- a/patches/SLPM-62084_33A198C1.pnach +++ b/patches/SLPM-62084_33A198C1.pnach @@ -2,7 +2,7 @@ gametitle=ESPN X-Games Skateboarding (J)(SLPM-62084) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62087_454BDDA2.pnach b/patches/SLPM-62087_454BDDA2.pnach index c48de21b..c1845503 100644 --- a/patches/SLPM-62087_454BDDA2.pnach +++ b/patches/SLPM-62087_454BDDA2.pnach @@ -2,7 +2,7 @@ gametitle=Touge 3 (J)(SLPM-62087) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62088_81E44126.pnach b/patches/SLPM-62088_81E44126.pnach index b5c4151e..0f47c9f0 100644 --- a/patches/SLPM-62088_81E44126.pnach +++ b/patches/SLPM-62088_81E44126.pnach @@ -2,7 +2,7 @@ gametitle=J-League Winning Eleven 5 (J)(SLPM-62088) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62093_B66EEE75.pnach b/patches/SLPM-62093_B66EEE75.pnach index bcd5af45..a7ae6eb9 100644 --- a/patches/SLPM-62093_B66EEE75.pnach +++ b/patches/SLPM-62093_B66EEE75.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Ultimate Vol.01 - Love Smash Super Tennis Players ( [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62096_080C4D05.pnach b/patches/SLPM-62096_080C4D05.pnach index d0e52469..914a47f1 100644 --- a/patches/SLPM-62096_080C4D05.pnach +++ b/patches/SLPM-62096_080C4D05.pnach @@ -2,7 +2,7 @@ gametitle=Flying Circus (J)(SLPM-62096) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62097_D5E8F99A.pnach b/patches/SLPM-62097_D5E8F99A.pnach index b454add0..cc168e3f 100644 --- a/patches/SLPM-62097_D5E8F99A.pnach +++ b/patches/SLPM-62097_D5E8F99A.pnach @@ -2,7 +2,7 @@ gametitle=The Keisatsukan - Shinjuku Cop 24 Hours (J)(SLPM-62097) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62098_15E34677.pnach b/patches/SLPM-62098_15E34677.pnach index 4e293a32..d975ec0d 100644 --- a/patches/SLPM-62098_15E34677.pnach +++ b/patches/SLPM-62098_15E34677.pnach @@ -2,7 +2,7 @@ gametitle=Busin - Wizardry Alternative (J)(SLPM-62098) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62099_C9E1A718.pnach b/patches/SLPM-62099_C9E1A718.pnach index dcd9a8df..3ba77ed5 100644 --- a/patches/SLPM-62099_C9E1A718.pnach +++ b/patches/SLPM-62099_C9E1A718.pnach @@ -2,7 +2,7 @@ gametitle=Nihon Sumou Kyoukai Kounin - Nihon Oozumou - Kakutou-hen (J) [SLPM-620 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62102_8C78493E.pnach b/patches/SLPM-62102_8C78493E.pnach index cfdceb01..32457a08 100644 --- a/patches/SLPM-62102_8C78493E.pnach +++ b/patches/SLPM-62102_8C78493E.pnach @@ -2,7 +2,7 @@ gametitle=Crazy Taxi (NTSC-J)(SLPM-62102) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 (NTSC-J by Arapapa) +author=No.47 (NTSC-J by Arapapa) //Widescreen hack 16:9 //713daa3f 9a99593f 0ad7233c diff --git a/patches/SLPM-62112_211DEAD7.pnach b/patches/SLPM-62112_211DEAD7.pnach index ca91b2f6..dd7a20e0 100644 --- a/patches/SLPM-62112_211DEAD7.pnach +++ b/patches/SLPM-62112_211DEAD7.pnach @@ -2,7 +2,7 @@ gametitle=Itadaki Street 3 - Okumanchouja ni Shite Ageru! (J)(SLPM-62112) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62113_4B213AB0.pnach b/patches/SLPM-62113_4B213AB0.pnach index bedc97e3..b0fecc04 100644 --- a/patches/SLPM-62113_4B213AB0.pnach +++ b/patches/SLPM-62113_4B213AB0.pnach @@ -2,7 +2,7 @@ gametitle=World Soccer Winning Eleven 5: Final Evolution (SLPM-62113) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by BloodRaynare +author=BloodRaynare patch=1,EE,00e9e1d8,word,08402c43 patch=1,EE,00e9e1dc,word,00000000 diff --git a/patches/SLPM-62114_F8643F9B.pnach b/patches/SLPM-62114_F8643F9B.pnach index 51bbd09f..65cbbdaf 100644 --- a/patches/SLPM-62114_F8643F9B.pnach +++ b/patches/SLPM-62114_F8643F9B.pnach @@ -2,7 +2,7 @@ gametitle=Crash Bandicoot 4 - Sakuretsu! Majin Power (J)(v1.03) (SLPM-62114) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPM-62118_EEFCB0E6.pnach b/patches/SLPM-62118_EEFCB0E6.pnach index 281b0b9d..b5ce9427 100644 --- a/patches/SLPM-62118_EEFCB0E6.pnach +++ b/patches/SLPM-62118_EEFCB0E6.pnach @@ -2,7 +2,7 @@ gametitle=Bomberman Kart (J)(SLPM-62118) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62121_8741DA37.pnach b/patches/SLPM-62121_8741DA37.pnach index 47d255be..eb30acb5 100644 --- a/patches/SLPM-62121_8741DA37.pnach +++ b/patches/SLPM-62121_8741DA37.pnach @@ -2,7 +2,7 @@ gametitle=ESPN NBA 2NIght 2002 (J)(SLPM-62121) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62124_3BCE9305.pnach b/patches/SLPM-62124_3BCE9305.pnach index 239edf5d..7ad7f12e 100644 --- a/patches/SLPM-62124_3BCE9305.pnach +++ b/patches/SLPM-62124_3BCE9305.pnach @@ -2,7 +2,7 @@ gametitle=Ready 2 Rumble Boxing - Round 2 (J) (v1.04) (SLPM-62124) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62126_F68EFE2B.pnach b/patches/SLPM-62126_F68EFE2B.pnach index 5ec4e33c..017ee38a 100644 --- a/patches/SLPM-62126_F68EFE2B.pnach +++ b/patches/SLPM-62126_F68EFE2B.pnach @@ -2,7 +2,7 @@ gametitle=Hyper Sports 2002 Winter (J)(SLPM-62126) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62127_602C8097.pnach b/patches/SLPM-62127_602C8097.pnach index 697f4398..447bd0d6 100644 --- a/patches/SLPM-62127_602C8097.pnach +++ b/patches/SLPM-62127_602C8097.pnach @@ -2,7 +2,7 @@ gametitle=Makai Eiyuuki Maximo: Machine Monster no Yabou [NTSC-J] (SLPM-62127) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Gaint +author=Little Giant patch=1,EE,20262FE0,extended,43870000 //43B40000 hor patch=1,EE,201DECC4,extended,3FEEEEEE //3FB33333 render fix diff --git a/patches/SLPM-62128_39E38CC6.pnach b/patches/SLPM-62128_39E38CC6.pnach index 686939be..e027ddd2 100644 --- a/patches/SLPM-62128_39E38CC6.pnach +++ b/patches/SLPM-62128_39E38CC6.pnach @@ -2,7 +2,7 @@ gametitle=Le Mans 24 Hours (J)(SLPM-62128) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62129_4874A937.pnach b/patches/SLPM-62129_4874A937.pnach index c0abd51c..5269a58a 100644 --- a/patches/SLPM-62129_4874A937.pnach +++ b/patches/SLPM-62129_4874A937.pnach @@ -2,7 +2,7 @@ gametitle=Climax Tennis - WTA Tour Edition (J)(SLPM-62129) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62130_7838882F.pnach b/patches/SLPM-62130_7838882F.pnach index 70c17dcc..8ee9e80b 100644 --- a/patches/SLPM-62130_7838882F.pnach +++ b/patches/SLPM-62130_7838882F.pnach @@ -2,7 +2,7 @@ gametitle=Virtua Fighter 4 (J)(SLPM-62130) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) // Widescreen 16:9 diff --git a/patches/SLPM-62155_1BB99AAA.pnach b/patches/SLPM-62155_1BB99AAA.pnach index 92531640..7eaedf81 100644 --- a/patches/SLPM-62155_1BB99AAA.pnach +++ b/patches/SLPM-62155_1BB99AAA.pnach @@ -2,7 +2,7 @@ gametitle=Baseball 2002, The: Battle Ball Park Sengen (J)(SLPM-62155) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62171_9E0A16EE.pnach b/patches/SLPM-62171_9E0A16EE.pnach index f8bce3f4..ba37c67d 100644 --- a/patches/SLPM-62171_9E0A16EE.pnach +++ b/patches/SLPM-62171_9E0A16EE.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol.05 - The Blockbuster Hyper (J)(SLPM-62171) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62186_B5622E87.pnach b/patches/SLPM-62186_B5622E87.pnach index d8e9f972..603ba829 100644 --- a/patches/SLPM-62186_B5622E87.pnach +++ b/patches/SLPM-62186_B5622E87.pnach @@ -2,7 +2,7 @@ gametitle=GetBackers Dakkanya - Ubawareta Mugenjou (J)(SLPM-62186) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62192_0EC6A45D.pnach b/patches/SLPM-62192_0EC6A45D.pnach index 35676e7e..fce805ef 100644 --- a/patches/SLPM-62192_0EC6A45D.pnach +++ b/patches/SLPM-62192_0EC6A45D.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou Powerful Pro Yakyuu 9 (J)(SLPM-62192) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //X-Fov diff --git a/patches/SLPM-62194_1554A5C8.pnach b/patches/SLPM-62194_1554A5C8.pnach index 739bbefa..9c17fa30 100644 --- a/patches/SLPM-62194_1554A5C8.pnach +++ b/patches/SLPM-62194_1554A5C8.pnach @@ -2,7 +2,7 @@ gametitle=Nihon Sumo Kyokai Kounin: Nihon Oozumou Gekitou Honbashohen (J)(SLPM-6 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62196_A268B71A.pnach b/patches/SLPM-62196_A268B71A.pnach index 006c872d..c4e4c2de 100644 --- a/patches/SLPM-62196_A268B71A.pnach +++ b/patches/SLPM-62196_A268B71A.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 06 - The Snowboard (J)(SLPM-62196) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPM-62197_7B147E2D.pnach b/patches/SLPM-62197_7B147E2D.pnach index e9437730..46b88937 100644 --- a/patches/SLPM-62197_7B147E2D.pnach +++ b/patches/SLPM-62197_7B147E2D.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol.07 - The Real Fist Fighter (J)(SLPM-62197) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62209_01D33F45.pnach b/patches/SLPM-62209_01D33F45.pnach index 20c3f9b4..43197cd5 100644 --- a/patches/SLPM-62209_01D33F45.pnach +++ b/patches/SLPM-62209_01D33F45.pnach @@ -2,7 +2,7 @@ gametitle=High Heat - Major League Baseball 2003 (K)(SLPM-62209) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62214_F97D5A55.pnach b/patches/SLPM-62214_F97D5A55.pnach index 32e33842..f44a990d 100644 --- a/patches/SLPM-62214_F97D5A55.pnach +++ b/patches/SLPM-62214_F97D5A55.pnach @@ -2,7 +2,7 @@ gametitle=Everblue 2 (J)(SLPM-62214) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas (NTSC-J by Arapapa) +author=El_Patas (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-62217_A9416614.pnach b/patches/SLPM-62217_A9416614.pnach index b6b4e2ff..a12eaccc 100644 --- a/patches/SLPM-62217_A9416614.pnach +++ b/patches/SLPM-62217_A9416614.pnach @@ -2,7 +2,7 @@ gametitle=J-League Winning Eleven 6 (J)(SLPM-62217) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62223_35610B70.pnach b/patches/SLPM-62223_35610B70.pnach index 31fc0aaa..0e1b8d39 100644 --- a/patches/SLPM-62223_35610B70.pnach +++ b/patches/SLPM-62223_35610B70.pnach @@ -1,7 +1,7 @@ [Widescreen 16:9] gsaspectratio=16:9 gametitle=Simple 2000 Series Vol. 11 - The Offroad Buggy(Rebuild) (J)(PBPX-95201)(SLPM-62223) -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62224_EA1DB598.pnach b/patches/SLPM-62224_EA1DB598.pnach index 44b89822..3eedd810 100644 --- a/patches/SLPM-62224_EA1DB598.pnach +++ b/patches/SLPM-62224_EA1DB598.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Ultimate Vol.03 - Saisoku! Zokusha King - Buchigiri [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62227_5BC8C9E8.pnach b/patches/SLPM-62227_5BC8C9E8.pnach index 7d1eb28a..88833f3d 100644 --- a/patches/SLPM-62227_5BC8C9E8.pnach +++ b/patches/SLPM-62227_5BC8C9E8.pnach @@ -2,7 +2,7 @@ gametitle=Marvel vs. Capcom 2: New Age of Heroes [NTSC-J] (SLPM-62227) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00414174,word,3C023FAA patch=1,EE,003dfad0,word,AC83003C diff --git a/patches/SLPM-62236_B8FD3094.pnach b/patches/SLPM-62236_B8FD3094.pnach index a1d54d10..54ca4d20 100644 --- a/patches/SLPM-62236_B8FD3094.pnach +++ b/patches/SLPM-62236_B8FD3094.pnach @@ -2,7 +2,7 @@ gametitle=Power Smash 2 (J)(SLPM-62236) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62244_A3F06070.pnach b/patches/SLPM-62244_A3F06070.pnach index 2cb4bf23..3be2eb1e 100644 --- a/patches/SLPM-62244_A3F06070.pnach +++ b/patches/SLPM-62244_A3F06070.pnach @@ -2,7 +2,7 @@ gametitle=Choro Q H.G High Grade 3 (J)(SLPM-62244) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62246_69684336.pnach b/patches/SLPM-62246_69684336.pnach index 08e3e2c8..966c8b47 100644 --- a/patches/SLPM-62246_69684336.pnach +++ b/patches/SLPM-62246_69684336.pnach @@ -2,7 +2,7 @@ gametitle=Silent Scope 3 (J)(SLPM-62246) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62249_62FB58C9.pnach b/patches/SLPM-62249_62FB58C9.pnach index 1e876ca0..93bf6832 100644 --- a/patches/SLPM-62249_62FB58C9.pnach +++ b/patches/SLPM-62249_62FB58C9.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Hello Kitty Series Vol.1 - Starlight Pazzle (J)(SLPM-62249 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,00208f24,word,3c013f40 //3c013f80 X-Fov diff --git a/patches/SLPM-62250_73F409F9.pnach b/patches/SLPM-62250_73F409F9.pnach index 1941ef28..40f7aafd 100644 --- a/patches/SLPM-62250_73F409F9.pnach +++ b/patches/SLPM-62250_73F409F9.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Hello Kitty Series Vol.2 - Minna de Sugoroku (J)(SLPM-6225 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62251_B23A2A98.pnach b/patches/SLPM-62251_B23A2A98.pnach index f9e3bc64..c2d3ef54 100644 --- a/patches/SLPM-62251_B23A2A98.pnach +++ b/patches/SLPM-62251_B23A2A98.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 14 - The Billiard [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62253_777B5698.pnach b/patches/SLPM-62253_777B5698.pnach index 8adb9d8a..786a8b52 100644 --- a/patches/SLPM-62253_777B5698.pnach +++ b/patches/SLPM-62253_777B5698.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 16 - The Sniper 2 [NTSC-J] [SLPM-62253] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPM-62256_7DA1C832.pnach b/patches/SLPM-62256_7DA1C832.pnach index 9e237ed7..b715dd70 100644 --- a/patches/SLPM-62256_7DA1C832.pnach +++ b/patches/SLPM-62256_7DA1C832.pnach @@ -2,7 +2,7 @@ gametitle=Super Trucks (NTSC-J)(SLPM-62256) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by VIRGIN KLM (NTSC-J by Arapapa) +author=VIRGIN KLM (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-62258_8AC3F5D6.pnach b/patches/SLPM-62258_8AC3F5D6.pnach index f8ee268e..ae4d8df3 100644 --- a/patches/SLPM-62258_8AC3F5D6.pnach +++ b/patches/SLPM-62258_8AC3F5D6.pnach @@ -2,7 +2,7 @@ gametitle=GTC Africa (J)(SLPM-62258) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-62266_76AE462E.pnach b/patches/SLPM-62266_76AE462E.pnach index 16e99c00..144f7054 100644 --- a/patches/SLPM-62266_76AE462E.pnach +++ b/patches/SLPM-62266_76AE462E.pnach @@ -2,7 +2,7 @@ gametitle=Momotarou Dentetsu 11 - Black Bonbi Shutsugen! no Maki (J)(SLPM-62266) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62268_3A6C0BA0.pnach b/patches/SLPM-62268_3A6C0BA0.pnach index 8c751897..3d22e8c9 100644 --- a/patches/SLPM-62268_3A6C0BA0.pnach +++ b/patches/SLPM-62268_3A6C0BA0.pnach @@ -2,7 +2,7 @@ gametitle= Winning Eleven 6 - Final Evolution (NTSC-J) (SLPM-62268) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,011c5c6c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-62274_FED78EB4.pnach b/patches/SLPM-62274_FED78EB4.pnach index dbd0619b..138c1711 100644 --- a/patches/SLPM-62274_FED78EB4.pnach +++ b/patches/SLPM-62274_FED78EB4.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou Powerful Pro Yakyuu 9 Ketteiban (J)(SLPM-62274) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //X-Fov patch=1,EE,002b6bfc,word,3f19999a //3f4ccccd diff --git a/patches/SLPM-62275_095CCD1F.pnach b/patches/SLPM-62275_095CCD1F.pnach index 2da61e9e..a5d54713 100644 --- a/patches/SLPM-62275_095CCD1F.pnach +++ b/patches/SLPM-62275_095CCD1F.pnach @@ -2,7 +2,7 @@ gametitle=Space Raiders (J)(SLPM-62275) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62276_DF0DD9E7.pnach b/patches/SLPM-62276_DF0DD9E7.pnach index 5f778638..082edf6c 100644 --- a/patches/SLPM-62276_DF0DD9E7.pnach +++ b/patches/SLPM-62276_DF0DD9E7.pnach @@ -2,7 +2,7 @@ gametitle=GetBackers Dakkanya - Dakkandayo! Zenin Shuugou!! (J)(SLPM-62276) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62285_B48102FB.pnach b/patches/SLPM-62285_B48102FB.pnach index 84219e69..2dd088e4 100644 --- a/patches/SLPM-62285_B48102FB.pnach +++ b/patches/SLPM-62285_B48102FB.pnach @@ -2,7 +2,7 @@ gametitle=Waku Waku Volley 2 [NTSC-J] [SLPM-62285] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62291_DC2E5A76.pnach b/patches/SLPM-62291_DC2E5A76.pnach index d571212b..4bab5be0 100644 --- a/patches/SLPM-62291_DC2E5A76.pnach +++ b/patches/SLPM-62291_DC2E5A76.pnach @@ -2,7 +2,7 @@ gametitle=Bomberman Land 2 (NTSC-J) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by gamemasterplc +author=gamemasterplc patch=1,EE,201391F4,extended,24040340 //Framebuffer X Resolution (832) patch=1,EE,20139220,extended,24040340 //Internal X Resolution (832) diff --git a/patches/SLPM-62296_ABD73B95.pnach b/patches/SLPM-62296_ABD73B95.pnach index 859eb8d0..c06b21af 100644 --- a/patches/SLPM-62296_ABD73B95.pnach +++ b/patches/SLPM-62296_ABD73B95.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Ultimate Vol.06 - Love Upper Boxing (J)(SLPM-62296) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62308_0B34D12E.pnach b/patches/SLPM-62308_0B34D12E.pnach index 416303ef..37d5c1e4 100644 --- a/patches/SLPM-62308_0B34D12E.pnach +++ b/patches/SLPM-62308_0B34D12E.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol.24 - The Bowling (J)(SLPM-62308) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62314_742B28CC.pnach b/patches/SLPM-62314_742B28CC.pnach index a5b31cfa..efae5d7c 100644 --- a/patches/SLPM-62314_742B28CC.pnach +++ b/patches/SLPM-62314_742B28CC.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Ultimate Vol.07 - Saikyou Shiro Biking (J)(SLPM-623 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62320_28FA856E.pnach b/patches/SLPM-62320_28FA856E.pnach index 7a6f679b..6a94eb35 100644 --- a/patches/SLPM-62320_28FA856E.pnach +++ b/patches/SLPM-62320_28FA856E.pnach @@ -2,7 +2,7 @@ gametitle=2003-Nen Kaimaku - Ganbare Kyuukaiou (J)(SLPM-62320) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Zoom diff --git a/patches/SLPM-62328_DA0ECB30.pnach b/patches/SLPM-62328_DA0ECB30.pnach index 1bdd9cc1..de527702 100644 --- a/patches/SLPM-62328_DA0ECB30.pnach +++ b/patches/SLPM-62328_DA0ECB30.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol.27 - The Pro Yakyuu - 2003 Pennant Race (J)(SLP [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62335_CE3B7939.pnach b/patches/SLPM-62335_CE3B7939.pnach index d3232b7b..a55659fa 100644 --- a/patches/SLPM-62335_CE3B7939.pnach +++ b/patches/SLPM-62335_CE3B7939.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 28 - The Bushido Tsujigiri Ichidai (PBPX-95201 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62339_59314C76.pnach b/patches/SLPM-62339_59314C76.pnach index d6a054e6..40b67ff9 100644 --- a/patches/SLPM-62339_59314C76.pnach +++ b/patches/SLPM-62339_59314C76.pnach @@ -2,7 +2,7 @@ gametitle=Kikou Heidai - J-Pheonix 2 Prologue (J)(SLPM-62339) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa comment=Turn Off 'Speedhacks' //Widescreen hack 16:9 diff --git a/patches/SLPM-62341_C53DB321.pnach b/patches/SLPM-62341_C53DB321.pnach index 8d5c8808..e22cb68b 100644 --- a/patches/SLPM-62341_C53DB321.pnach +++ b/patches/SLPM-62341_C53DB321.pnach @@ -2,7 +2,7 @@ gametitle=Fushigi no Kuni no Alice (J)(SLPM-62341) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62345_67E110E1.pnach b/patches/SLPM-62345_67E110E1.pnach index 558a875d..32bd101c 100644 --- a/patches/SLPM-62345_67E110E1.pnach +++ b/patches/SLPM-62345_67E110E1.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol.32 - The Sensha (J)(SLPM-62345) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62349_53F38CC6.pnach b/patches/SLPM-62349_53F38CC6.pnach index 3fcc42c7..31455f23 100644 --- a/patches/SLPM-62349_53F38CC6.pnach +++ b/patches/SLPM-62349_53F38CC6.pnach @@ -2,7 +2,7 @@ gametitle=Welcome to Universal Studios Japan (J)(SLPM-62349) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62356_75AE3717.pnach b/patches/SLPM-62356_75AE3717.pnach index fdf1ea21..00fc0c37 100644 --- a/patches/SLPM-62356_75AE3717.pnach +++ b/patches/SLPM-62356_75AE3717.pnach @@ -2,7 +2,7 @@ gametitle= Winning Eleven 7 (NTSC-J) (SLPM-62356) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,0111858c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-62366_679C67FE.pnach b/patches/SLPM-62366_679C67FE.pnach index e2f78afd..1ea2dff5 100644 --- a/patches/SLPM-62366_679C67FE.pnach +++ b/patches/SLPM-62366_679C67FE.pnach @@ -2,7 +2,7 @@ gametitle=Sega Ages 2500 Series Vol. 3: Fantasy Zone [NTSC-J] (SLPM_623.66) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas // Gameplay 16:9 patch=1,EE,00101df4,word,3c023fe3 //3c023faa diff --git a/patches/SLPM-62373_398D81B3.pnach b/patches/SLPM-62373_398D81B3.pnach index e8352f1b..b8e438cc 100644 --- a/patches/SLPM-62373_398D81B3.pnach +++ b/patches/SLPM-62373_398D81B3.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 35 - The Helicopter (J)(SLPM-62373) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62378_DD93DA88.pnach b/patches/SLPM-62378_DD93DA88.pnach index 1e0df6b3..2f7f3839 100644 --- a/patches/SLPM-62378_DD93DA88.pnach +++ b/patches/SLPM-62378_DD93DA88.pnach @@ -2,7 +2,7 @@ gametitle=Bakusou Convoy Densetsu - Otoko Hanamichi America Roman (J)(SLPM-62378 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62391_91EC035D.pnach b/patches/SLPM-62391_91EC035D.pnach index 3b85d7c5..12e65d57 100644 --- a/patches/SLPM-62391_91EC035D.pnach +++ b/patches/SLPM-62391_91EC035D.pnach @@ -2,7 +2,7 @@ gametitle=Ichigeki Sacchuu!! HoiHoi-San [NTSC-J] (SLPM-62391) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //16:9 patch=1,EE,0010C53C,word,3c013f40 //00000000 diff --git a/patches/SLPM-62398_95AC6A36.pnach b/patches/SLPM-62398_95AC6A36.pnach index c9b498ec..115e42a2 100644 --- a/patches/SLPM-62398_95AC6A36.pnach +++ b/patches/SLPM-62398_95AC6A36.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 39: Boku no Machi Zukuri: Machi-ing Maker++ [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62399_DE8028AD.pnach b/patches/SLPM-62399_DE8028AD.pnach index e08ea860..4214e28e 100644 --- a/patches/SLPM-62399_DE8028AD.pnach +++ b/patches/SLPM-62399_DE8028AD.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Ultimate Vol.13 - Kyousou Tansha King (J)(SLPM-6239 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62401_26875047.pnach b/patches/SLPM-62401_26875047.pnach index 96150a2e..dc5cef00 100644 --- a/patches/SLPM-62401_26875047.pnach +++ b/patches/SLPM-62401_26875047.pnach @@ -2,7 +2,7 @@ gametitle=Death Crimson OX+ (J)(SLPM-62401) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62404_B818D3C4.pnach b/patches/SLPM-62404_B818D3C4.pnach index de8fc5c5..659c2a7e 100644 --- a/patches/SLPM-62404_B818D3C4.pnach +++ b/patches/SLPM-62404_B818D3C4.pnach @@ -2,7 +2,7 @@ gametitle=Hudson Selction Vol.1 - Cubic Lode Runner (J)(SLPM_62404) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by gamemasterplc +author=gamemasterplc patch=1,EE,00110F40,word,3C013F40 //Hor Value (0.75) patch=1,EE,0010ACC8,word,08042B9F //Jump to Bitmap Scaling Code diff --git a/patches/SLPM-62413_D8F11BD2.pnach b/patches/SLPM-62413_D8F11BD2.pnach index bb0bb344..3b71a3e6 100644 --- a/patches/SLPM-62413_D8F11BD2.pnach +++ b/patches/SLPM-62413_D8F11BD2.pnach @@ -2,7 +2,7 @@ gametitle=Kuusen 2 (J)(SLPM-62413) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62416_F4654032.pnach b/patches/SLPM-62416_F4654032.pnach index 4fc88087..139c81a2 100644 --- a/patches/SLPM-62416_F4654032.pnach +++ b/patches/SLPM-62416_F4654032.pnach @@ -2,7 +2,7 @@ gametitle=Momotarou Dentetsu 12 - Nishinihon Hen mo ari Masse! (J)(SLPM-62416) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62422_09398F2B.pnach b/patches/SLPM-62422_09398F2B.pnach index f51d1a9f..b57e627f 100644 --- a/patches/SLPM-62422_09398F2B.pnach +++ b/patches/SLPM-62422_09398F2B.pnach @@ -2,7 +2,7 @@ gametitle=Hudson Selection Vol. 4 - Takahashi Meijin no Bouken Jima [NTSC-J] (SL [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant patch=1,EE,206F1C60,extended,3F4F5C2A //3F8A3D71 diff --git a/patches/SLPM-62422_2DA90F04.pnach b/patches/SLPM-62422_2DA90F04.pnach index 7dbcb16e..16f4bb80 100644 --- a/patches/SLPM-62422_2DA90F04.pnach +++ b/patches/SLPM-62422_2DA90F04.pnach @@ -2,7 +2,7 @@ gametitle=Hudson Selction Vol.4 - Adventure Island (J)(SLPM_62422) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by gamemasterplc +author=gamemasterplc patch=1,EE,001448EC,word,08030000 //Jump to Custom Code patch=1,EE,001448F0,word,C44D0030 //Load Original Aspect into f13 (Delay Slot) diff --git a/patches/SLPM-62426_289084A7.pnach b/patches/SLPM-62426_289084A7.pnach index 3fa57685..5fb5e34d 100644 --- a/patches/SLPM-62426_289084A7.pnach +++ b/patches/SLPM-62426_289084A7.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 42 - The Ishu Kakutou Waza (SLPM-62426) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62429_3E274F26.pnach b/patches/SLPM-62429_3E274F26.pnach index 2191436c..da37aa34 100644 --- a/patches/SLPM-62429_3E274F26.pnach +++ b/patches/SLPM-62429_3E274F26.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Ultimate Vol.15 - Love Ping Pong (J)(SLPM-62429) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62443_0A4A83BB.pnach b/patches/SLPM-62443_0A4A83BB.pnach index e35fe86b..0f3ed09a 100644 --- a/patches/SLPM-62443_0A4A83BB.pnach +++ b/patches/SLPM-62443_0A4A83BB.pnach @@ -2,7 +2,7 @@ gametitle=Virtua Racing - FlatOut (SLPM_62443) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,001eca80,word,3ef5c28f //3f23d70a - hor FOV 'in-game' diff --git a/patches/SLPM-62445_1DB29B3C.pnach b/patches/SLPM-62445_1DB29B3C.pnach index b58d7455..caaba5e6 100644 --- a/patches/SLPM-62445_1DB29B3C.pnach +++ b/patches/SLPM-62445_1DB29B3C.pnach @@ -2,7 +2,7 @@ gametitle=Sega Ages 2500 Series Vol. 09 - Gain Ground (J)(SLPM-62445) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62446_60437C5F.pnach b/patches/SLPM-62446_60437C5F.pnach index c7f66c54..4fb97145 100644 --- a/patches/SLPM-62446_60437C5F.pnach +++ b/patches/SLPM-62446_60437C5F.pnach @@ -2,7 +2,7 @@ gametitle=Sega Ages 2500 Series Vol. 10 - Afterburner II (J)(SLPM-62446) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62462_B3F78DFA.pnach b/patches/SLPM-62462_B3F78DFA.pnach index 9bee7afc..3555a0da 100644 --- a/patches/SLPM-62462_B3F78DFA.pnach +++ b/patches/SLPM-62462_B3F78DFA.pnach @@ -2,7 +2,7 @@ gametitle=Gradius V (J)(SLPM-62462) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62467_8F4FF912.pnach b/patches/SLPM-62467_8F4FF912.pnach index 5707b6ab..ee504f9b 100644 --- a/patches/SLPM-62467_8F4FF912.pnach +++ b/patches/SLPM-62467_8F4FF912.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Ultimate Vol.18 - Love Aerobie (J)(SLPM-62467) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62470_EF475537.pnach b/patches/SLPM-62470_EF475537.pnach index 40b84a29..f328ea70 100644 --- a/patches/SLPM-62470_EF475537.pnach +++ b/patches/SLPM-62470_EF475537.pnach @@ -2,7 +2,7 @@ gametitle=Teitoku no Ketsudan IV with Power-Up Kit (J)(SLPM-62470) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62472_5B192B56.pnach b/patches/SLPM-62472_5B192B56.pnach index cafb322f..c7bf04fc 100644 --- a/patches/SLPM-62472_5B192B56.pnach +++ b/patches/SLPM-62472_5B192B56.pnach @@ -2,7 +2,7 @@ gametitle=Diet Channel (J)(SLPM-62472) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62476_50B5FA9F.pnach b/patches/SLPM-62476_50B5FA9F.pnach index 7f9acbe8..fa217b6c 100644 --- a/patches/SLPM-62476_50B5FA9F.pnach +++ b/patches/SLPM-62476_50B5FA9F.pnach @@ -2,7 +2,7 @@ gametitle=GetBackers Dakkanya - Urashinshiku Saikyou Battle (J)(SLPM-62476) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62478_09A73FBC.pnach b/patches/SLPM-62478_09A73FBC.pnach index a5cf3f17..a0a42ea8 100644 --- a/patches/SLPM-62478_09A73FBC.pnach +++ b/patches/SLPM-62478_09A73FBC.pnach @@ -2,7 +2,7 @@ gametitle=Bomberman Kart DX (J)(SLPM-62478) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62483_0C1A3802.pnach b/patches/SLPM-62483_0C1A3802.pnach index 3e3aaa82..bec37f1a 100644 --- a/patches/SLPM-62483_0C1A3802.pnach +++ b/patches/SLPM-62483_0C1A3802.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 48 - The Taxi Utenshu wa Kimi da (SLPM-62483) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62484_430E79CA.pnach b/patches/SLPM-62484_430E79CA.pnach index 3560b6bb..ab944119 100644 --- a/patches/SLPM-62484_430E79CA.pnach +++ b/patches/SLPM-62484_430E79CA.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol.50 - The Daibijin (J)(SLPM-62484) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62486_24E09680.pnach b/patches/SLPM-62486_24E09680.pnach index bf49b643..3c9c38fc 100644 --- a/patches/SLPM-62486_24E09680.pnach +++ b/patches/SLPM-62486_24E09680.pnach @@ -2,7 +2,7 @@ gametitle=Chou Saisoku Zokusha King BU - Bucchigiri Densetsu 2 (J)(SLPM-62486) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,2034EB94,extended,3f400000 //3f800000 diff --git a/patches/SLPM-62489_3594F9E7.pnach b/patches/SLPM-62489_3594F9E7.pnach index 1fefc66d..dc5de33a 100644 --- a/patches/SLPM-62489_3594F9E7.pnach +++ b/patches/SLPM-62489_3594F9E7.pnach @@ -2,7 +2,7 @@ gametitle=Yoshinoya (NTSC-J)(SLPM-62489) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62493_75ED921E.pnach b/patches/SLPM-62493_75ED921E.pnach index abcf8ec8..8fa66cd0 100644 --- a/patches/SLPM-62493_75ED921E.pnach +++ b/patches/SLPM-62493_75ED921E.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 54 - The Daikaijuu (J)(SLPM-62493) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62494_54897350.pnach b/patches/SLPM-62494_54897350.pnach index ad22bf69..dba4a576 100644 --- a/patches/SLPM-62494_54897350.pnach +++ b/patches/SLPM-62494_54897350.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol.55 - The Cat Fight (J) (SLPM-62494) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,0018fe84,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-62496_5CDC4435.pnach b/patches/SLPM-62496_5CDC4435.pnach index b823e10a..62ce78a2 100644 --- a/patches/SLPM-62496_5CDC4435.pnach +++ b/patches/SLPM-62496_5CDC4435.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 52 - The Chikyuu Shinryokugun - Space Raiders [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62497_890E20CA.pnach b/patches/SLPM-62497_890E20CA.pnach index ec126b8d..53a1c5b6 100644 --- a/patches/SLPM-62497_890E20CA.pnach +++ b/patches/SLPM-62497_890E20CA.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 51 - The Senkan (J)(SLPM-62497) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62500_67E7DE5C.pnach b/patches/SLPM-62500_67E7DE5C.pnach index 541d7d47..1f409334 100644 --- a/patches/SLPM-62500_67E7DE5C.pnach +++ b/patches/SLPM-62500_67E7DE5C.pnach @@ -2,7 +2,7 @@ gametitle=Alien Syndrome (SLPM_62500) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,0039f648,word,3faaaaab //3f800000 - both FOV diff --git a/patches/SLPM-62503_184BEAE9.pnach b/patches/SLPM-62503_184BEAE9.pnach index 04f2a4bc..f69a7687 100644 --- a/patches/SLPM-62503_184BEAE9.pnach +++ b/patches/SLPM-62503_184BEAE9.pnach @@ -2,7 +2,7 @@ gametitle=Bomberman Battles (J)(SLPM-62503) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62504_2F65DD7C.pnach b/patches/SLPM-62504_2F65DD7C.pnach index eac2d794..2e3adebe 100644 --- a/patches/SLPM-62504_2F65DD7C.pnach +++ b/patches/SLPM-62504_2F65DD7C.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 56 - The Survival Game [SLPM-62504] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62505_B733F841.pnach b/patches/SLPM-62505_B733F841.pnach index 6cd6b99b..240796ba 100644 --- a/patches/SLPM-62505_B733F841.pnach +++ b/patches/SLPM-62505_B733F841.pnach @@ -2,7 +2,7 @@ gametitle=Fukuhara Ai no Takkyu Icchokusen (J)(SLPM-62505) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62506_14DDB291.pnach b/patches/SLPM-62506_14DDB291.pnach index fb510c6e..2d7735f1 100644 --- a/patches/SLPM-62506_14DDB291.pnach +++ b/patches/SLPM-62506_14DDB291.pnach @@ -2,7 +2,7 @@ gametitle=Vampire Panic (First Print Limited Edition) (J)(SLPM-62506) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62508_093A3746.pnach b/patches/SLPM-62508_093A3746.pnach index 676f99b9..ae91c517 100644 --- a/patches/SLPM-62508_093A3746.pnach +++ b/patches/SLPM-62508_093A3746.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 57 - The Pro Yakyuu 2004 (J)(SLPM-62508) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62510_8B365637.pnach b/patches/SLPM-62510_8B365637.pnach index cabb9acf..beb3ef01 100644 --- a/patches/SLPM-62510_8B365637.pnach +++ b/patches/SLPM-62510_8B365637.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 60 - The Tokusatsu Henshin Hero (J)(SLPM-62510 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62525_5D67AE48.pnach b/patches/SLPM-62525_5D67AE48.pnach index 75bc4422..0908cbb3 100644 --- a/patches/SLPM-62525_5D67AE48.pnach +++ b/patches/SLPM-62525_5D67AE48.pnach @@ -2,7 +2,7 @@ gametitle=The Oneechanbara [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,202BB874,extended,3F400000 diff --git a/patches/SLPM-62538_FAE6A6F6.pnach b/patches/SLPM-62538_FAE6A6F6.pnach index a75cc19f..c4ff8008 100644 --- a/patches/SLPM-62538_FAE6A6F6.pnach +++ b/patches/SLPM-62538_FAE6A6F6.pnach @@ -2,7 +2,7 @@ gametitle=Kyoushuu Kidou Butai - Kougeki Helicopter Senki (J)(SLPM-62538) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLPM-62543_000B73EE.pnach b/patches/SLPM-62543_000B73EE.pnach index 7821bbd4..14c05d3c 100644 --- a/patches/SLPM-62543_000B73EE.pnach +++ b/patches/SLPM-62543_000B73EE.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 65 - The Kyonshi Panic (J)(SLPM-62543) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62547_97F387BB.pnach b/patches/SLPM-62547_97F387BB.pnach index 3638c811..7464fe64 100644 --- a/patches/SLPM-62547_97F387BB.pnach +++ b/patches/SLPM-62547_97F387BB.pnach @@ -2,7 +2,7 @@ gametitle=Sega Ages Vol. 16 Virtua Fighter 2 (NTSC-J) [SLPM-62547] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by FeRcHuLeS +author=FeRcHuLeS patch=1,EE,00119650,word,3c023f40 //3c023f80 diff --git a/patches/SLPM-62555_FA600E3B.pnach b/patches/SLPM-62555_FA600E3B.pnach index 7a9fda98..43cb3dc1 100644 --- a/patches/SLPM-62555_FA600E3B.pnach +++ b/patches/SLPM-62555_FA600E3B.pnach @@ -2,7 +2,7 @@ gametitle=Momotarou Dentetsu USA (J)(SLPM-62555) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62558_1FF8FDF7.pnach b/patches/SLPM-62558_1FF8FDF7.pnach index e7968c31..157098c4 100644 --- a/patches/SLPM-62558_1FF8FDF7.pnach +++ b/patches/SLPM-62558_1FF8FDF7.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Ultimate Vol.21 - Kenka Joutou Yankee Banchou (J)(S [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62588_F478B7F9.pnach b/patches/SLPM-62588_F478B7F9.pnach index b75ec685..2ff10cab 100644 --- a/patches/SLPM-62588_F478B7F9.pnach +++ b/patches/SLPM-62588_F478B7F9.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 73 - The Saiyuki Saruden (J)(SLPM-62588) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62589_D1B78388.pnach b/patches/SLPM-62589_D1B78388.pnach index 071bbbd5..7d5e25aa 100644 --- a/patches/SLPM-62589_D1B78388.pnach +++ b/patches/SLPM-62589_D1B78388.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 72 - The Ninkyou (J)(SLPM-62589) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62616_D8BB6A2E.pnach b/patches/SLPM-62616_D8BB6A2E.pnach index 636cbcb9..ab0a526c 100644 --- a/patches/SLPM-62616_D8BB6A2E.pnach +++ b/patches/SLPM-62616_D8BB6A2E.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Ultimate Vol. 25: Chou-Saisoku! Zokusha King BU no [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,2036B914,extended,3F400000 //3F800000 (Increases hor. axis) diff --git a/patches/SLPM-62618_C89A66A4.pnach b/patches/SLPM-62618_C89A66A4.pnach index dba63cbf..f736a0e3 100644 --- a/patches/SLPM-62618_C89A66A4.pnach +++ b/patches/SLPM-62618_C89A66A4.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 78 - The Uchuu Daisensou (J)(SLPM-62618) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62643_A5BD7ADC.pnach b/patches/SLPM-62643_A5BD7ADC.pnach index ccbd7a02..b915dca3 100644 --- a/patches/SLPM-62643_A5BD7ADC.pnach +++ b/patches/SLPM-62643_A5BD7ADC.pnach @@ -2,7 +2,7 @@ gametitle=Bomberman Land 3 (J)(SLPM_62643) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by gamemasterplc +author=gamemasterplc patch=1,EE,201327D8,word,3C054455 //3D Width diff --git a/patches/SLPM-62687_80E809D0.pnach b/patches/SLPM-62687_80E809D0.pnach index 68f1e48d..62b44015 100644 --- a/patches/SLPM-62687_80E809D0.pnach +++ b/patches/SLPM-62687_80E809D0.pnach @@ -2,7 +2,7 @@ gametitle=Sega Ages 2500 Series Vol.24 - Last Bronx (J)(SLPM-62687) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62702_DEE8838A.pnach b/patches/SLPM-62702_DEE8838A.pnach index d20aade3..a0c56dc0 100644 --- a/patches/SLPM-62702_DEE8838A.pnach +++ b/patches/SLPM-62702_DEE8838A.pnach @@ -2,7 +2,7 @@ gametitle=Momotarou Dentetsu 15 - Godai Bonbi Toujo! no Kan (J)(SLPM-62702) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62717_31660020.pnach b/patches/SLPM-62717_31660020.pnach index 100057ce..b94fa9d1 100644 --- a/patches/SLPM-62717_31660020.pnach +++ b/patches/SLPM-62717_31660020.pnach @@ -2,7 +2,7 @@ gametitle=Sega Ages 2500 Vol 26 - Dynamite Deka (NTSC-J) (SLPM-62717) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,001bf138,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-62718_8D984276.pnach b/patches/SLPM-62718_8D984276.pnach index e2c74853..4c65ff8e 100644 --- a/patches/SLPM-62718_8D984276.pnach +++ b/patches/SLPM-62718_8D984276.pnach @@ -2,7 +2,7 @@ gametitle=Sega Ages 2500 Series Vol. 27 - Panzer Dragoon (J)(SLPM-62718) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,009e7838,word,3FE38E2A //3faaaaab diff --git a/patches/SLPM-62724_47C29CE9.pnach b/patches/SLPM-62724_47C29CE9.pnach index c36c6a66..ebb6b85b 100644 --- a/patches/SLPM-62724_47C29CE9.pnach +++ b/patches/SLPM-62724_47C29CE9.pnach @@ -2,7 +2,7 @@ gametitle=Conveni 4, The - A no Machi o Dokusen Seyo (J)(SLPM-62724) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62733_AECEA18C.pnach b/patches/SLPM-62733_AECEA18C.pnach index c65929d1..f7539b76 100644 --- a/patches/SLPM-62733_AECEA18C.pnach +++ b/patches/SLPM-62733_AECEA18C.pnach @@ -2,7 +2,7 @@ gametitle=Garfield - Saving Arlene (J)(SLPM-62733) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62750_A4D76B34.pnach b/patches/SLPM-62750_A4D76B34.pnach index 0808aacb..88d78227 100644 --- a/patches/SLPM-62750_A4D76B34.pnach +++ b/patches/SLPM-62750_A4D76B34.pnach @@ -2,7 +2,7 @@ gametitle=Momotarou Dentetsu 16 - Hokkaido Dai Idou no Kan (J)(SLPM-62750) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62758_9A20738A.pnach b/patches/SLPM-62758_9A20738A.pnach index 8872c708..2bcddccc 100644 --- a/patches/SLPM-62758_9A20738A.pnach +++ b/patches/SLPM-62758_9A20738A.pnach @@ -2,7 +2,7 @@ gametitle=River Ride Adventure featuring Salomon (J)(SLPM-62758) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPM-62767_2529600B.pnach b/patches/SLPM-62767_2529600B.pnach index d248925b..ecae7533 100644 --- a/patches/SLPM-62767_2529600B.pnach +++ b/patches/SLPM-62767_2529600B.pnach @@ -2,7 +2,7 @@ gametitle=Sega Ages 2500 Series Vol. 31 - Dennou Senki Virtual On (J)(SLPM-62767 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-62770_799DF074.pnach b/patches/SLPM-62770_799DF074.pnach index 1c0f9da9..5e274843 100644 --- a/patches/SLPM-62770_799DF074.pnach +++ b/patches/SLPM-62770_799DF074.pnach @@ -2,7 +2,7 @@ gametitle=FIVB Volleyball World Cup - Venus Evolution (J)(SLPM-62770) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-64501_B3E715E6.pnach b/patches/SLPM-64501_B3E715E6.pnach index 68c51e75..445af88a 100644 --- a/patches/SLPM-64501_B3E715E6.pnach +++ b/patches/SLPM-64501_B3E715E6.pnach @@ -2,7 +2,7 @@ gametitle=Shin Sangoku Musou (K)(SLPM-64501) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-64504_7EA2F758.pnach b/patches/SLPM-64504_7EA2F758.pnach index 7b263dbc..f2d6c45f 100644 --- a/patches/SLPM-64504_7EA2F758.pnach +++ b/patches/SLPM-64504_7EA2F758.pnach @@ -2,7 +2,7 @@ gametitle=Maximo - Ghosts to Glory (K) (SLPM_64504) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 (pnach NTSC-K by Arapapa) +author=No.47 (pnach NTSC-K by Arapapa) //16:9 diff --git a/patches/SLPM-64507_1BBDDD82.pnach b/patches/SLPM-64507_1BBDDD82.pnach index 748b93d1..7492efbf 100644 --- a/patches/SLPM-64507_1BBDDD82.pnach +++ b/patches/SLPM-64507_1BBDDD82.pnach @@ -2,7 +2,7 @@ gametitle=Wave Rally (K)(SLPM-64507) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-64510_0F7CD26F.pnach b/patches/SLPM-64510_0F7CD26F.pnach index aa50e827..de79187e 100644 --- a/patches/SLPM-64510_0F7CD26F.pnach +++ b/patches/SLPM-64510_0F7CD26F.pnach @@ -2,7 +2,7 @@ gametitle=International Superstar Soccer 2 (K)(SLPM-64510) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-64513_00A074A7.pnach b/patches/SLPM-64513_00A074A7.pnach index 05c34f3b..eddb11ca 100644 --- a/patches/SLPM-64513_00A074A7.pnach +++ b/patches/SLPM-64513_00A074A7.pnach @@ -2,7 +2,7 @@ gametitle=Crash Bandicoot - Return of The Demon King (K)(SLPM-64513) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPM-64514_55AB5FA6.pnach b/patches/SLPM-64514_55AB5FA6.pnach index fa242ddd..5b919b9d 100644 --- a/patches/SLPM-64514_55AB5FA6.pnach +++ b/patches/SLPM-64514_55AB5FA6.pnach @@ -2,7 +2,7 @@ gametitle=Legends of Wrestling (K)(SLPM-64514) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-64521_F2386C7B.pnach b/patches/SLPM-64521_F2386C7B.pnach index ccbd4603..4c4c75b3 100644 --- a/patches/SLPM-64521_F2386C7B.pnach +++ b/patches/SLPM-64521_F2386C7B.pnach @@ -2,7 +2,7 @@ gametitle=Ragingbless (NTSC-K)(SLPM-64521) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-64522_915C2552.pnach b/patches/SLPM-64522_915C2552.pnach index 34b882e8..dabfb285 100644 --- a/patches/SLPM-64522_915C2552.pnach +++ b/patches/SLPM-64522_915C2552.pnach @@ -2,7 +2,7 @@ gametitle=La Pucelle (SLPM-64522) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas (NTSC-K by Arapapa) +author=El_Patas (NTSC-K by Arapapa) //Gameplay 16:9 diff --git a/patches/SLPM-64524_F84FE9DE.pnach b/patches/SLPM-64524_F84FE9DE.pnach index 2ceafe63..14c120d8 100644 --- a/patches/SLPM-64524_F84FE9DE.pnach +++ b/patches/SLPM-64524_F84FE9DE.pnach @@ -2,7 +2,7 @@ gametitle=Shox (K)(SLPM-64524) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-64537_D8BE3E6E.pnach b/patches/SLPM-64537_D8BE3E6E.pnach index 954a4b42..6bbcd913 100644 --- a/patches/SLPM-64537_D8BE3E6E.pnach +++ b/patches/SLPM-64537_D8BE3E6E.pnach @@ -2,7 +2,7 @@ gametitle=Dark Angel - Vampire Apocalpse (K)(SLPM-64537) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPM-64539_B92C34BE.pnach b/patches/SLPM-64539_B92C34BE.pnach index 3039fc43..4d720a8f 100644 --- a/patches/SLPM-64539_B92C34BE.pnach +++ b/patches/SLPM-64539_B92C34BE.pnach @@ -2,7 +2,7 @@ gametitle=Ultimate Fighting Championship 2 - Tap-Out (J)(SLPM-64539) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-64544_3A0A56B6.pnach b/patches/SLPM-64544_3A0A56B6.pnach index 55bf5aba..af426988 100644 --- a/patches/SLPM-64544_3A0A56B6.pnach +++ b/patches/SLPM-64544_3A0A56B6.pnach @@ -2,7 +2,7 @@ gametitle=Tetsu 1 - Densha de Battle! - World Grand Prix (K)(SLPM-64544) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-64551_C1497C84.pnach b/patches/SLPM-64551_C1497C84.pnach index 05f4cbfb..59607eef 100644 --- a/patches/SLPM-64551_C1497C84.pnach +++ b/patches/SLPM-64551_C1497C84.pnach @@ -2,7 +2,7 @@ gametitle=Contra - Shattered Soldier (K) (SLPM-645.51) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht (pnach by Arapapa) +author=ElHecht (pnach by Arapapa) // 16:9 patch=1,EE,005dc404,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-64552_411004D2.pnach b/patches/SLPM-64552_411004D2.pnach index 558e79d6..2a448b1b 100644 --- a/patches/SLPM-64552_411004D2.pnach +++ b/patches/SLPM-64552_411004D2.pnach @@ -2,7 +2,7 @@ gametitle=Silent Scope 3 (K)(SLPM-64552) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65004_4867052B.pnach b/patches/SLPM-65004_4867052B.pnach index bc4361df..35b1ca4e 100644 --- a/patches/SLPM-65004_4867052B.pnach +++ b/patches/SLPM-65004_4867052B.pnach @@ -2,7 +2,7 @@ gametitle=Reiselied - Ephemeral Fantasia [NTSC-J] (SLPM-65004) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //vert patch=1,EE,00230aa4,word,3c023fa2 diff --git a/patches/SLPM-65005_E37B178F.pnach b/patches/SLPM-65005_E37B178F.pnach index cff12e83..d636befc 100644 --- a/patches/SLPM-65005_E37B178F.pnach +++ b/patches/SLPM-65005_E37B178F.pnach @@ -2,7 +2,7 @@ gametitle=Orega Kantoku da (NTSC-J)(SLPM-65005) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65008_C4DD197F.pnach b/patches/SLPM-65008_C4DD197F.pnach index e0e14c0e..000a5ec3 100644 --- a/patches/SLPM-65008_C4DD197F.pnach +++ b/patches/SLPM-65008_C4DD197F.pnach @@ -2,7 +2,7 @@ gametitle=7 Blades (J)(SLPM-65008) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65009_0EFF5BCA.pnach b/patches/SLPM-65009_0EFF5BCA.pnach index fc8f2735..3ac91f0a 100644 --- a/patches/SLPM-65009_0EFF5BCA.pnach +++ b/patches/SLPM-65009_0EFF5BCA.pnach @@ -2,7 +2,7 @@ gametitle=ESPN X-Games Snowboarding (J)(SLPM-65009) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65014_E94C216C.pnach b/patches/SLPM-65014_E94C216C.pnach index b1fe11da..bb21eef1 100644 --- a/patches/SLPM-65014_E94C216C.pnach +++ b/patches/SLPM-65014_E94C216C.pnach @@ -2,7 +2,7 @@ gametitle=Bouken Jidai Katsugeki - Goemon [NTSC-J] (SLPM-65014) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant and Arapapa +author=Little Giant and Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65019_35E2B1AF.pnach b/patches/SLPM-65019_35E2B1AF.pnach index 2ae91c41..1d74d73b 100644 --- a/patches/SLPM-65019_35E2B1AF.pnach +++ b/patches/SLPM-65019_35E2B1AF.pnach @@ -2,7 +2,7 @@ gametitle=Zone of the Enders (J) SLPM_650.19 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by synce (pnach by Arapapa) +author=synce (pnach by Arapapa) //16:9 patch=1,EE,20450a30,extended,3c013f40 diff --git a/patches/SLPM-65022_D0CF2395.pnach b/patches/SLPM-65022_D0CF2395.pnach index cde4ec42..a4e620c9 100644 --- a/patches/SLPM-65022_D0CF2395.pnach +++ b/patches/SLPM-65022_D0CF2395.pnach @@ -2,7 +2,7 @@ gametitle=Biohazard Code Veronica Kanzenban (SLPM_650.22) [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,21136200,extended,3F400000 //FMV's fix diff --git a/patches/SLPM-65032_02DEE05F.pnach b/patches/SLPM-65032_02DEE05F.pnach index 61e57c94..097f8b4d 100644 --- a/patches/SLPM-65032_02DEE05F.pnach +++ b/patches/SLPM-65032_02DEE05F.pnach @@ -2,7 +2,7 @@ gametitle=Tokyo Bus Annai - Kyou kara Kimi mo Untenshu (J)(SLPM-65032) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65033_01151ACC.pnach b/patches/SLPM-65033_01151ACC.pnach index e9ee4778..232e7ff3 100644 --- a/patches/SLPM-65033_01151ACC.pnach +++ b/patches/SLPM-65033_01151ACC.pnach @@ -2,7 +2,7 @@ gametitle=KiKou Heidan - J-Pheonix (J) (SLPM-65033) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (search 00000000 00000000 43ad1346 00000000) patch=1,EE,001f269c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-65038_96B2F56D.pnach b/patches/SLPM-65038_96B2F56D.pnach index 52e3f2d5..8b8e514b 100644 --- a/patches/SLPM-65038_96B2F56D.pnach +++ b/patches/SLPM-65038_96B2F56D.pnach @@ -2,7 +2,7 @@ gametitle=Devil May Cry (J)(SLPM-65038) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //NTSC-J is a little different to NTSC-U //NOTICE... After you run the new game, rectangle appears in the upper-left of the screen. //NOTICE... Entering the options menu, it does not go out after. diff --git a/patches/SLPM-65047_B54C0319.pnach b/patches/SLPM-65047_B54C0319.pnach index 91be9a73..d118f607 100644 --- a/patches/SLPM-65047_B54C0319.pnach +++ b/patches/SLPM-65047_B54C0319.pnach @@ -2,7 +2,7 @@ gametitle=Capcom vs. SNK 2: Mark of the Millennium 2001 [NTSC-J] (SLPM-65047) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00142fb0,word,3C023FAA patch=1,EE,00143224,word,3C023FAA diff --git a/patches/SLPM-65047_D79F697A.pnach b/patches/SLPM-65047_D79F697A.pnach index 1217b839..da73e0e5 100644 --- a/patches/SLPM-65047_D79F697A.pnach +++ b/patches/SLPM-65047_D79F697A.pnach @@ -2,7 +2,7 @@ gametitle=Capcom vs SNK 2 - Millionaire Fighting (J)(SLPM-65047)(PBPX-95201) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-65048_FF6BA78B.pnach b/patches/SLPM-65048_FF6BA78B.pnach index 72e9c7de..9c6848eb 100644 --- a/patches/SLPM-65048_FF6BA78B.pnach +++ b/patches/SLPM-65048_FF6BA78B.pnach @@ -2,7 +2,7 @@ gametitle=Kinniku Banzuke - Muscle Wars 21 (J)(SLPM-65048) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65051_E36E16C9.pnach b/patches/SLPM-65051_E36E16C9.pnach index df11a143..aa3348d4 100644 --- a/patches/SLPM-65051_E36E16C9.pnach +++ b/patches/SLPM-65051_E36E16C9.pnach @@ -2,7 +2,7 @@ gametitle=Silent Hill 2 (SLPM-65051) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) //Wide Screen 16:9 patch=1,EE,002ca060,word,3f28f5c3 //3f6147ae diff --git a/patches/SLPM-65053_EEC3B310.pnach b/patches/SLPM-65053_EEC3B310.pnach index 89da3df1..33f3d8eb 100644 --- a/patches/SLPM-65053_EEC3B310.pnach +++ b/patches/SLPM-65053_EEC3B310.pnach @@ -2,7 +2,7 @@ gametitle=Shin Sangoku Musou 2 (J)(SLPM-65053) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by 99skull (NTSC-J by Arapapa) +author=99skull (NTSC-J by Arapapa) //16:9 widescreen hack diff --git a/patches/SLPM-65054_59AB0A06.pnach b/patches/SLPM-65054_59AB0A06.pnach index af2e663b..14215da2 100644 --- a/patches/SLPM-65054_59AB0A06.pnach +++ b/patches/SLPM-65054_59AB0A06.pnach @@ -2,7 +2,7 @@ gametitle=Abarenbou Princess (J)(SLPM-65054) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPM-65056_40A831BF.pnach b/patches/SLPM-65056_40A831BF.pnach index a3fdd4b5..250c21a0 100644 --- a/patches/SLPM-65056_40A831BF.pnach +++ b/patches/SLPM-65056_40A831BF.pnach @@ -2,7 +2,7 @@ gametitle=Orega Kantoku da Vol.2 - Getitou Pennent Race (NTSC-J)(SLPM-65056) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65059_35FB8EE2.pnach b/patches/SLPM-65059_35FB8EE2.pnach index cf29ac8b..0509c3b2 100644 --- a/patches/SLPM-65059_35FB8EE2.pnach +++ b/patches/SLPM-65059_35FB8EE2.pnach @@ -2,7 +2,7 @@ gametitle=Gun Survivor 2 - BioHazard Code - Veronica (with GunCon2) [NTSC-J] (SL [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (pnach by Little Giant) +author=ElHecht (pnach by Little Giant) // 16:9 patch=1,EE,00333af8,word,3c023f61 // 3c023f96 hor fov diff --git a/patches/SLPM-65061_9A409943.pnach b/patches/SLPM-65061_9A409943.pnach index 11d6bb83..6eefd5df 100644 --- a/patches/SLPM-65061_9A409943.pnach +++ b/patches/SLPM-65061_9A409943.pnach @@ -2,7 +2,7 @@ gametitle=Adventure of Tokyo Disney Sea (J)(SLPM-65061) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65072_5350FBD1.pnach b/patches/SLPM-65072_5350FBD1.pnach index 2a268fda..a33437cf 100644 --- a/patches/SLPM-65072_5350FBD1.pnach +++ b/patches/SLPM-65072_5350FBD1.pnach @@ -2,7 +2,7 @@ gametitle=ESPN X-Games Snowboarding 2002 (J)(SLPM-65072) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65073_5AF8016F.pnach b/patches/SLPM-65073_5AF8016F.pnach index c02ab25a..36e1c3b8 100644 --- a/patches/SLPM-65073_5AF8016F.pnach +++ b/patches/SLPM-65073_5AF8016F.pnach @@ -2,7 +2,7 @@ gametitle=幻想水滸伝 III (SLPM-65073) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,016c1b04,word,460d6d42 patch=1,EE,016c1b08,word,460d6502 diff --git a/patches/SLPM-65075_11244BA3.pnach b/patches/SLPM-65075_11244BA3.pnach index d2f68d29..e0b4a9da 100644 --- a/patches/SLPM-65075_11244BA3.pnach +++ b/patches/SLPM-65075_11244BA3.pnach @@ -2,7 +2,7 @@ gametitle=K-1 World Grand Prix 2001 (J)(SLPM-65075) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65077_CBDBD79E.pnach b/patches/SLPM-65077_CBDBD79E.pnach index 6695e576..cae12a26 100644 --- a/patches/SLPM-65077_CBDBD79E.pnach +++ b/patches/SLPM-65077_CBDBD79E.pnach @@ -2,7 +2,7 @@ gametitle=Metal Gear Solid 2 - Sons of Liberty (Premium Package) (J)(SLPM-65077) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65078_CBD4D79E.pnach b/patches/SLPM-65078_CBD4D79E.pnach index df2d2ee6..7cb9ac5a 100644 --- a/patches/SLPM-65078_CBD4D79E.pnach +++ b/patches/SLPM-65078_CBD4D79E.pnach @@ -2,7 +2,7 @@ gametitle=Metal Gear Solid 2 - Sons of Liberty (J)(SLPM-65078) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65083_19A6A496.pnach b/patches/SLPM-65083_19A6A496.pnach index 5d17cc6b..d16b643b 100644 --- a/patches/SLPM-65083_19A6A496.pnach +++ b/patches/SLPM-65083_19A6A496.pnach @@ -2,7 +2,7 @@ gametitle=Houshinengi 2 [NTSC-J] [SLPM-65083] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65093_0072DD1C.pnach b/patches/SLPM-65093_0072DD1C.pnach index 274cf6fa..d86305a7 100644 --- a/patches/SLPM-65093_0072DD1C.pnach +++ b/patches/SLPM-65093_0072DD1C.pnach @@ -2,7 +2,7 @@ gametitle=Sangokushi Senki (J)(SLPM-65093) [Widescreen 16:9] gsaspectratio=16:9 -comment=widescreen 16:9 hack by 99skull (NTSC-J by Arapapa) +author=99skull (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-65096_013AD7DC.pnach b/patches/SLPM-65096_013AD7DC.pnach index fbb13a49..0474d656 100644 --- a/patches/SLPM-65096_013AD7DC.pnach +++ b/patches/SLPM-65096_013AD7DC.pnach @@ -2,7 +2,7 @@ gametitle=Space Channel 5 Part 2 [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,202e5e54,extended,3f400000 diff --git a/patches/SLPM-65098_380D6782.pnach b/patches/SLPM-65098_380D6782.pnach index 976eee6f..58b06b37 100644 --- a/patches/SLPM-65098_380D6782.pnach +++ b/patches/SLPM-65098_380D6782.pnach @@ -2,7 +2,7 @@ gametitle=Silent Hill 2 - Saigo no Uta [NTSC-J] (SLPM-65098) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by nemesis2000 and synce +author=nemesis2000 and synce //patch=1,EE,210DDF14,extended,43A8F5C2 patch=1,EE,002d6730,word,3f28f5c3 //3f6147ae diff --git a/patches/SLPM-65101_224B2933.pnach b/patches/SLPM-65101_224B2933.pnach index ddfe17d7..720df3be 100644 --- a/patches/SLPM-65101_224B2933.pnach +++ b/patches/SLPM-65101_224B2933.pnach @@ -2,7 +2,7 @@ gametitle=Onimusha 2 [NTSC-J] (SLPM-65101]) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen correction by nemesis2000 (pnach by Little Giant) +author=nemesis2000 (pnach by Little Giant) //gameplay patch=1,EE,0010285c,word,3c013f40 patch=1,EE,00102860,word,44810000 diff --git a/patches/SLPM-65105_4322E466.pnach b/patches/SLPM-65105_4322E466.pnach index 8b952550..507bc40e 100644 --- a/patches/SLPM-65105_4322E466.pnach +++ b/patches/SLPM-65105_4322E466.pnach @@ -2,7 +2,7 @@ gametitle=Shin Combat Choro Q (J)(SLPM-65105) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65107_CAFCF796.pnach b/patches/SLPM-65107_CAFCF796.pnach index 598d7850..c3d5dbde 100644 --- a/patches/SLPM-65107_CAFCF796.pnach +++ b/patches/SLPM-65107_CAFCF796.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Ultimate Vol. 02 - Edit Racing (J)(SLPM-65107) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas & Arapapa +author=El_Patas & Arapapa //Wide Screen 16:9 diff --git a/patches/SLPM-65108_5968168C.pnach b/patches/SLPM-65108_5968168C.pnach index a958f3ab..89d180f8 100644 --- a/patches/SLPM-65108_5968168C.pnach +++ b/patches/SLPM-65108_5968168C.pnach @@ -2,7 +2,7 @@ gametitle=Jet de Go! 2 - Let's Go By Airliner (J)(SLPM-65108) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65123_DD993211.pnach b/patches/SLPM-65123_DD993211.pnach index c46bcbf9..4d724e06 100644 --- a/patches/SLPM-65123_DD993211.pnach +++ b/patches/SLPM-65123_DD993211.pnach @@ -2,7 +2,7 @@ gametitle=Kikou Heidan - J-Phoenix Burst Tactics (J) (SLPM_65123) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (search 00000000 00000000 43ad1346 00000000) patch=1,EE,0029a184,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-65124_5980E116.pnach b/patches/SLPM-65124_5980E116.pnach index afb2a681..2a60e3f9 100644 --- a/patches/SLPM-65124_5980E116.pnach +++ b/patches/SLPM-65124_5980E116.pnach @@ -2,7 +2,7 @@ gametitle=Auto Modellista [NTSC-J] (SLPM-65124) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 and Arapapa +author=nemesis2000 and Arapapa //gameplay patch=1,EE,003f35ac,word,3fe38e38 diff --git a/patches/SLPM-65132_19122158.pnach b/patches/SLPM-65132_19122158.pnach index 5d0a38a7..77671c07 100644 --- a/patches/SLPM-65132_19122158.pnach +++ b/patches/SLPM-65132_19122158.pnach @@ -2,7 +2,7 @@ gametitle=Warriors of Might and Magic (J)(SLPM-65132) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht and Arapapa +author=ElHecht and Arapapa //Gameplay patch=1,EE,002f89f0,word,3c013f81 //00000000 diff --git a/patches/SLPM-65137_1EA52BE1.pnach b/patches/SLPM-65137_1EA52BE1.pnach index a9c5aa5e..8331f6f2 100644 --- a/patches/SLPM-65137_1EA52BE1.pnach +++ b/patches/SLPM-65137_1EA52BE1.pnach @@ -2,7 +2,7 @@ gametitle=All-Star Baseball 2003 (J)(SLPM-65137) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Y-fov diff --git a/patches/SLPM-65141_5A930A4A.pnach b/patches/SLPM-65141_5A930A4A.pnach index 8d03b434..12171d3f 100644 --- a/patches/SLPM-65141_5A930A4A.pnach +++ b/patches/SLPM-65141_5A930A4A.pnach @@ -2,7 +2,7 @@ gametitle=Zoku Segare Ijiri (J)(SLPM-65141) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65151_60AF52B2.pnach b/patches/SLPM-65151_60AF52B2.pnach index 00a9ca82..e425cb4a 100644 --- a/patches/SLPM-65151_60AF52B2.pnach +++ b/patches/SLPM-65151_60AF52B2.pnach @@ -2,7 +2,7 @@ gametitle=Akudaikan (J)(SLPM-65151) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65153_C7A7D6EE.pnach b/patches/SLPM-65153_C7A7D6EE.pnach index c1646084..7e17c3d7 100644 --- a/patches/SLPM-65153_C7A7D6EE.pnach +++ b/patches/SLPM-65153_C7A7D6EE.pnach @@ -2,7 +2,7 @@ gametitle=Gungrave [NTSC-J] [SLPM-65153] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa and ElHecht +author=Arapapa and ElHecht patch=1,EE,001bee9c,word,3c013f40 //00000000 diff --git a/patches/SLPM-65165_AB09D7EC.pnach b/patches/SLPM-65165_AB09D7EC.pnach index a096e9b3..09839dc5 100644 --- a/patches/SLPM-65165_AB09D7EC.pnach +++ b/patches/SLPM-65165_AB09D7EC.pnach @@ -2,7 +2,7 @@ gametitle=Project Minerva [NTSC-J] (SLPM-65165) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Gaint +author=Little Giant patch=1,EE,20F2B608,extended,3F206D3A // vert patch=1,EE,20F322D4,extended,3F5AE148 // zoom diff --git a/patches/SLPM-65167_F87B9B78.pnach b/patches/SLPM-65167_F87B9B78.pnach index 3f3ef42f..0007edf0 100644 --- a/patches/SLPM-65167_F87B9B78.pnach +++ b/patches/SLPM-65167_F87B9B78.pnach @@ -2,7 +2,7 @@ gametitle=Pride FC - Fighting Championships (J)(SLPM-65167) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen Hack 16:9 diff --git a/patches/SLPM-65170_8A402027.pnach b/patches/SLPM-65170_8A402027.pnach index 78ad7918..d0df9b26 100644 --- a/patches/SLPM-65170_8A402027.pnach +++ b/patches/SLPM-65170_8A402027.pnach @@ -2,7 +2,7 @@ gametitle=Shin Sangoku Musou 2 Mushouden (J)(SLPM-65170) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) //Widescreen 16:9 diff --git a/patches/SLPM-65176_0BF26D23.pnach b/patches/SLPM-65176_0BF26D23.pnach index 8d62ec4a..7344e781 100644 --- a/patches/SLPM-65176_0BF26D23.pnach +++ b/patches/SLPM-65176_0BF26D23.pnach @@ -2,7 +2,7 @@ gametitle=King of Colosseum (Red) - Shin Nippon x Zen Nippon x Pancrase Disc (J) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65184_F379C8BB.pnach b/patches/SLPM-65184_F379C8BB.pnach index 66a36d1a..e523d096 100644 --- a/patches/SLPM-65184_F379C8BB.pnach +++ b/patches/SLPM-65184_F379C8BB.pnach @@ -2,7 +2,7 @@ gametitle=The Document of Metal Gear Solid 2 (J)(SLPM-65184) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Esppiral (NTSC-J by Arapapa) +author=Esppiral (NTSC-J by Arapapa) //3D Model view fix //803f013c00b08144380047b4 diff --git a/patches/SLPM-65190_6DDBE5E5.pnach b/patches/SLPM-65190_6DDBE5E5.pnach index 048a8fac..6b8357fc 100644 --- a/patches/SLPM-65190_6DDBE5E5.pnach +++ b/patches/SLPM-65190_6DDBE5E5.pnach @@ -2,7 +2,7 @@ gametitle=Tony Hawks Pro Skater 3 (SLPM-65190) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by BloodRaynare +author=BloodRaynare patch=1,EE,0017c760,word,3c013ff3 //3c013fb6 patch=1,EE,0017c764,word,3421cf00 //3421db40 diff --git a/patches/SLPM-65196_D757BEA0.pnach b/patches/SLPM-65196_D757BEA0.pnach index bf3050ed..7b230381 100644 --- a/patches/SLPM-65196_D757BEA0.pnach +++ b/patches/SLPM-65196_D757BEA0.pnach @@ -2,7 +2,7 @@ gametitle=Breath of Fire V - Dragon Quarter [NTSC-J] (SLPM-65196) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by nemesis2000 (pnach by Little Giant) +author=nemesis2000 (pnach by Little Giant) patch=1,EE,0012dc8c,word,3c024307 //3c024333 hor val patch=1,EE,0012ddd8,word,3c034074 //3c034036 render fix diff --git a/patches/SLPM-65199_29AADEF4.pnach b/patches/SLPM-65199_29AADEF4.pnach index a00dffdb..76b8e740 100644 --- a/patches/SLPM-65199_29AADEF4.pnach +++ b/patches/SLPM-65199_29AADEF4.pnach @@ -2,7 +2,7 @@ gametitle=Kikou Heidan J-Phoenix Cobalt Shoutaihen (J)(SLPM-65199) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65200_61039F8D.pnach b/patches/SLPM-65200_61039F8D.pnach index a74116cf..ed5f873c 100644 --- a/patches/SLPM-65200_61039F8D.pnach +++ b/patches/SLPM-65200_61039F8D.pnach @@ -2,7 +2,7 @@ gametitle=Shinobi (Japan) [SLPM-65200] [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,21BCCA48,extended,3F400000 diff --git a/patches/SLPM-65202_670E71AC.pnach b/patches/SLPM-65202_670E71AC.pnach index 3573a06f..717216c1 100644 --- a/patches/SLPM-65202_670E71AC.pnach +++ b/patches/SLPM-65202_670E71AC.pnach @@ -2,7 +2,7 @@ gametitle=K-1 World Grand Prix 2002 (J)(SLPM-65202) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65205_359EA298.pnach b/patches/SLPM-65205_359EA298.pnach index 93d1a7ef..2816422c 100644 --- a/patches/SLPM-65205_359EA298.pnach +++ b/patches/SLPM-65205_359EA298.pnach @@ -2,7 +2,7 @@ gametitle=Spider-Man - The Movie (J)(SLPM-65205) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65206_DBDE0864.pnach b/patches/SLPM-65206_DBDE0864.pnach index 020400d2..b49c918b 100644 --- a/patches/SLPM-65206_DBDE0864.pnach +++ b/patches/SLPM-65206_DBDE0864.pnach @@ -2,7 +2,7 @@ gametitle=King of Colosseum (Green) - Zero-One Disc (J)(SLPM-65206) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //X-Fov diff --git a/patches/SLPM-65207_83945660.pnach b/patches/SLPM-65207_83945660.pnach index 24f514fd..7e95b737 100644 --- a/patches/SLPM-65207_83945660.pnach +++ b/patches/SLPM-65207_83945660.pnach @@ -2,7 +2,7 @@ gametitle=Chou Battle Houshin [NTSC-J] [SLPM-65207] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65217_23D75731.pnach b/patches/SLPM-65217_23D75731.pnach index 0355e78d..ce84de18 100644 --- a/patches/SLPM-65217_23D75731.pnach +++ b/patches/SLPM-65217_23D75731.pnach @@ -2,7 +2,7 @@ gametitle=Seaman - Kindan no Pet (Kanzenban) (J)(SLPM-65217) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Wide Screen 16:9 diff --git a/patches/SLPM-65227_F345D272.pnach b/patches/SLPM-65227_F345D272.pnach index 966f894e..3041957a 100644 --- a/patches/SLPM-65227_F345D272.pnach +++ b/patches/SLPM-65227_F345D272.pnach @@ -2,7 +2,7 @@ gametitle=J-League Pro Soccer Club o Tsukurou! 3 (J)(SLPM-65227) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65229_7A26E1BB.pnach b/patches/SLPM-65229_7A26E1BB.pnach index 2c0730e5..715bb2f4 100644 --- a/patches/SLPM-65229_7A26E1BB.pnach +++ b/patches/SLPM-65229_7A26E1BB.pnach @@ -2,7 +2,7 @@ gametitle=Army Men - RTS (J)(SLPM-65229) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65232_08995DEE.pnach b/patches/SLPM-65232_08995DEE.pnach index 350eaa56..470e4e98 100644 --- a/patches/SLPM-65232_08995DEE.pnach +++ b/patches/SLPM-65232_08995DEE.pnach @@ -2,7 +2,7 @@ gametitle=Devil May Cry 2 (Disc 1) (Dante Disc) (SLUS-20484) / Devil May Cry 2 ( [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0017e08c,word,3c013f1a //hor aspect value patch=1,EE,0017e094,word,44810000 diff --git a/patches/SLPM-65233_08995DEE.pnach b/patches/SLPM-65233_08995DEE.pnach index 350eaa56..470e4e98 100644 --- a/patches/SLPM-65233_08995DEE.pnach +++ b/patches/SLPM-65233_08995DEE.pnach @@ -2,7 +2,7 @@ gametitle=Devil May Cry 2 (Disc 1) (Dante Disc) (SLUS-20484) / Devil May Cry 2 ( [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0017e08c,word,3c013f1a //hor aspect value patch=1,EE,0017e094,word,44810000 diff --git a/patches/SLPM-65234_3D80BAAB.pnach b/patches/SLPM-65234_3D80BAAB.pnach index 62eaf299..ebbc7266 100644 --- a/patches/SLPM-65234_3D80BAAB.pnach +++ b/patches/SLPM-65234_3D80BAAB.pnach @@ -2,7 +2,7 @@ gametitle=Bakusou Dekotora Densetsu - Otoko Hanamichi Yume Roman (J)(SLPM-65234) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65235_9EB4AA0B.pnach b/patches/SLPM-65235_9EB4AA0B.pnach index 3c0bf62f..b3c5aab2 100644 --- a/patches/SLPM-65235_9EB4AA0B.pnach +++ b/patches/SLPM-65235_9EB4AA0B.pnach @@ -2,7 +2,7 @@ gametitle=New Roommania - Porori Seishun (NTSC-J)(SLPM-65235) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65245_301A78F2.pnach b/patches/SLPM-65245_301A78F2.pnach index 2b889839..7aa269d4 100644 --- a/patches/SLPM-65245_301A78F2.pnach +++ b/patches/SLPM-65245_301A78F2.pnach @@ -2,7 +2,7 @@ gametitle=Gun Survivor 4 - BioHazard - Heroes Never Die [NTSC-J] (SLPM-65245) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant patch=1,EE,00108b74,word,3c013f40 //00000000 hor fov patch=1,EE,00108b78,word,44810000 //00000000 diff --git a/patches/SLPM-65246_0AD22FB5.pnach b/patches/SLPM-65246_0AD22FB5.pnach index 53e879a5..f08bdf2a 100644 --- a/patches/SLPM-65246_0AD22FB5.pnach +++ b/patches/SLPM-65246_0AD22FB5.pnach @@ -3,7 +3,7 @@ gametitle=Drift Racer - Kaido Battle [NTSC-J] (SLPM-65246) [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -description=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0013bd80,word,3c023f40 [No-Interlacing] diff --git a/patches/SLPM-65246_2046216F.pnach b/patches/SLPM-65246_2046216F.pnach index 692b86dd..885197c8 100644 --- a/patches/SLPM-65246_2046216F.pnach +++ b/patches/SLPM-65246_2046216F.pnach @@ -3,7 +3,7 @@ gametitle=Kaido Battle - Nikko, Haruna, Rokko, Hakone [NTSC-J] (SLPM-65246) [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -description=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0013bd80,word,3c023f40 [No-Interlacing] diff --git a/patches/SLPM-65247_7CC820F7.pnach b/patches/SLPM-65247_7CC820F7.pnach index 64c4b01d..cd07155c 100644 --- a/patches/SLPM-65247_7CC820F7.pnach +++ b/patches/SLPM-65247_7CC820F7.pnach @@ -2,7 +2,7 @@ gametitle=San Goku Shi Senki 2 (J)(SLPM-65247) [Widescreen 16:9] gsaspectratio=16:9 -comment=widescreen 16:9 hack by 99skull (NTSC-J by Arapapa) +author=99skull (NTSC-J by Arapapa) patch=1,EE,00140834,word,3c023f40 //3c023f80 diff --git a/patches/SLPM-65248_A3F49264.pnach b/patches/SLPM-65248_A3F49264.pnach index b0565c35..3a5faaac 100644 --- a/patches/SLPM-65248_A3F49264.pnach +++ b/patches/SLPM-65248_A3F49264.pnach @@ -2,7 +2,7 @@ gametitle=Shin Sangoku Musou 3 (J)(SLPM-65248) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-65249_5E191B9C.pnach b/patches/SLPM-65249_5E191B9C.pnach index 5539933e..9a527910 100644 --- a/patches/SLPM-65249_5E191B9C.pnach +++ b/patches/SLPM-65249_5E191B9C.pnach @@ -2,7 +2,7 @@ gametitle=Chaos Legion [NTSC-J] (SLPM-65249) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00242a1c,word,3c013f40 patch=1,EE,00242a2c,word,4481d800 patch=1,EE,00242a30,word,460fdec2 diff --git a/patches/SLPM-65262_ED32D333.pnach b/patches/SLPM-65262_ED32D333.pnach index 0690c822..8234b03a 100644 --- a/patches/SLPM-65262_ED32D333.pnach +++ b/patches/SLPM-65262_ED32D333.pnach @@ -2,7 +2,7 @@ gametitle=Boboboubo Boubobo - Hajike Matsuri (J)(SLPM-65262) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLPM-65266_BFB0DFBE.pnach b/patches/SLPM-65266_BFB0DFBE.pnach index 597875dd..d35c0964 100644 --- a/patches/SLPM-65266_BFB0DFBE.pnach +++ b/patches/SLPM-65266_BFB0DFBE.pnach @@ -1,7 +1,7 @@ [Widescreen 16:9] gsaspectratio=16:9 comment=Drakengard (J) (SLPM_652.66) -comment=Widescreen Hack by Hyakki (pnach by Arapapa) +author=Hyakki (pnach by Arapapa) patch=1,EE,203A5090,extended,3F400000 //3F800000 diff --git a/patches/SLPM-65267_C1AA3AB2.pnach b/patches/SLPM-65267_C1AA3AB2.pnach index 5459ba4d..07379e2a 100644 --- a/patches/SLPM-65267_C1AA3AB2.pnach +++ b/patches/SLPM-65267_C1AA3AB2.pnach @@ -2,7 +2,7 @@ gametitle=Kurogane no Houkou 2 - Warship Gunner (J)(SLPM-65267) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65270_AB01411F.pnach b/patches/SLPM-65270_AB01411F.pnach index 4bab202c..776553db 100644 --- a/patches/SLPM-65270_AB01411F.pnach +++ b/patches/SLPM-65270_AB01411F.pnach @@ -2,7 +2,7 @@ gametitle=Virtua Fighter 4 - Evolution (J)(SLPM-65270) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) // 16:9 patch=1,EE,002fb184,word,3c194455 // 3c034420 hor fov diff --git a/patches/SLPM-65271_3562F45A.pnach b/patches/SLPM-65271_3562F45A.pnach index 9bbfae7c..54bd132e 100644 --- a/patches/SLPM-65271_3562F45A.pnach +++ b/patches/SLPM-65271_3562F45A.pnach @@ -2,7 +2,7 @@ gametitle=Over the Monochrome Rainbow featuring Shogo Hamada (J)(SLPM-65271) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65278_B9DE6298.pnach b/patches/SLPM-65278_B9DE6298.pnach index d412dcc2..bc9e8fdc 100644 --- a/patches/SLPM-65278_B9DE6298.pnach +++ b/patches/SLPM-65278_B9DE6298.pnach @@ -2,7 +2,7 @@ gametitle=Generation of Chaos III - Toki no Fuuin (Limited Edition) (J)(SLPM-652 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65279_B9DE6298.pnach b/patches/SLPM-65279_B9DE6298.pnach index d412dcc2..bc9e8fdc 100644 --- a/patches/SLPM-65279_B9DE6298.pnach +++ b/patches/SLPM-65279_B9DE6298.pnach @@ -2,7 +2,7 @@ gametitle=Generation of Chaos III - Toki no Fuuin (Limited Edition) (J)(SLPM-652 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65300_48C1A5F1.pnach b/patches/SLPM-65300_48C1A5F1.pnach index aa35b2c2..afbfc652 100644 --- a/patches/SLPM-65300_48C1A5F1.pnach +++ b/patches/SLPM-65300_48C1A5F1.pnach @@ -2,7 +2,7 @@ gametitle=All Star Professional Wrestling III (J)(SLPM-65300) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65303_E7DE50CA.pnach b/patches/SLPM-65303_E7DE50CA.pnach index 11f1f87d..2a007f85 100644 --- a/patches/SLPM-65303_E7DE50CA.pnach +++ b/patches/SLPM-65303_E7DE50CA.pnach @@ -2,7 +2,7 @@ gametitle=Dennou Senki Virtual-On - Marz (J)(SLPM-65303) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65304_461626F5.pnach b/patches/SLPM-65304_461626F5.pnach index e4b9f55a..87e9ab8b 100644 --- a/patches/SLPM-65304_461626F5.pnach +++ b/patches/SLPM-65304_461626F5.pnach @@ -2,7 +2,7 @@ gametitle=Frogger (J)(SLPM-65304) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65308_DD70E38F.pnach b/patches/SLPM-65308_DD70E38F.pnach index dfb86cec..48b34404 100644 --- a/patches/SLPM-65308_DD70E38F.pnach +++ b/patches/SLPM-65308_DD70E38F.pnach @@ -2,7 +2,7 @@ gametitle=Shutokou Battle 01 [NTSC-J] (SLPM-65308) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,001411f8,word,3c043f53 patch=1,EE,00141200,word,34883333 @@ -10,7 +10,7 @@ patch=1,EE,00141200,word,34883333 [No-Interlacing] gsinterlacemode=1 -comment=No Interlacing Patch by Tokman5 +author=Tokman5 //No Interlace patch=1,EE,00131664,word,34020000 //DC221000 diff --git a/patches/SLPM-65315_08C2754F.pnach b/patches/SLPM-65315_08C2754F.pnach index 1d1abcaa..e1834373 100644 --- a/patches/SLPM-65315_08C2754F.pnach +++ b/patches/SLPM-65315_08C2754F.pnach @@ -2,7 +2,7 @@ gametitle=Hanjuku Eiyuu Tai 3D (J)(SLPM-65315) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLPM-65317_D04A515C.pnach b/patches/SLPM-65317_D04A515C.pnach index 5e1f2d62..2d03ceb7 100644 --- a/patches/SLPM-65317_D04A515C.pnach +++ b/patches/SLPM-65317_D04A515C.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou Powerful Pro Yakyuu 10 (J)(SLPM-65317) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //X-Fov patch=1,EE,002ed8e4,word,3f19999a //3f4ccccd diff --git a/patches/SLPM-65324_992C9F92.pnach b/patches/SLPM-65324_992C9F92.pnach index 368c4b52..749e29d0 100644 --- a/patches/SLPM-65324_992C9F92.pnach +++ b/patches/SLPM-65324_992C9F92.pnach @@ -2,7 +2,7 @@ gametitle=Gregory Horror Show - Soul Collector (J)(SLPM-65324) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65326_4C3A3060.pnach b/patches/SLPM-65326_4C3A3060.pnach index f329cdc3..48a37845 100644 --- a/patches/SLPM-65326_4C3A3060.pnach +++ b/patches/SLPM-65326_4C3A3060.pnach @@ -2,7 +2,7 @@ gametitle=Choro Q HG 4 (J)(SLPM-65326) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65330_6900731B.pnach b/patches/SLPM-65330_6900731B.pnach index a2140829..02a960cf 100644 --- a/patches/SLPM-65330_6900731B.pnach +++ b/patches/SLPM-65330_6900731B.pnach @@ -2,7 +2,7 @@ gametitle=Akudaikan 2 (J)(SLPM-65330) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65331_E46BD847.pnach b/patches/SLPM-65331_E46BD847.pnach index 9e875018..0581ab42 100644 --- a/patches/SLPM-65331_E46BD847.pnach +++ b/patches/SLPM-65331_E46BD847.pnach @@ -2,7 +2,7 @@ gametitle=RockMan X7 [NTSC-J] (SLPM-65331) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0014cbc4,word,3c0244a8 diff --git a/patches/SLPM-65336_EA182A26.pnach b/patches/SLPM-65336_EA182A26.pnach index 0af58640..230b2511 100644 --- a/patches/SLPM-65336_EA182A26.pnach +++ b/patches/SLPM-65336_EA182A26.pnach @@ -2,7 +2,7 @@ gametitle=K-1 World Grand Prix - The Beast Attack! (J)(SLPM-65336) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65338_D0FDDA59.pnach b/patches/SLPM-65338_D0FDDA59.pnach index a2611442..f20c7aef 100644 --- a/patches/SLPM-65338_D0FDDA59.pnach +++ b/patches/SLPM-65338_D0FDDA59.pnach @@ -2,7 +2,7 @@ gametitle=Juuni Kokuki - Guren no Shirube, Koujin no Michi (J)(SLPM-65338) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65343_7C7092F5.pnach b/patches/SLPM-65343_7C7092F5.pnach index 3c564989..8c07bac0 100644 --- a/patches/SLPM-65343_7C7092F5.pnach +++ b/patches/SLPM-65343_7C7092F5.pnach @@ -2,7 +2,7 @@ gametitle=Kikou Heidai - J-Pheonix 2 (J)(SLPM-65343) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa comment=Turn Off 'Speedhacks' //Widescreen hack 16:9 diff --git a/patches/SLPM-65344_1FA1E198.pnach b/patches/SLPM-65344_1FA1E198.pnach index 197d708f..97051f50 100644 --- a/patches/SLPM-65344_1FA1E198.pnach +++ b/patches/SLPM-65344_1FA1E198.pnach @@ -2,7 +2,7 @@ gametitle=Project Minerva Professional & Simple 2000 Ultimate Series Vol. 23: Pr [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Gaint +author=Little Giant patch=1,EE,2123a3dc,extended,3F206D3A // vert patch=1,EE,21241C9C,extended,3F5AE148 // zoom diff --git a/patches/SLPM-65345_996A788B.pnach b/patches/SLPM-65345_996A788B.pnach index f50ccbd6..34c4e0ad 100644 --- a/patches/SLPM-65345_996A788B.pnach +++ b/patches/SLPM-65345_996A788B.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Ultimate Vol.09 - Bakusou Manhattan Runabout 3 [SLP [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65367_859969AF.pnach b/patches/SLPM-65367_859969AF.pnach index 5448b943..c20f285d 100644 --- a/patches/SLPM-65367_859969AF.pnach +++ b/patches/SLPM-65367_859969AF.pnach @@ -2,7 +2,7 @@ gametitle=Maximo vs Army of Zin (J) (SLPM-65367) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 (pnach NTSC-J by Arapapa) +author=No.47 (pnach NTSC-J by Arapapa) //16:9 diff --git a/patches/SLPM-65372_24137D58.pnach b/patches/SLPM-65372_24137D58.pnach index 706bbe0b..9c314f12 100644 --- a/patches/SLPM-65372_24137D58.pnach +++ b/patches/SLPM-65372_24137D58.pnach @@ -2,7 +2,7 @@ gametitle=Soccer Kantoku Saihai Simulation - Formation Final [NTSC-J] [SLPM-6537 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,001033c4,word,3c013f40 //00000000 diff --git a/patches/SLPM-65377_3CEB6582.pnach b/patches/SLPM-65377_3CEB6582.pnach index 34bee56e..7a138fc9 100644 --- a/patches/SLPM-65377_3CEB6582.pnach +++ b/patches/SLPM-65377_3CEB6582.pnach @@ -2,7 +2,7 @@ gametitle=Shin Sangoku Musou 3 Mushouden (J)(SLPM-65377A) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-65378_AEDB8BB2.pnach b/patches/SLPM-65378_AEDB8BB2.pnach index 12db8fed..d67d7f67 100644 --- a/patches/SLPM-65378_AEDB8BB2.pnach +++ b/patches/SLPM-65378_AEDB8BB2.pnach @@ -2,7 +2,7 @@ gametitle=Busin 0 - Wizardry Alternative NEO (J)(SLPM-65378) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65379_B7E155F3.pnach b/patches/SLPM-65379_B7E155F3.pnach index 6efb3cb5..bf189821 100644 --- a/patches/SLPM-65379_B7E155F3.pnach +++ b/patches/SLPM-65379_B7E155F3.pnach @@ -2,7 +2,7 @@ gametitle=The Baseball 2003 - Akikigou (J)(SLPM-65379)) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65382_B65C316F.pnach b/patches/SLPM-65382_B65C316F.pnach index c2f8c75f..d3fdfed4 100644 --- a/patches/SLPM-65382_B65C316F.pnach +++ b/patches/SLPM-65382_B65C316F.pnach @@ -2,7 +2,7 @@ gametitle=Grand Theft Auto III (SLPM-65382) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //widescreen fix (00000000 0800E003 C8858CE7 00000000 00000000 D0FFBD27) patch=1,EE,00184c2c,word,3C013F9D diff --git a/patches/SLPM-65384_AD9D2B54.pnach b/patches/SLPM-65384_AD9D2B54.pnach index 55aefc54..bb4a70d7 100644 --- a/patches/SLPM-65384_AD9D2B54.pnach +++ b/patches/SLPM-65384_AD9D2B54.pnach @@ -2,7 +2,7 @@ gametitle=Dream Mix TV - World Fighters (J)(SLPM-65384) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65391_CEBA4A74.pnach b/patches/SLPM-65391_CEBA4A74.pnach index d26e0d18..2822b202 100644 --- a/patches/SLPM-65391_CEBA4A74.pnach +++ b/patches/SLPM-65391_CEBA4A74.pnach @@ -2,7 +2,7 @@ gametitle=Shinki Genso - Spectral Souls (J)(SLPM-65391) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack (16:9) by Arapapa +author=Arapapa // 16:9 diff --git a/patches/SLPM-65401_F9C5F9B3.pnach b/patches/SLPM-65401_F9C5F9B3.pnach index 1e7d9388..8e2d1379 100644 --- a/patches/SLPM-65401_F9C5F9B3.pnach +++ b/patches/SLPM-65401_F9C5F9B3.pnach @@ -2,7 +2,7 @@ gametitle=Tengai Makyou II - Manji Maru (Tsujyo Level Shiyou) (J)(SLPM-65401) an [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65402_F9C5F9B3.pnach b/patches/SLPM-65402_F9C5F9B3.pnach index 1e7d9388..8e2d1379 100644 --- a/patches/SLPM-65402_F9C5F9B3.pnach +++ b/patches/SLPM-65402_F9C5F9B3.pnach @@ -2,7 +2,7 @@ gametitle=Tengai Makyou II - Manji Maru (Tsujyo Level Shiyou) (J)(SLPM-65401) an [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65407_9D5125EA.pnach b/patches/SLPM-65407_9D5125EA.pnach index c3cf6c22..5f82cf27 100644 --- a/patches/SLPM-65407_9D5125EA.pnach +++ b/patches/SLPM-65407_9D5125EA.pnach @@ -2,7 +2,7 @@ gametitle=Transformers Tatakai (J)(SLPM-65407) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65411_1483D6B9.pnach b/patches/SLPM-65411_1483D6B9.pnach index 18bded44..714756a4 100644 --- a/patches/SLPM-65411_1483D6B9.pnach +++ b/patches/SLPM-65411_1483D6B9.pnach @@ -2,7 +2,7 @@ gametitle=Onimusha Buraiden [NTSC-J] [SLPM-65411] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by VIRGIN KLM (NTSC-J by Arapapa) +author=VIRGIN KLM (NTSC-J by Arapapa) //Widescreen patch=1,EE,204fa0c0,extended,3F400000 //3F800000 diff --git a/patches/SLPM-65413_71320CA8.pnach b/patches/SLPM-65413_71320CA8.pnach index 3056fd8e..970e96a2 100644 --- a/patches/SLPM-65413_71320CA8.pnach +++ b/patches/SLPM-65413_71320CA8.pnach @@ -2,7 +2,7 @@ gametitle=Onimusha 3 [NTSC-J] (SLPM-65413]) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen correction by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 //gameplay diff --git a/patches/SLPM-65419_09FDD6D7.pnach b/patches/SLPM-65419_09FDD6D7.pnach index 637b867a..4eb1407b 100644 --- a/patches/SLPM-65419_09FDD6D7.pnach +++ b/patches/SLPM-65419_09FDD6D7.pnach @@ -2,7 +2,7 @@ gametitle=Woody Woodpecker - Escape from Buzz Buzzard Park (K)(SLPM-65419) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65427_005B2002.pnach b/patches/SLPM-65427_005B2002.pnach index afaaeb5c..e52cb38f 100644 --- a/patches/SLPM-65427_005B2002.pnach +++ b/patches/SLPM-65427_005B2002.pnach @@ -2,7 +2,7 @@ gametitle=RS II - Riding Spirits (J)(SLPM-65427) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65431_D7AE2B57.pnach b/patches/SLPM-65431_D7AE2B57.pnach index 672b5414..80cca302 100644 --- a/patches/SLPM-65431_D7AE2B57.pnach +++ b/patches/SLPM-65431_D7AE2B57.pnach @@ -2,7 +2,7 @@ gametitle=Sonic Heroes (NTSC-J)(SLPM-65431) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //Widescreen hack 16:9 patch=1,EE,00167bcc,word,10000042 //10000041 diff --git a/patches/SLPM-65432_6B5DBC22.pnach b/patches/SLPM-65432_6B5DBC22.pnach index acfcb07b..eafbb3cb 100644 --- a/patches/SLPM-65432_6B5DBC22.pnach +++ b/patches/SLPM-65432_6B5DBC22.pnach @@ -2,7 +2,7 @@ gametitle=J-League Winning Eleven Tactics (J)(SLPM-65432) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65433_032B4616.pnach b/patches/SLPM-65433_032B4616.pnach index 4106053c..8d4b4c90 100644 --- a/patches/SLPM-65433_032B4616.pnach +++ b/patches/SLPM-65433_032B4616.pnach @@ -2,7 +2,7 @@ gametitle=K-1 World Grand Prix 2003 (J)(SLPM-65433) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65434_AC9F1FC0.pnach b/patches/SLPM-65434_AC9F1FC0.pnach index ddc9bb5c..58dd556c 100644 --- a/patches/SLPM-65434_AC9F1FC0.pnach +++ b/patches/SLPM-65434_AC9F1FC0.pnach @@ -2,7 +2,7 @@ gametitle=Battle Gear 3 (SLPM_65434) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,202C9B74,word,3F400000 diff --git a/patches/SLPM-65441_A0CD42B4.pnach b/patches/SLPM-65441_A0CD42B4.pnach index 6042ea73..db79833d 100644 --- a/patches/SLPM-65441_A0CD42B4.pnach +++ b/patches/SLPM-65441_A0CD42B4.pnach @@ -2,7 +2,7 @@ gametitle=Ashita no Joe - Masshiro ni Moe Tsukiro! (J)(SLPM-65441) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65442_AAF10C7F.pnach b/patches/SLPM-65442_AAF10C7F.pnach index 9f25cca9..69183d87 100644 --- a/patches/SLPM-65442_AAF10C7F.pnach +++ b/patches/SLPM-65442_AAF10C7F.pnach @@ -2,7 +2,7 @@ gametitle=Terminator 3 - Rise of the Machines (J)(SLPM-65442) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65443_CF26A74E.pnach b/patches/SLPM-65443_CF26A74E.pnach index 3c5ca01e..451667c1 100644 --- a/patches/SLPM-65443_CF26A74E.pnach +++ b/patches/SLPM-65443_CF26A74E.pnach @@ -2,7 +2,7 @@ gametitle=Front Mission 4 (J)(SLPM-65443) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by 99skull (NTSC-J by Arapapa) +author=99skull (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-65444_A36CFF6C.pnach b/patches/SLPM-65444_A36CFF6C.pnach index 65a6e60f..714de680 100644 --- a/patches/SLPM-65444_A36CFF6C.pnach +++ b/patches/SLPM-65444_A36CFF6C.pnach @@ -2,7 +2,7 @@ gametitle=Castlevania: Lament of Innocence [NTSC-J] (SLPM-65444) [Widescreen 16:9] gsaspectratio=16:9 -comment==Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 (pnach by nemesis2000) //gameplay patch=1,EE,006e7464,word,3c013f40 //hor value diff --git a/patches/SLPM-65445_5AF37531.pnach b/patches/SLPM-65445_5AF37531.pnach index 8aaa4fe0..6af6a98e 100644 --- a/patches/SLPM-65445_5AF37531.pnach +++ b/patches/SLPM-65445_5AF37531.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou Powerful Pro Yakyuu 10 Chou Ketteiban - 2003 Memorial(SLPM-654 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Tokman5 +author=Tokman5 //X-Fov patch=1,EE,002D16FC,word,3F19999A //3F4CCCCD \ No newline at end of file diff --git a/patches/SLPM-65447_3FB419FD.pnach b/patches/SLPM-65447_3FB419FD.pnach index 80fd9b8b..8e758235 100644 --- a/patches/SLPM-65447_3FB419FD.pnach +++ b/patches/SLPM-65447_3FB419FD.pnach @@ -2,7 +2,7 @@ gametitle=Kunoichi [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,21a3eac0,extended,3f248b43 diff --git a/patches/SLPM-65450_970FEAB8.pnach b/patches/SLPM-65450_970FEAB8.pnach index 90306a87..cc523440 100644 --- a/patches/SLPM-65450_970FEAB8.pnach +++ b/patches/SLPM-65450_970FEAB8.pnach @@ -2,7 +2,7 @@ gametitle=Detective Gakuen Q (NTSC-J)(SLPM-65450) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Characters ratio fix diff --git a/patches/SLPM-65458_EDBA4A98.pnach b/patches/SLPM-65458_EDBA4A98.pnach index 924027c4..b9c6fe2f 100644 --- a/patches/SLPM-65458_EDBA4A98.pnach +++ b/patches/SLPM-65458_EDBA4A98.pnach @@ -2,7 +2,7 @@ gametitle=Kurogane no Houkou 2 - Warship Commander (J)(SLPM-65458) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65460_3141C0EB.pnach b/patches/SLPM-65460_3141C0EB.pnach index 252a5609..355fcaad 100644 --- a/patches/SLPM-65460_3141C0EB.pnach +++ b/patches/SLPM-65460_3141C0EB.pnach @@ -2,7 +2,7 @@ gametitle=Conflict Delta - Wangan Sensou 1991 (J)(SLPM-65460) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65462_0E762E8D.pnach b/patches/SLPM-65462_0E762E8D.pnach index 77c66adc..d9e7db40 100644 --- a/patches/SLPM-65462_0E762E8D.pnach +++ b/patches/SLPM-65462_0E762E8D.pnach @@ -2,7 +2,7 @@ gametitle=Shin Megami Tensei III Nocturne Maniax [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,202F5034,extended,3fc65461 //No interlacing by asasega diff --git a/patches/SLPM-65463_78865F28.pnach b/patches/SLPM-65463_78865F28.pnach index 3458faf5..97f80bc1 100644 --- a/patches/SLPM-65463_78865F28.pnach +++ b/patches/SLPM-65463_78865F28.pnach @@ -2,7 +2,7 @@ gametitle=Rocky (J)(SLPM-65463) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65470_D56DA4AB.pnach b/patches/SLPM-65470_D56DA4AB.pnach index 159d6d00..1f8cbca5 100644 --- a/patches/SLPM-65470_D56DA4AB.pnach +++ b/patches/SLPM-65470_D56DA4AB.pnach @@ -2,7 +2,7 @@ gametitle=Firefighter F.D. 18 (J)(SLPM-65470) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65471_4608D01A.pnach b/patches/SLPM-65471_4608D01A.pnach index b1a742ab..45a35fd4 100644 --- a/patches/SLPM-65471_4608D01A.pnach +++ b/patches/SLPM-65471_4608D01A.pnach @@ -2,7 +2,7 @@ gametitle=Need for Speed Underground (J)(SLPM-65471) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-Kby Arapapa) +author=nemesis2000 (NTSC-Kby Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-65480_B2B71761.pnach b/patches/SLPM-65480_B2B71761.pnach index e2b6bdc6..e94d4c4e 100644 --- a/patches/SLPM-65480_B2B71761.pnach +++ b/patches/SLPM-65480_B2B71761.pnach @@ -2,7 +2,7 @@ gametitle=Michigan [NTSC-J] (SLPM-65480) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 +author=nemesis2000 // Added conditions for PAL50 and PAL60 (ElHecht) // 16:9 diff --git a/patches/SLPM-65483_F27FDE85.pnach b/patches/SLPM-65483_F27FDE85.pnach index 3a8b5b93..0b8d3a7c 100644 --- a/patches/SLPM-65483_F27FDE85.pnach +++ b/patches/SLPM-65483_F27FDE85.pnach @@ -2,7 +2,7 @@ gametitle=Secret Weapons Over Normandy (J)(SLPM-65483) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65486_2156763B.pnach b/patches/SLPM-65486_2156763B.pnach index 46bcfa6e..94ae7492 100644 --- a/patches/SLPM-65486_2156763B.pnach +++ b/patches/SLPM-65486_2156763B.pnach @@ -2,7 +2,7 @@ gametitle=AirForce Delta - Blue Wing Knight (J)(SLPM-65486) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65494_AF95D8FC.pnach b/patches/SLPM-65494_AF95D8FC.pnach index 2050fb34..d03e6b3d 100644 --- a/patches/SLPM-65494_AF95D8FC.pnach +++ b/patches/SLPM-65494_AF95D8FC.pnach @@ -2,7 +2,7 @@ gametitle=Fuun Shinsengumi [NTSC-J] (SLPM-65494) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //16:9 patch=1,EE,001476a0,word,3c023f40 //3c023f80 diff --git a/patches/SLPM-65495_6232D656.pnach b/patches/SLPM-65495_6232D656.pnach index 4bd738e4..fa11cda8 100644 --- a/patches/SLPM-65495_6232D656.pnach +++ b/patches/SLPM-65495_6232D656.pnach @@ -4,7 +4,7 @@ gametitle=Monster Hunter (J) (SLPM-65495) (English patched) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) patch=1,EE,00169d24,word,3c023ff3 //3c023fb6 patch=1,EE,00169d2c,word,3442cf35 //3442db6e \ No newline at end of file diff --git a/patches/SLPM-65495_C2008A92.pnach b/patches/SLPM-65495_C2008A92.pnach index 76b628f8..b454ff43 100644 --- a/patches/SLPM-65495_C2008A92.pnach +++ b/patches/SLPM-65495_C2008A92.pnach @@ -2,7 +2,7 @@ gametitle=Monster Hunter (J) (SLPM-65495) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //Wide hack 16:9 patch=1,EE,00169d24,word,3c023ff3 //3c023fb6 diff --git a/patches/SLPM-65498_10C8E747.pnach b/patches/SLPM-65498_10C8E747.pnach index d0a0a0f5..68df12f0 100644 --- a/patches/SLPM-65498_10C8E747.pnach +++ b/patches/SLPM-65498_10C8E747.pnach @@ -2,7 +2,7 @@ gametitle= Winning Eleven 7 - International (NTSC-J) (SLPM-65498) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,010c458c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-65499_0DA820C2.pnach b/patches/SLPM-65499_0DA820C2.pnach index 9a6ae8a8..0c47bcb3 100644 --- a/patches/SLPM-65499_0DA820C2.pnach +++ b/patches/SLPM-65499_0DA820C2.pnach @@ -2,7 +2,7 @@ gametitle=Bloody Roar 4 (NTSC-J)(SLPM-65499) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by paul_met (NTSC-J by Arapapa) +author=paul_met (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-65501_661BDA62.pnach b/patches/SLPM-65501_661BDA62.pnach index af5e814a..3c05d379 100644 --- a/patches/SLPM-65501_661BDA62.pnach +++ b/patches/SLPM-65501_661BDA62.pnach @@ -2,7 +2,7 @@ gametitle=Frogger Rescue (J)(SLPM-65501) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65506_150529ED.pnach b/patches/SLPM-65506_150529ED.pnach index 81e6ded5..5151bb6a 100644 --- a/patches/SLPM-65506_150529ED.pnach +++ b/patches/SLPM-65506_150529ED.pnach @@ -2,7 +2,7 @@ gametitle=Cool Girl (J)(SLPM-65506) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65514_C37C1B76.pnach b/patches/SLPM-65514_C37C1B76.pnach index 46ed5390..b8f04da4 100644 --- a/patches/SLPM-65514_C37C1B76.pnach +++ b/patches/SLPM-65514_C37C1B76.pnach @@ -3,7 +3,7 @@ gametitle=Kaido Battle 2 - Chain Reaction [NTSC-J] (SLPM-65514) [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -description=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00149200,word,3c023f40 [No-Interlacing] diff --git a/patches/SLPM-65517_19487E13.pnach b/patches/SLPM-65517_19487E13.pnach index ec9fe273..e0ef9186 100644 --- a/patches/SLPM-65517_19487E13.pnach +++ b/patches/SLPM-65517_19487E13.pnach @@ -2,7 +2,7 @@ gametitle=Sengoku Musou [NTSC-J] [SLPM-65517] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 diff --git a/patches/SLPM-65526_9E2ADF9C.pnach b/patches/SLPM-65526_9E2ADF9C.pnach index ace4f984..5c7875b5 100644 --- a/patches/SLPM-65526_9E2ADF9C.pnach +++ b/patches/SLPM-65526_9E2ADF9C.pnach @@ -2,7 +2,7 @@ gametitle=Dororo [NTSC-J] (SLPM-65526) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant patch=1,EE,001b8cbc,word,3c023f06 //3c023f33 patch=1,EE,001b8cc4,word,34426666 //34423333 diff --git a/patches/SLPM-65530_D70C3195.pnach b/patches/SLPM-65530_D70C3195.pnach index 420deca8..93299a9b 100644 --- a/patches/SLPM-65530_D70C3195.pnach +++ b/patches/SLPM-65530_D70C3195.pnach @@ -2,7 +2,7 @@ gametitle=J-League Pro Soccer Club o Tsukurou! '04 (J)(SLPM-65530) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65551_36B523BC.pnach b/patches/SLPM-65551_36B523BC.pnach index 9e20ea82..96910be0 100644 --- a/patches/SLPM-65551_36B523BC.pnach +++ b/patches/SLPM-65551_36B523BC.pnach @@ -2,7 +2,7 @@ gametitle=Astro Boy - Tetsuwan Atom (J)(v1.00) (SLPM-65551) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65554_28234D3E.pnach b/patches/SLPM-65554_28234D3E.pnach index 89309136..8d88c9ec 100644 --- a/patches/SLPM-65554_28234D3E.pnach +++ b/patches/SLPM-65554_28234D3E.pnach @@ -2,7 +2,7 @@ gametitle=Korokke! Ban-Ou no Kiki o Sukue (J)(SLPM-65554) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65555_09C5BB8F.pnach b/patches/SLPM-65555_09C5BB8F.pnach index f24556be..5dfdadf8 100644 --- a/patches/SLPM-65555_09C5BB8F.pnach +++ b/patches/SLPM-65555_09C5BB8F.pnach @@ -2,7 +2,7 @@ gametitle=Dragon Quest V - Tenkuu no Hanayome [NTSC-J] (SLPM-65555) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by kerostar (English patch) +author=kerostar (English patch) //16:9 patch=1,EE,2081B5E0,extended,3F400000 //3F800000 town diff --git a/patches/SLPM-65555_72FBD360.pnach b/patches/SLPM-65555_72FBD360.pnach index f24556be..5dfdadf8 100644 --- a/patches/SLPM-65555_72FBD360.pnach +++ b/patches/SLPM-65555_72FBD360.pnach @@ -2,7 +2,7 @@ gametitle=Dragon Quest V - Tenkuu no Hanayome [NTSC-J] (SLPM-65555) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by kerostar (English patch) +author=kerostar (English patch) //16:9 patch=1,EE,2081B5E0,extended,3F400000 //3F800000 town diff --git a/patches/SLPM-65555_B64E9939.pnach b/patches/SLPM-65555_B64E9939.pnach index bf8f00aa..d3762ffc 100644 --- a/patches/SLPM-65555_B64E9939.pnach +++ b/patches/SLPM-65555_B64E9939.pnach @@ -2,7 +2,7 @@ gametitle=Dragon Quest V - Tenkuu no Hanayome [NTSC-J] (SLPM-65555) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by kerostar (Font fix by Arapapa) +author=kerostar (Font fix by Arapapa) //16:9 patch=1,EE,2081B5E0,extended,3F400000 //3F800000 town diff --git a/patches/SLPM-65555_E09E454C.pnach b/patches/SLPM-65555_E09E454C.pnach index 2f0774e6..9d648b6d 100644 --- a/patches/SLPM-65555_E09E454C.pnach +++ b/patches/SLPM-65555_E09E454C.pnach @@ -3,7 +3,7 @@ gametitle=Dragon Quest V - Bride of the Sky (English Patched) (NTSC-J) [SLPM-655 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by kerostar (Font fix by Arapapa) +author=kerostar (Font fix by Arapapa) //16:9 patch=1,EE,2081B5E0,extended,3F400000 //3F800000 town diff --git a/patches/SLPM-65565_B43DC1BA.pnach b/patches/SLPM-65565_B43DC1BA.pnach index bc62fb73..49d71460 100644 --- a/patches/SLPM-65565_B43DC1BA.pnach +++ b/patches/SLPM-65565_B43DC1BA.pnach @@ -2,7 +2,7 @@ gametitle=Shin Sangoku Musou 3 Empires (J)(SLPM-65565) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-65571_E2E6AD46.pnach b/patches/SLPM-65571_E2E6AD46.pnach index edf84044..e981af2a 100644 --- a/patches/SLPM-65571_E2E6AD46.pnach +++ b/patches/SLPM-65571_E2E6AD46.pnach @@ -2,7 +2,7 @@ gametitle=Shinten Makai - Generation of Chaos IV (Limited Edition) (J)(SLPM-6557 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65572_86B7A8EF.pnach b/patches/SLPM-65572_86B7A8EF.pnach index 5f26eb3f..ef1e2be1 100644 --- a/patches/SLPM-65572_86B7A8EF.pnach +++ b/patches/SLPM-65572_86B7A8EF.pnach @@ -2,7 +2,7 @@ gametitle=Shinten Makai - Generation of Chaos IV (J)(SLPM-65572) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65574_9BF472B8.pnach b/patches/SLPM-65574_9BF472B8.pnach index f1aa6b37..f096642d 100644 --- a/patches/SLPM-65574_9BF472B8.pnach +++ b/patches/SLPM-65574_9BF472B8.pnach @@ -2,7 +2,7 @@ gametitle=Silent Hill 4 - The Room [NTSC-J] (SLPM-65574) [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,2045a2b4,extended,3f400000 patch=1,EE,2045a2b8,extended,3f15fd8b diff --git a/patches/SLPM-65575_78E20421.pnach b/patches/SLPM-65575_78E20421.pnach index a29af014..ef5a8dac 100644 --- a/patches/SLPM-65575_78E20421.pnach +++ b/patches/SLPM-65575_78E20421.pnach @@ -2,7 +2,7 @@ gametitle=Crimson Tears (NTSC-J)(SLPM-65575) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) //Widescreen hack 16:9 //aabf023c 00008544 abaa4334 diff --git a/patches/SLPM-65580_84AAB204.pnach b/patches/SLPM-65580_84AAB204.pnach index 90a4e5ef..05b85fb7 100644 --- a/patches/SLPM-65580_84AAB204.pnach +++ b/patches/SLPM-65580_84AAB204.pnach @@ -2,7 +2,7 @@ gametitle=Crash Bandicoot Bakusou! Nitro Kart [NTSC-J] (SLPM-65580) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,005854a8,word,3c023f17 diff --git a/patches/SLPM-65581_D6EF17F3.pnach b/patches/SLPM-65581_D6EF17F3.pnach index 06e224f5..3a742ea2 100644 --- a/patches/SLPM-65581_D6EF17F3.pnach +++ b/patches/SLPM-65581_D6EF17F3.pnach @@ -2,7 +2,7 @@ gametitle=Haunted Mansion (J)(SLPM-65581) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65590_F93AB3D0.pnach b/patches/SLPM-65590_F93AB3D0.pnach index 9d2de9c9..fd2ddc8d 100644 --- a/patches/SLPM-65590_F93AB3D0.pnach +++ b/patches/SLPM-65590_F93AB3D0.pnach @@ -2,7 +2,7 @@ gametitle=Densha de Go! Final (J)(SLPM-65590) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65596_ACBB45C3.pnach b/patches/SLPM-65596_ACBB45C3.pnach index 05cc9f04..fa2e3e41 100644 --- a/patches/SLPM-65596_ACBB45C3.pnach +++ b/patches/SLPM-65596_ACBB45C3.pnach @@ -2,7 +2,7 @@ gametitle=Juuni Kokuki - Kakukakutaru Oudou, Kouryoku no Uka (J)(SLPM-65596) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65597_44865CE1.pnach b/patches/SLPM-65597_44865CE1.pnach index bd9c9e3b..50c350e9 100644 --- a/patches/SLPM-65597_44865CE1.pnach +++ b/patches/SLPM-65597_44865CE1.pnach @@ -2,7 +2,7 @@ gametitle=Digital Devil Saga Avatar Tuner [SLPM-65597] [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,20324264,extended,3fc65461 diff --git a/patches/SLPM-65602_9F4A4C47.pnach b/patches/SLPM-65602_9F4A4C47.pnach index 23fbc2af..bc24b1f0 100644 --- a/patches/SLPM-65602_9F4A4C47.pnach +++ b/patches/SLPM-65602_9F4A4C47.pnach @@ -2,7 +2,7 @@ gametitle=King of Colosseum II (J)(SLPM-65602) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65603_F42DD317.pnach b/patches/SLPM-65603_F42DD317.pnach index 9c987df9..9c5938cd 100644 --- a/patches/SLPM-65603_F42DD317.pnach +++ b/patches/SLPM-65603_F42DD317.pnach @@ -2,7 +2,7 @@ gametitle=Run Like Hell (J)(SLPM-65603) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-65612_A8901AD6.pnach b/patches/SLPM-65612_A8901AD6.pnach index 59098004..c87fd1dd 100644 --- a/patches/SLPM-65612_A8901AD6.pnach +++ b/patches/SLPM-65612_A8901AD6.pnach @@ -2,7 +2,7 @@ gametitle=Harry Potter to Azkaban no Shuujin (J)(SLPM-65612) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Devina and Arapapa +author=Devina and Arapapa //Widescreen hack 16:9 //to widen the HUD to hide unwanted elements, diff --git a/patches/SLPM-65613_B91DC726.pnach b/patches/SLPM-65613_B91DC726.pnach index 0de92a34..a2970287 100644 --- a/patches/SLPM-65613_B91DC726.pnach +++ b/patches/SLPM-65613_B91DC726.pnach @@ -2,7 +2,7 @@ gametitle=Yu-Gi-Oh! Capsule Monster Coliseum (J)(SLPM-65613) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65614_6130F707.pnach b/patches/SLPM-65614_6130F707.pnach index fef369e1..90e5636e 100644 --- a/patches/SLPM-65614_6130F707.pnach +++ b/patches/SLPM-65614_6130F707.pnach @@ -2,7 +2,7 @@ gametitle=Need for Speed - Underground J-Tune (EA Best Hits) [NTSC-J] [SLPM-6561 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0050c5a8,word,3f2aaaaa //3f000000 patch=1,EE,0050c5b0,word,3f2aaaaa //3f000000 diff --git a/patches/SLPM-65630_92F4C42E.pnach b/patches/SLPM-65630_92F4C42E.pnach index 92601ae2..29a07e5d 100644 --- a/patches/SLPM-65630_92F4C42E.pnach +++ b/patches/SLPM-65630_92F4C42E.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou Powerful Pro Yakyuu 11 (J)(SLPM-65630) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //X-Fov patch=1,EE,002efe0c,word,3f19999a //3f4ccccd diff --git a/patches/SLPM-65632_7D2A0B53.pnach b/patches/SLPM-65632_7D2A0B53.pnach index f278be80..88227df0 100644 --- a/patches/SLPM-65632_7D2A0B53.pnach +++ b/patches/SLPM-65632_7D2A0B53.pnach @@ -2,7 +2,7 @@ gametitle=Virtua Fighter Cyber Generation - Judgment Six No Yabou (J)(SLPM-65632 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65635_FA861ED2.pnach b/patches/SLPM-65635_FA861ED2.pnach index 31a884f7..645cca20 100644 --- a/patches/SLPM-65635_FA861ED2.pnach +++ b/patches/SLPM-65635_FA861ED2.pnach @@ -2,7 +2,7 @@ gametitle=Bakuen Kakusei - Neverland Senki Zero [NTSC-J] (SLPM-65635) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //16:9 patch=1,EE,001062B8,word,3c013f40 //00000000 diff --git a/patches/SLPM-65637_3B1E61D6.pnach b/patches/SLPM-65637_3B1E61D6.pnach index 0418e6d0..8b3b1a86 100644 --- a/patches/SLPM-65637_3B1E61D6.pnach +++ b/patches/SLPM-65637_3B1E61D6.pnach @@ -2,7 +2,7 @@ gametitle=Rakugaki Oukoku 2 - Majo no Tataki (J)(SLPM-65637) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65643_2AF40F67.pnach b/patches/SLPM-65643_2AF40F67.pnach index 2b3b30d3..8e2ea3ce 100644 --- a/patches/SLPM-65643_2AF40F67.pnach +++ b/patches/SLPM-65643_2AF40F67.pnach @@ -2,7 +2,7 @@ gametitle=RockMan X Command Mission [NTSC-J] (SLPM-65643) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0010ea24,word,3c013f40 //hor value patch=1,EE,0010ea28,word,44810000 diff --git a/patches/SLPM-65652_57782923.pnach b/patches/SLPM-65652_57782923.pnach index a04586c8..e9dd3ac6 100644 --- a/patches/SLPM-65652_57782923.pnach +++ b/patches/SLPM-65652_57782923.pnach @@ -2,7 +2,7 @@ gametitle=Kowloon Youma Gakuenki (NTSC-J)(SLPM-65652) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65655_334BBC45.pnach b/patches/SLPM-65655_334BBC45.pnach index 881ecd38..809a0f7c 100644 --- a/patches/SLPM-65655_334BBC45.pnach +++ b/patches/SLPM-65655_334BBC45.pnach @@ -2,7 +2,7 @@ gametitle=Disney-Pixar Finding Nemo (Yuke's the Best) (J)(SLPM-65655) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65657_6FE4B28C.pnach b/patches/SLPM-65657_6FE4B28C.pnach index 74e4d7b0..61760322 100644 --- a/patches/SLPM-65657_6FE4B28C.pnach +++ b/patches/SLPM-65657_6FE4B28C.pnach @@ -2,7 +2,7 @@ gametitle= Winning Eleven 8 (NTSC-J) (SLPM-65657) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,0010464c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-65669_C4F46C8A.pnach b/patches/SLPM-65669_C4F46C8A.pnach index 02f32ec5..fbf10fdc 100644 --- a/patches/SLPM-65669_C4F46C8A.pnach +++ b/patches/SLPM-65669_C4F46C8A.pnach @@ -2,7 +2,7 @@ gametitle=Spectral Force - Radical Elements (J)(SLPM-65669) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65670_BE30EE2D.pnach b/patches/SLPM-65670_BE30EE2D.pnach index 43722dea..68aa1e31 100644 --- a/patches/SLPM-65670_BE30EE2D.pnach +++ b/patches/SLPM-65670_BE30EE2D.pnach @@ -2,7 +2,7 @@ gametitle=Aqua Kids (J)(SLPM-65670) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPM-65688_9685E636.pnach b/patches/SLPM-65688_9685E636.pnach index e309b9f8..52d34d25 100644 --- a/patches/SLPM-65688_9685E636.pnach +++ b/patches/SLPM-65688_9685E636.pnach @@ -2,7 +2,7 @@ gametitle=Berserk - Millennium Falcon Hen Seima Senki no Shou (J)(SLPM-65688) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65695_C0451DE2.pnach b/patches/SLPM-65695_C0451DE2.pnach index a9886004..7faecd2b 100644 --- a/patches/SLPM-65695_C0451DE2.pnach +++ b/patches/SLPM-65695_C0451DE2.pnach @@ -2,7 +2,7 @@ gametitle=Hard Luck - Return of the Heroes (J)(SLPM-65695) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65697_6479C20F.pnach b/patches/SLPM-65697_6479C20F.pnach index ca0caee0..0e96e6f5 100644 --- a/patches/SLPM-65697_6479C20F.pnach +++ b/patches/SLPM-65697_6479C20F.pnach @@ -2,7 +2,7 @@ gametitle=Shrek 2 (J)(SLPM-65697) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65700_CB56E6FB.pnach b/patches/SLPM-65700_CB56E6FB.pnach index 6d0f8539..ae11a647 100644 --- a/patches/SLPM-65700_CB56E6FB.pnach +++ b/patches/SLPM-65700_CB56E6FB.pnach @@ -2,7 +2,7 @@ gametitle=Kengo 3 [NTSC-J] (SLPM_657.00) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 (Memory hack) patch=1,EE,20868E38,extended,3F400000 //3F800000 (Increases hor. axis) diff --git a/patches/SLPM-65704_CD1EC9D0.pnach b/patches/SLPM-65704_CD1EC9D0.pnach index bf9fe385..c7f556b0 100644 --- a/patches/SLPM-65704_CD1EC9D0.pnach +++ b/patches/SLPM-65704_CD1EC9D0.pnach @@ -2,7 +2,7 @@ gametitle=Standard Daisenryaku - Dengekisen (J)(SLPM-65704) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65718_DBD2230B.pnach b/patches/SLPM-65718_DBD2230B.pnach index cabbf43c..1d186f63 100644 --- a/patches/SLPM-65718_DBD2230B.pnach +++ b/patches/SLPM-65718_DBD2230B.pnach @@ -2,7 +2,7 @@ gametitle=Sengoku Musou: Moushouden [NTSC-J] (SLPM-65718) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (Pnach by Little Giant) +author=ElHecht (Pnach by Little Giant) // 16:9 patch=1,EE,00141008,word,3c024328 // 3c024360 zoom diff --git a/patches/SLPM-65719_BB2E845F.pnach b/patches/SLPM-65719_BB2E845F.pnach index 37f3c5b6..3cc49f2b 100644 --- a/patches/SLPM-65719_BB2E845F.pnach +++ b/patches/SLPM-65719_BB2E845F.pnach @@ -2,7 +2,7 @@ gametitle=Burnout 3 - Takedown (J) (SLPM-65719) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by Aero_ (NTSC-J by Arapapa) +author=Aero_ (NTSC-J by Arapapa) diff --git a/patches/SLPM-65723_960D74D7.pnach b/patches/SLPM-65723_960D74D7.pnach index 25c4f1c0..92a5d48c 100644 --- a/patches/SLPM-65723_960D74D7.pnach +++ b/patches/SLPM-65723_960D74D7.pnach @@ -1,14 +1,9 @@ -gametitle=Van Helsing (J)(SLPM-65723) +gametitle=Van Helsing NTSC-J SLPM-65723 960D74D7 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa - -//Widescreen hack 16:9 - -patch=1,EE,002ec1b0,word,3fe38e38 //3faaaaaa - -//X-Fov (include 2D) -//patch=1,EE,0023dfc4,word,3c013ec0 //3c013f00 - - +author=Arapapa & Gabominated +description=Widescreen hack +patch=1,EE,002EC1B0,word,3fE38E39 //3fAAAAAA +patch=1,EE,002EC1B4,word,C2D55554 //00000000 +patch=1,EE,002EC1B8,word,443AAAAB //44200000 \ No newline at end of file diff --git a/patches/SLPM-65724_E9958CE3.pnach b/patches/SLPM-65724_E9958CE3.pnach index 81f646b3..9b46031b 100644 --- a/patches/SLPM-65724_E9958CE3.pnach +++ b/patches/SLPM-65724_E9958CE3.pnach @@ -2,7 +2,7 @@ gametitle=ChoroQ Works (NTSC-J) (SLPM_657.24) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas // 16:9 patch=1,EE,001FFB74,word,3C013F40 //00000000 hor fov diff --git a/patches/SLPM-65730_4FF01A82.pnach b/patches/SLPM-65730_4FF01A82.pnach index 925fe533..470d7bba 100644 --- a/patches/SLPM-65730_4FF01A82.pnach +++ b/patches/SLPM-65730_4FF01A82.pnach @@ -2,7 +2,7 @@ gametitle=RockMan X8 [NTSC-J] (SLPM-65730) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0010f10c,word,3c013f40 //hor value patch=1,EE,0010f110,word,44810000 diff --git a/patches/SLPM-65739_625AF967.pnach b/patches/SLPM-65739_625AF967.pnach index 2712714b..f1c02788 100644 --- a/patches/SLPM-65739_625AF967.pnach +++ b/patches/SLPM-65739_625AF967.pnach @@ -2,7 +2,7 @@ gametitle=The Tim Burton's Nightmare before Christmas (J)(SLPM-65739) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa comment=Thank you devina40 //Widescreen hack 16:9 diff --git a/patches/SLPM-65740_03A58E82.pnach b/patches/SLPM-65740_03A58E82.pnach index 0a1517c8..4684c451 100644 --- a/patches/SLPM-65740_03A58E82.pnach +++ b/patches/SLPM-65740_03A58E82.pnach @@ -2,7 +2,7 @@ gametitle= J-League Winning Eleven 8 - Asia Championship (NTSC-J) (SLPM-65740) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,00104634,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-65749_696400C3.pnach b/patches/SLPM-65749_696400C3.pnach index ef14d7de..7cac583a 100644 --- a/patches/SLPM-65749_696400C3.pnach +++ b/patches/SLPM-65749_696400C3.pnach @@ -2,7 +2,7 @@ gametitle=Zoids Infinity (J)(SLPM-65749) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65759_4D5BB65A.pnach b/patches/SLPM-65759_4D5BB65A.pnach index 9843597f..276f21e8 100644 --- a/patches/SLPM-65759_4D5BB65A.pnach +++ b/patches/SLPM-65759_4D5BB65A.pnach @@ -2,7 +2,7 @@ gametitle=Mr. Incredible (J)(SLPM-65759) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Sergx12 (NTSC-J by Arpapa) +author=sergx12 (NTSC-J by Arpapa) //Gameplay 16:9 //003f023c 00008244 8e3c033c diff --git a/patches/SLPM-65761_9717AB67.pnach b/patches/SLPM-65761_9717AB67.pnach index 43df0a6d..28e30549 100644 --- a/patches/SLPM-65761_9717AB67.pnach +++ b/patches/SLPM-65761_9717AB67.pnach @@ -2,7 +2,7 @@ gametitle=Kousoku Kidoutai - World Super Police (J)(SLPM-65761) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65788_7CC133E9.pnach b/patches/SLPM-65788_7CC133E9.pnach index 98e31bb4..162bf714 100644 --- a/patches/SLPM-65788_7CC133E9.pnach +++ b/patches/SLPM-65788_7CC133E9.pnach @@ -2,7 +2,7 @@ gametitle= Winning Eleven 8 - Liveware Evolution (NTSC-J) (SLPM_65788) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,001046bc,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-65790_0481AD8A.pnach b/patches/SLPM-65790_0481AD8A.pnach index 3c584829..030d0c35 100644 --- a/patches/SLPM-65790_0481AD8A.pnach +++ b/patches/SLPM-65790_0481AD8A.pnach @@ -2,7 +2,7 @@ gametitle=Metal Gear Solid 3 Snake Eater (NTSC-J) [SLPM-65790] [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,2020257C,extended,3F400000 diff --git a/patches/SLPM-65791_F293D7F6.pnach b/patches/SLPM-65791_F293D7F6.pnach index 8a343512..218236b9 100644 --- a/patches/SLPM-65791_F293D7F6.pnach +++ b/patches/SLPM-65791_F293D7F6.pnach @@ -2,7 +2,7 @@ gametitle=S.L.A.I. - Steel Lancer Arena International (NTSC-J)(SLPM-65791) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas (NTSC-J by Arapapa) +author=El_Patas (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-65795_E47C1A9C.pnach b/patches/SLPM-65795_E47C1A9C.pnach index 5380d3b3..bdf3a5c7 100644 --- a/patches/SLPM-65795_E47C1A9C.pnach +++ b/patches/SLPM-65795_E47C1A9C.pnach @@ -2,7 +2,7 @@ gametitle=Digital Devil Saga Avatar Tuner 2 [SLPM-65795] [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,2037ED64,extended,3fc65461 diff --git a/patches/SLPM-65804_466D9013.pnach b/patches/SLPM-65804_466D9013.pnach index 99900173..0c9d948c 100644 --- a/patches/SLPM-65804_466D9013.pnach +++ b/patches/SLPM-65804_466D9013.pnach @@ -2,7 +2,7 @@ gametitle=Winning Eleven Tactics - European Club Soccer (J)(SLPM-65804) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65805_98CD9ACA.pnach b/patches/SLPM-65805_98CD9ACA.pnach index 8616cfb1..40b3fc03 100644 --- a/patches/SLPM-65805_98CD9ACA.pnach +++ b/patches/SLPM-65805_98CD9ACA.pnach @@ -2,7 +2,7 @@ gametitle=Godzilla Kaijuu Dairansen - Chikyuu Saishuu Kessen (J)(SLPM-65805) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) patch=1,EE,00243dcc,word,08054684 //e6000124 patch=1,EE,00243dd0,word,00000000 //e6010128 diff --git a/patches/SLPM-65813_950241D3.pnach b/patches/SLPM-65813_950241D3.pnach index ebd97089..4663e444 100644 --- a/patches/SLPM-65813_950241D3.pnach +++ b/patches/SLPM-65813_950241D3.pnach @@ -2,7 +2,7 @@ gametitle=Fuun Bakumatsuden [NTSC-J] (SLPM-65813) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //16:9 patch=1,EE,0014a394,word,3c023f40 //3c02bf80 diff --git a/patches/SLPM-65816_F674431F.pnach b/patches/SLPM-65816_F674431F.pnach index e66b7afb..e65804fc 100644 --- a/patches/SLPM-65816_F674431F.pnach +++ b/patches/SLPM-65816_F674431F.pnach @@ -2,7 +2,7 @@ gametitle=Shin Bakusou Dekotora Densetsu - Tenkatouitsu Chyoujyoukessen (J)(SLPM [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65821_4EC707A6.pnach b/patches/SLPM-65821_4EC707A6.pnach index bb3668d3..e7e7508b 100644 --- a/patches/SLPM-65821_4EC707A6.pnach +++ b/patches/SLPM-65821_4EC707A6.pnach @@ -2,7 +2,7 @@ gametitle=Shinseiki Yuusha Taisen [NTSC-J] (SLPM_658.21) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0017A6C0,word,3C023F40 //3C023F80 (Increases hor. axis) diff --git a/patches/SLPM-65823_C14A522A.pnach b/patches/SLPM-65823_C14A522A.pnach index 5bc88c5c..a1c46573 100644 --- a/patches/SLPM-65823_C14A522A.pnach +++ b/patches/SLPM-65823_C14A522A.pnach @@ -2,7 +2,7 @@ gametitle=Shinsengumi Gunrou-den [NTSC-J] (SLPM-65823) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (pnach by Little Giant) +author=ElHecht (pnach by Little Giant) // 16:9 patch=1,EE,00207b44,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-65825_1F980F7F.pnach b/patches/SLPM-65825_1F980F7F.pnach index ef5e8311..8d5c4e61 100644 --- a/patches/SLPM-65825_1F980F7F.pnach +++ b/patches/SLPM-65825_1F980F7F.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou Powerful Pro Yakyuu 11 Chou Ketteiban (J)(SLPM-65825) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //X-Fov patch=1,EE,002faa74,word,3f19999a //3f4ccccd diff --git a/patches/SLPM-65826_A6BD0DA3.pnach b/patches/SLPM-65826_A6BD0DA3.pnach index 6f06a29d..fd9b303c 100644 --- a/patches/SLPM-65826_A6BD0DA3.pnach +++ b/patches/SLPM-65826_A6BD0DA3.pnach @@ -2,7 +2,7 @@ gametitle=Tsukiyo ni Saraba (SLPM-65826) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by sergx12 (NTSC-J by Arapapa) +author=sergx12 (NTSC-J by Arapapa) // 16:9 //803f013c 00088144 0000a3c7 00000000 00000000 43080046 diff --git a/patches/SLPM-65830_51BF4F00.pnach b/patches/SLPM-65830_51BF4F00.pnach index d3593f29..64ce7608 100644 --- a/patches/SLPM-65830_51BF4F00.pnach +++ b/patches/SLPM-65830_51BF4F00.pnach @@ -2,7 +2,7 @@ gametitle=Ys - Napishtim no Hako (Limited Edition) [NTSC-J] (SLPM-65830) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,00102e34,word,3c013f40 // 00000000 hor fov patch=1,EE,00102e38,word,44810000 // 00000000 diff --git a/patches/SLPM-65831_15FE0ACE.pnach b/patches/SLPM-65831_15FE0ACE.pnach index 3c6b1334..526487df 100644 --- a/patches/SLPM-65831_15FE0ACE.pnach +++ b/patches/SLPM-65831_15FE0ACE.pnach @@ -2,7 +2,7 @@ gametitle=Hello Kitty no PikoPiko Daisakusen(J)(SLPM-65831) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65839_48D3B2D6.pnach b/patches/SLPM-65839_48D3B2D6.pnach index a60c7bfa..0e12d2b1 100644 --- a/patches/SLPM-65839_48D3B2D6.pnach +++ b/patches/SLPM-65839_48D3B2D6.pnach @@ -2,7 +2,7 @@ gametitle=Hanjuku Eiyuu 4 - 7-Jin no Hanjuku Eiyuu (J)(SLPM-65839) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLPM-65861_B87A351F.pnach b/patches/SLPM-65861_B87A351F.pnach index 63c84024..86e4e107 100644 --- a/patches/SLPM-65861_B87A351F.pnach +++ b/patches/SLPM-65861_B87A351F.pnach @@ -2,7 +2,7 @@ gametitle=Shinki Genso - Spectral Souls II (J)(SLPM-65861) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack by Arapapa +author=Arapapa // Widescreen 16:9 diff --git a/patches/SLPM-65863_DB34F377.pnach b/patches/SLPM-65863_DB34F377.pnach index 6af6ab21..55659f66 100644 --- a/patches/SLPM-65863_DB34F377.pnach +++ b/patches/SLPM-65863_DB34F377.pnach @@ -2,7 +2,7 @@ gametitle=D1 Professional Drift Grand Prix Series (J)(SLPM-65863) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65868_0C4DA2CF.pnach b/patches/SLPM-65868_0C4DA2CF.pnach index bf8efc00..a5076d54 100644 --- a/patches/SLPM-65868_0C4DA2CF.pnach +++ b/patches/SLPM-65868_0C4DA2CF.pnach @@ -2,7 +2,7 @@ gametitle=Metal Saga: Sajin no Kusari [NTSC-J] (SLPM-65868) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //gameplay patch=1,EE,0030c814,word,3c013f40 //00000000 diff --git a/patches/SLPM-65869_29396A53.pnach b/patches/SLPM-65869_29396A53.pnach index 228d3a50..43274099 100644 --- a/patches/SLPM-65869_29396A53.pnach +++ b/patches/SLPM-65869_29396A53.pnach @@ -2,7 +2,7 @@ gametitle=Monster Hunter G (J) (SLPM-65869) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //Wide hack 16:9 patch=1,EE,00135064,word,3c023ff3 //3c023fb6 diff --git a/patches/SLPM-65872_A9B076A1.pnach b/patches/SLPM-65872_A9B076A1.pnach index 371a6c67..588b0a04 100644 --- a/patches/SLPM-65872_A9B076A1.pnach +++ b/patches/SLPM-65872_A9B076A1.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Ultimate Vol.24 - Makai Tenshou (J)(SLPM-65872) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65885_C1C91715.pnach b/patches/SLPM-65885_C1C91715.pnach index 6e2510f5..84835bac 100644 --- a/patches/SLPM-65885_C1C91715.pnach +++ b/patches/SLPM-65885_C1C91715.pnach @@ -2,7 +2,7 @@ gametitle=Rumble Roses (NTSC-J) (SLPM_658.85) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht Mod Pnach crc by Acem +author=ElHecht Mod Pnach crc by Acem comment=Font fix by Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65890_421A1DC6.pnach b/patches/SLPM-65890_421A1DC6.pnach index 95534b5c..10cc0384 100644 --- a/patches/SLPM-65890_421A1DC6.pnach +++ b/patches/SLPM-65890_421A1DC6.pnach @@ -2,7 +2,7 @@ gametitle=Shin Sangoku Musou 4 (J)(SLPM-65890) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-65897_1C087362.pnach b/patches/SLPM-65897_1C087362.pnach index 2f4f0910..f8c6951d 100644 --- a/patches/SLPM-65897_1C087362.pnach +++ b/patches/SLPM-65897_1C087362.pnach @@ -2,7 +2,7 @@ gametitle=Racing Battle C1 Grand Prix (J)(SLPM-65897) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Wide Screen hack 16:9 @@ -12,7 +12,7 @@ patch=1,EE,00165a00,word,3c023f40 //3c023f80 [No-Interlacing] gsinterlacemode=1 -comment=No Interlacing Patch by Tokman5 +author=Tokman5 patch=1,EE,2014AC58,extended,24022000 diff --git a/patches/SLPM-65907_B2EC9660.pnach b/patches/SLPM-65907_B2EC9660.pnach index 33c01ecd..01e18e1a 100644 --- a/patches/SLPM-65907_B2EC9660.pnach +++ b/patches/SLPM-65907_B2EC9660.pnach @@ -2,7 +2,7 @@ gametitle=Def Jam - Fight for NY (J)(SLPM-65907) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) // 16:9 diff --git a/patches/SLPM-65913_C6F33C64.pnach b/patches/SLPM-65913_C6F33C64.pnach index 4060cf58..eaa88b86 100644 --- a/patches/SLPM-65913_C6F33C64.pnach +++ b/patches/SLPM-65913_C6F33C64.pnach @@ -2,7 +2,7 @@ gametitle=Demento (J) (SLPM_65913) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach NTSC-J by Arapapa) +author=nemesis2000 (pnach NTSC-J by Arapapa) patch=1,EE,0010e31c,word,3c013f40 patch=1,EE,0010e320,word,44810000 diff --git a/patches/SLPM-65913_E263BC4B.pnach b/patches/SLPM-65913_E263BC4B.pnach index abae469b..df6ddbaf 100644 --- a/patches/SLPM-65913_E263BC4B.pnach +++ b/patches/SLPM-65913_E263BC4B.pnach @@ -2,7 +2,7 @@ gametitle=Demento [NTSC-J] (SLPM-65913) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 //16:9 patch=1,EE,0010e31c,word,3c013f40 //00000000 diff --git a/patches/SLPM-65915_E518FD91.pnach b/patches/SLPM-65915_E518FD91.pnach index 4e609bc6..3569a140 100644 --- a/patches/SLPM-65915_E518FD91.pnach +++ b/patches/SLPM-65915_E518FD91.pnach @@ -2,7 +2,7 @@ gametitle=Fallout - Brotherhood of Steel (J)(SLPM-65915) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65920_2B9AF3C5.pnach b/patches/SLPM-65920_2B9AF3C5.pnach index 25a65329..797ff9ab 100644 --- a/patches/SLPM-65920_2B9AF3C5.pnach +++ b/patches/SLPM-65920_2B9AF3C5.pnach @@ -2,7 +2,7 @@ gametitle=Romancing SaGa (NTSC-J) (SLPM_659.20) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht (pnach by Arapapa) +author=ElHecht (pnach by Arapapa) // 16:9 patch=1,EE,0027f7b4,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-65942_D3B5CADB.pnach b/patches/SLPM-65942_D3B5CADB.pnach index 9f895cfd..b9fae16e 100644 --- a/patches/SLPM-65942_D3B5CADB.pnach +++ b/patches/SLPM-65942_D3B5CADB.pnach @@ -2,7 +2,7 @@ gametitle=Mercenaries (J)(SLPM-65942) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) // 16:9 //a800a0e7 ffff0324 02000224 ffff4224 00000000 00000000 00000000 00000000 00000000 diff --git a/patches/SLPM-65945_93DC1B9F.pnach b/patches/SLPM-65945_93DC1B9F.pnach index 1ea82f1c..9b736efa 100644 --- a/patches/SLPM-65945_93DC1B9F.pnach +++ b/patches/SLPM-65945_93DC1B9F.pnach @@ -2,7 +2,7 @@ gametitle=Red Ninja - Kekka no Mai (J)(SLPM-65945) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) //Wide Screen hack 16:9 diff --git a/patches/SLPM-65947_F03336E3.pnach b/patches/SLPM-65947_F03336E3.pnach index cfb0140b..462825d0 100644 --- a/patches/SLPM-65947_F03336E3.pnach +++ b/patches/SLPM-65947_F03336E3.pnach @@ -2,7 +2,7 @@ gametitle=Killer 7 (J) (SLPM_659.47) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) // 16:9 patch=1,EE,0027c090,word,3c023fe3 // 3c023faa hor fov diff --git a/patches/SLPM-65948_5637E95B.pnach b/patches/SLPM-65948_5637E95B.pnach index 510a931f..d2ccb9d0 100644 --- a/patches/SLPM-65948_5637E95B.pnach +++ b/patches/SLPM-65948_5637E95B.pnach @@ -2,7 +2,7 @@ gametitle=Enthusia Professional Racing (J)(SLPM-65948) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 //Widescreen hack 16:9 diff --git a/patches/SLPM-65949_805627AB.pnach b/patches/SLPM-65949_805627AB.pnach index ed297a94..bced5a89 100644 --- a/patches/SLPM-65949_805627AB.pnach +++ b/patches/SLPM-65949_805627AB.pnach @@ -2,7 +2,7 @@ gametitle=Get Ride! AMDriver: Soukoku no Shinjitsu [NTSC-J] (SLPM_659.49) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001DCB54,word,3C023F40 //3C023F80 Zoom diff --git a/patches/SLPM-65950_09576267.pnach b/patches/SLPM-65950_09576267.pnach index 1d4b3393..3ca30be7 100644 --- a/patches/SLPM-65950_09576267.pnach +++ b/patches/SLPM-65950_09576267.pnach @@ -2,7 +2,7 @@ gametitle=Gantz - The Game (J)(SLPM-65950) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPM-65952_CED93EB6.pnach b/patches/SLPM-65952_CED93EB6.pnach index fc01496d..b48136e2 100644 --- a/patches/SLPM-65952_CED93EB6.pnach +++ b/patches/SLPM-65952_CED93EB6.pnach @@ -2,7 +2,7 @@ gametitle=Tengai Makyou III - Namida (J)(SLPM-65952) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65959_5D41A6AD.pnach b/patches/SLPM-65959_5D41A6AD.pnach index 9ce134b7..fd34cc47 100644 --- a/patches/SLPM-65959_5D41A6AD.pnach +++ b/patches/SLPM-65959_5D41A6AD.pnach @@ -2,7 +2,7 @@ gametitle=Standard Daisenryaku - Shiwareta Shouri (J)(SLPM-65959) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-65967_E1E0B924.pnach b/patches/SLPM-65967_E1E0B924.pnach index 92f77290..e98a8bf5 100644 --- a/patches/SLPM-65967_E1E0B924.pnach +++ b/patches/SLPM-65967_E1E0B924.pnach @@ -2,7 +2,7 @@ gametitle=Spectral Force Chronicle (J)(SLPM-65967) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack by Arapapa +author=Arapapa // Widescreen hack 16:9 diff --git a/patches/SLPM-65972_25D968B0.pnach b/patches/SLPM-65972_25D968B0.pnach index 57ddc028..10aa2e2f 100644 --- a/patches/SLPM-65972_25D968B0.pnach +++ b/patches/SLPM-65972_25D968B0.pnach @@ -2,7 +2,7 @@ gametitle=Constantine (J)(SLPM-65972) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //X-Fov - ELF hack //803f013c 00108144 0c00438e diff --git a/patches/SLPM-65973_163A62C8.pnach b/patches/SLPM-65973_163A62C8.pnach index e4226e9b..54b3bc51 100644 --- a/patches/SLPM-65973_163A62C8.pnach +++ b/patches/SLPM-65973_163A62C8.pnach @@ -2,7 +2,7 @@ gametitle=Future Boy Conan (J) (Mirai Shounen Conan) (SLPM-65973) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 patch=1,EE,203EC404,word,3f400000 // 3f800000 diff --git a/patches/SLPM-65976_5B659BED.pnach b/patches/SLPM-65976_5B659BED.pnach index 4027ccb7..3287df06 100644 --- a/patches/SLPM-65976_5B659BED.pnach +++ b/patches/SLPM-65976_5B659BED.pnach @@ -2,7 +2,7 @@ gametitle=Grandia III [NTSC-J] (SLPM-65976) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //both fov+ patch=1,EE,0013b450,word,3c033f27 diff --git a/patches/SLPM-65977_5B659BED.pnach b/patches/SLPM-65977_5B659BED.pnach index 4027ccb7..3287df06 100644 --- a/patches/SLPM-65977_5B659BED.pnach +++ b/patches/SLPM-65977_5B659BED.pnach @@ -2,7 +2,7 @@ gametitle=Grandia III [NTSC-J] (SLPM-65976) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //both fov+ patch=1,EE,0013b450,word,3c033f27 diff --git a/patches/SLPM-65985_F4D474EB.pnach b/patches/SLPM-65985_F4D474EB.pnach index 8d9a2771..e983a262 100644 --- a/patches/SLPM-65985_F4D474EB.pnach +++ b/patches/SLPM-65985_F4D474EB.pnach @@ -2,7 +2,7 @@ gametitle=Atelier Iris-Eternal Mana 2 [NTSC-J](SLPM-65985) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //3D scenes patch=1,EE,002abc0c,word,3c013f40 //hor value diff --git a/patches/SLPM-66000_FFDF5E63.pnach b/patches/SLPM-66000_FFDF5E63.pnach index 9d48afb8..428d4f50 100644 --- a/patches/SLPM-66000_FFDF5E63.pnach +++ b/patches/SLPM-66000_FFDF5E63.pnach @@ -2,7 +2,7 @@ gametitle=Conflict Delta II - Wangan Sensou 1991 (J)(SLPM-66000) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66002_6E90F4C1.pnach b/patches/SLPM-66002_6E90F4C1.pnach new file mode 100644 index 00000000..5e6e61f2 --- /dev/null +++ b/patches/SLPM-66002_6E90F4C1.pnach @@ -0,0 +1,6 @@ +gametitle=プリンス・オブ・ペルシャ ケンシ ノ ココロ (SLPM-66002) + +[Remove Blur/Bloom] +author=fobes +description=Removes the post-processing blur/bloom effect +patch=1,EE,00537F14,word,00000000 diff --git a/patches/SLPM-66009_3033437A.pnach b/patches/SLPM-66009_3033437A.pnach index 0ff51a27..8e41d2b0 100644 --- a/patches/SLPM-66009_3033437A.pnach +++ b/patches/SLPM-66009_3033437A.pnach @@ -2,7 +2,7 @@ gametitle= Winning Eleven 9 (User Localized) (SLPM-66009) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,0010444c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-66009_D9B8D6EB.pnach b/patches/SLPM-66009_D9B8D6EB.pnach index 1297ca6c..08f25d3b 100644 --- a/patches/SLPM-66009_D9B8D6EB.pnach +++ b/patches/SLPM-66009_D9B8D6EB.pnach @@ -2,7 +2,7 @@ gametitle= Winning Eleven 9 (NTSC-J) (SLPM-66009) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,0010444c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-66019_3F67D220.pnach b/patches/SLPM-66019_3F67D220.pnach index 0dc0e3fa..c374d554 100644 --- a/patches/SLPM-66019_3F67D220.pnach +++ b/patches/SLPM-66019_3F67D220.pnach @@ -2,7 +2,7 @@ gametitle=Stuntman (J)(SLPM-66019) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa and FlatOut +author=Arapapa and FlatOut //Gameplay 16:9 diff --git a/patches/SLPM-66022_EC33CA0D.pnach b/patches/SLPM-66022_EC33CA0D.pnach index ad995f59..0b02a8b0 100644 --- a/patches/SLPM-66022_EC33CA0D.pnach +++ b/patches/SLPM-66022_EC33CA0D.pnach @@ -2,7 +2,7 @@ gametitle=Kaido - Touge no Densetsu [NTSC-J] (SLPM-66022) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0016323c,word,3c043f40 //GamePlay patch=1,EE,0036663c,word,3c033f40 //Garage diff --git a/patches/SLPM-66030_F56C7948.pnach b/patches/SLPM-66030_F56C7948.pnach index 20c56d91..f52e34aa 100644 --- a/patches/SLPM-66030_F56C7948.pnach +++ b/patches/SLPM-66030_F56C7948.pnach @@ -2,7 +2,7 @@ gametitle=Heavy Metal Thunder (J)(SLPM-66030) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66031_9288AA35.pnach b/patches/SLPM-66031_9288AA35.pnach index 9261306e..3ae99b41 100644 --- a/patches/SLPM-66031_9288AA35.pnach +++ b/patches/SLPM-66031_9288AA35.pnach @@ -2,7 +2,7 @@ gametitle=Phantasy Star Universe (NTSC-J) (SLPM-66031) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht (pnach NTSC-J by Arapapa) +author=ElHecht (pnach NTSC-J by Arapapa) //search values //00007f43 00008043 000060c3 0e01804b (2nd) 20865BB0 diff --git a/patches/SLPM-66033_22031DAA.pnach b/patches/SLPM-66033_22031DAA.pnach index c5745bd6..1675b79c 100644 --- a/patches/SLPM-66033_22031DAA.pnach +++ b/patches/SLPM-66033_22031DAA.pnach @@ -2,7 +2,7 @@ gametitle=Oz [NTSC-J] (SLPM-66033) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,004f6f20,word,46010082 diff --git a/patches/SLPM-66042_1CF4E2B3.pnach b/patches/SLPM-66042_1CF4E2B3.pnach index 38dd82c0..82aab439 100644 --- a/patches/SLPM-66042_1CF4E2B3.pnach +++ b/patches/SLPM-66042_1CF4E2B3.pnach @@ -2,7 +2,7 @@ gametitle=Brothers in Arms - Road to Hill 30 (J)(SLPM-66042) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-66055_38BCD719.pnach b/patches/SLPM-66055_38BCD719.pnach index 2417051c..9884e19c 100644 --- a/patches/SLPM-66055_38BCD719.pnach +++ b/patches/SLPM-66055_38BCD719.pnach @@ -2,7 +2,7 @@ gametitle=Shinten Makai - Generation of Chaos V (J)(SLPM-66055) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66058_AEA1B3AD.pnach b/patches/SLPM-66058_AEA1B3AD.pnach index 9446c050..8ff9517a 100644 --- a/patches/SLPM-66058_AEA1B3AD.pnach +++ b/patches/SLPM-66058_AEA1B3AD.pnach @@ -2,7 +2,7 @@ gametitle=Sengoku Basara [NTSC-J] (SLPM-66058) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //wide 16:9 patch=1,EE,0026470c,word,3c013f40 //00000000 diff --git a/patches/SLPM-66059_126D3540.pnach b/patches/SLPM-66059_126D3540.pnach index 03050cf5..9c1d44a3 100644 --- a/patches/SLPM-66059_126D3540.pnach +++ b/patches/SLPM-66059_126D3540.pnach @@ -2,7 +2,7 @@ gametitle=Robots (J)(SLPM-66059) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66060_13D53A3F.pnach b/patches/SLPM-66060_13D53A3F.pnach index 0574f0ad..b66ab9a4 100644 --- a/patches/SLPM-66060_13D53A3F.pnach +++ b/patches/SLPM-66060_13D53A3F.pnach @@ -2,7 +2,7 @@ gametitle=Boukoku no Aegis 2035 - Warship Gunner (NTSC-J)(SLPM-66060) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66061_398E4F71.pnach b/patches/SLPM-66061_398E4F71.pnach index 953a6b47..fb4fb5aa 100644 --- a/patches/SLPM-66061_398E4F71.pnach +++ b/patches/SLPM-66061_398E4F71.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou Powerful Pro Yakyuu 12 (J)(SLPM-66061) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //X-Fov patch=1,EE,00306e5c,word,3f19999a //3f4ccccd diff --git a/patches/SLPM-66068_3311A6F3.pnach b/patches/SLPM-66068_3311A6F3.pnach index 600a2583..686069d1 100644 --- a/patches/SLPM-66068_3311A6F3.pnach +++ b/patches/SLPM-66068_3311A6F3.pnach @@ -2,7 +2,7 @@ gametitle=Richard Burns Rally (SLPM-66068) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //Search values are different than PAL //8043013c 00d88144 40371de6 diff --git a/patches/SLPM-66073_54EAD1B8.pnach b/patches/SLPM-66073_54EAD1B8.pnach index 2755f01f..76f21641 100644 --- a/patches/SLPM-66073_54EAD1B8.pnach +++ b/patches/SLPM-66073_54EAD1B8.pnach @@ -2,7 +2,7 @@ gametitle=Hagane no Renkinjutsushi 3 - Kami o Tsugu Shoujo [NTSC-J] (SLPM-66073) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //16:9 patch=1,EE,001498D0,word,3c013f40 // 00000000 diff --git a/patches/SLPM-66074_E0068D0A.pnach b/patches/SLPM-66074_E0068D0A.pnach index 40990326..fe92d0be 100644 --- a/patches/SLPM-66074_E0068D0A.pnach +++ b/patches/SLPM-66074_E0068D0A.pnach @@ -2,7 +2,7 @@ gametitle=Sonic Gems collection (ntsc-j)(SLPM-66074) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Esppiral, file/gametitle renamed by Aced14 +author=Esppiral, file/gametitle renamed by Aced14 patch=1,EE,00290960,word,3FAAAAAB patch=1,EE,216CC190,word,3F400000 diff --git a/patches/SLPM-66077_08E3C435.pnach b/patches/SLPM-66077_08E3C435.pnach index 35f272bc..07e0eee3 100644 --- a/patches/SLPM-66077_08E3C435.pnach +++ b/patches/SLPM-66077_08E3C435.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol.31 - K-1 World Max 2005 - Sekai Ouja he no Mich [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66090_1E65175B.pnach b/patches/SLPM-66090_1E65175B.pnach index a8132d3a..218f0f6c 100644 --- a/patches/SLPM-66090_1E65175B.pnach +++ b/patches/SLPM-66090_1E65175B.pnach @@ -2,11 +2,11 @@ gametitle=Crash Bandicoot Gacchanko World (J)(SLPM-66090) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa +description=Patches the game to run at 16:9 Widescreen Aspect Ratio. //Widescreen 16:9 - //X-Fov //803f013c 00608144 7c00458e patch=1,EE,002da76c,word,3c013fab //3c013f80 @@ -14,4 +14,7 @@ patch=1,EE,002da76c,word,3c013fab //3c013f80 //Render fix patch=1,EE,002da790,word,3c013fab //3c013f80 - +[Unlock PSP Exclusive Content] +author=CRASHARKI +description=Unlocks the PSP Exclusive Content (Cars, Battle Arenas and Co-op mode). +patch=1,EE,209EF50C,byte,1 //0 \ No newline at end of file diff --git a/patches/SLPM-66108_878E7A1D.pnach b/patches/SLPM-66108_878E7A1D.pnach index 5b391929..34b966e1 100644 --- a/patches/SLPM-66108_878E7A1D.pnach +++ b/patches/SLPM-66108_878E7A1D.pnach @@ -2,7 +2,7 @@ gametitle=Burnout Revenge (J)(SLPM-66108) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by Dread and Arapapa +author=Dread and Arapapa ////Force turn on Internal Widescreen (Full boot bypassing) patch=1,EE,0035dcb0,word,24020002 //30420003 diff --git a/patches/SLPM-66109_162FE8FC.pnach b/patches/SLPM-66109_162FE8FC.pnach index 6da0b838..4cdc5990 100644 --- a/patches/SLPM-66109_162FE8FC.pnach +++ b/patches/SLPM-66109_162FE8FC.pnach @@ -2,7 +2,7 @@ gametitle=Code Age Commanders [NTSC-J] (SLPM-66109) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Gaint +author=Little Giant patch=1,EE,00118e00,word,3c013fe3 //hor fov patch=1,EE,00118e04,word,3421e838 diff --git a/patches/SLPM-66113_2C8FDB5E.pnach b/patches/SLPM-66113_2C8FDB5E.pnach index bc384650..ee4657df 100644 --- a/patches/SLPM-66113_2C8FDB5E.pnach +++ b/patches/SLPM-66113_2C8FDB5E.pnach @@ -2,7 +2,7 @@ gametitle=Hissatsu Ura-Kagyou (J)(SLPM-66113) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66144_041C5007.pnach b/patches/SLPM-66144_041C5007.pnach index b61f9a3d..e9a3e0d7 100644 --- a/patches/SLPM-66144_041C5007.pnach +++ b/patches/SLPM-66144_041C5007.pnach @@ -2,7 +2,7 @@ gametitle=D1 Professional Drift Grand Prix Series 2005 (J)(SLPM-66144) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66159_58BF0E90.pnach b/patches/SLPM-66159_58BF0E90.pnach index f4dc0479..91dfe911 100644 --- a/patches/SLPM-66159_58BF0E90.pnach +++ b/patches/SLPM-66159_58BF0E90.pnach @@ -2,7 +2,7 @@ gametitle=Call of Duty - Finest Hour (NTSC-J)(SLPM-66159) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-66160_79C952B0.pnach b/patches/SLPM-66160_79C952B0.pnach index 93471b77..761a8d16 100644 --- a/patches/SLPM-66160_79C952B0.pnach +++ b/patches/SLPM-66160_79C952B0.pnach @@ -2,7 +2,7 @@ gametitle=Devil May Cry 3 Special Edition [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,21D0DEA0,extended,3F400000 diff --git a/patches/SLPM-66164_4A5E94E1.pnach b/patches/SLPM-66164_4A5E94E1.pnach index 817b5c4f..aa1c6214 100644 --- a/patches/SLPM-66164_4A5E94E1.pnach +++ b/patches/SLPM-66164_4A5E94E1.pnach @@ -2,7 +2,7 @@ gametitle=Mahou Tsukai Kurohime [NTSC-J] (SLPM-66164) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant patch=1,EE,00196ab4,word,3c013f40 //00000000 patch=1,EE,00196ab8,word,44810000 //00000000 diff --git a/patches/SLPM-66169_8DF0A242.pnach b/patches/SLPM-66169_8DF0A242.pnach index c9f856eb..1a961396 100644 --- a/patches/SLPM-66169_8DF0A242.pnach +++ b/patches/SLPM-66169_8DF0A242.pnach @@ -2,7 +2,7 @@ gametitle= J-League Winning Eleven 9 - Asia Championship (NTSC-J) (SLPM-66169) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,0010444c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-66175_237B84D3.pnach b/patches/SLPM-66175_237B84D3.pnach index 8d076f6a..9388bae5 100644 --- a/patches/SLPM-66175_237B84D3.pnach +++ b/patches/SLPM-66175_237B84D3.pnach @@ -2,7 +2,7 @@ gametitle=Castlevania: Curse of Darkness [NTSC-J] (SLPM-66175) [Widescreen 16:9] gsaspectratio=16:9 -comment==Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 (pnach by nemesis2000) //gameplay patch=1,EE,00751a7c,word,3c013f40 //hor value diff --git a/patches/SLPM-66176_7186F769.pnach b/patches/SLPM-66176_7186F769.pnach index b4af53b5..ab783d9b 100644 --- a/patches/SLPM-66176_7186F769.pnach +++ b/patches/SLPM-66176_7186F769.pnach @@ -2,7 +2,7 @@ gametitle=Chaos Field - New Order (J) (SLPM_66176) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,00105024,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-66181_F33C3759.pnach b/patches/SLPM-66181_F33C3759.pnach index c823fab4..8b8e2bdb 100644 --- a/patches/SLPM-66181_F33C3759.pnach +++ b/patches/SLPM-66181_F33C3759.pnach @@ -2,7 +2,7 @@ gametitle=Beat Down - Fists of Vengeance (J) (SLPM_66181) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht (pnach NTSC-J by Arapapa) +author=ElHecht (pnach NTSC-J by Arapapa) //16:9 (42081546 43080046 00000000 00008244 00000000(*) 030b0046 00000000 00000000(*) da95040c 00000000(*)) patch=1,EE,00376fb8,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-66184_6BC8DA64.pnach b/patches/SLPM-66184_6BC8DA64.pnach index 7f99184f..1a9e6f79 100644 --- a/patches/SLPM-66184_6BC8DA64.pnach +++ b/patches/SLPM-66184_6BC8DA64.pnach @@ -2,7 +2,7 @@ gametitle=Ikusa Gami [NTSC-J] (SLPM-66184) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (pnach by Little Giant) +author=ElHecht (pnach by Little Giant) // 16:9 patch=1,EE,00132e6c,word,3c023f80 //3c023faa diff --git a/patches/SLPM-66211_7EC8A8A3.pnach b/patches/SLPM-66211_7EC8A8A3.pnach index 2265f07a..173e0edb 100644 --- a/patches/SLPM-66211_7EC8A8A3.pnach +++ b/patches/SLPM-66211_7EC8A8A3.pnach @@ -2,7 +2,7 @@ gametitle=Peter Jackson's King Kong - The Official Game of the Movie (J)(SLPM-66 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66217_2440D76C.pnach b/patches/SLPM-66217_2440D76C.pnach index c1440133..e9a86c09 100644 --- a/patches/SLPM-66217_2440D76C.pnach +++ b/patches/SLPM-66217_2440D76C.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou Powerful Pro Yakyuu 12 Ketteiban (J)(SLPM-66217) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //X-Fov patch=1,EE,00312c5c,word,3f19999a //3f4ccccd diff --git a/patches/SLPM-66221_3406B985.pnach b/patches/SLPM-66221_3406B985.pnach index 7d94cd5d..a4bb79ad 100644 --- a/patches/SLPM-66221_3406B985.pnach +++ b/patches/SLPM-66221_3406B985.pnach @@ -2,7 +2,7 @@ gametitle=Metal Gear Solid 3 - Subsistence [First Print Limited Edition] [Disc2o [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66246_67D76160.pnach b/patches/SLPM-66246_67D76160.pnach index ea7365a1..bef57fbc 100644 --- a/patches/SLPM-66246_67D76160.pnach +++ b/patches/SLPM-66246_67D76160.pnach @@ -2,7 +2,7 @@ gametitle=Shin Megami Tensei - Devil Summoner 1 (SLPM_662.46) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa and Red_Tv +author=Arapapa and Red_Tv //fields and battles patch=1,EE,203aca64,extended,3fc65461 // 3f951eb8 diff --git a/patches/SLPM-66256_47C35A50.pnach b/patches/SLPM-66256_47C35A50.pnach index 02964eab..e179bef9 100644 --- a/patches/SLPM-66256_47C35A50.pnach +++ b/patches/SLPM-66256_47C35A50.pnach @@ -2,7 +2,7 @@ gametitle=DNA - Dark Native Apostle (NTSC-J)(SLPM-66256) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66270_EC529173.pnach b/patches/SLPM-66270_EC529173.pnach index 3a11937a..2994d339 100644 --- a/patches/SLPM-66270_EC529173.pnach +++ b/patches/SLPM-66270_EC529173.pnach @@ -2,7 +2,7 @@ gametitle=Blazing Souls (J)(SLPM-66270) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66274_0E0637B6.pnach b/patches/SLPM-66274_0E0637B6.pnach index da0f3ff4..7d611e42 100644 --- a/patches/SLPM-66274_0E0637B6.pnach +++ b/patches/SLPM-66274_0E0637B6.pnach @@ -2,7 +2,7 @@ gametitle=Ninkyouden Toseinin Ichidaiki (J)(SLPM-66274) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66275_BD17248E.pnach b/patches/SLPM-66275_BD17248E.pnach index c6780fc9..72f83cc7 100644 --- a/patches/SLPM-66275_BD17248E.pnach +++ b/patches/SLPM-66275_BD17248E.pnach @@ -2,7 +2,7 @@ gametitle=Onimusha: Dawn of Dreams (Disc 1) (SLPM-66275) / Onimusha: Dawn of Dre [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //gameplay diff --git a/patches/SLPM-66276_BD17248E.pnach b/patches/SLPM-66276_BD17248E.pnach index c6780fc9..72f83cc7 100644 --- a/patches/SLPM-66276_BD17248E.pnach +++ b/patches/SLPM-66276_BD17248E.pnach @@ -2,7 +2,7 @@ gametitle=Onimusha: Dawn of Dreams (Disc 1) (SLPM-66275) / Onimusha: Dawn of Dre [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //gameplay diff --git a/patches/SLPM-66280_2F0E94A1.pnach b/patches/SLPM-66280_2F0E94A1.pnach index 02d3b290..37ec1d00 100644 --- a/patches/SLPM-66280_2F0E94A1.pnach +++ b/patches/SLPM-66280_2F0E94A1.pnach @@ -2,7 +2,7 @@ gametitle=Monster Hunter 2 (SLPM-66280) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00377a84,word,3c023ff3 patch=1,EE,00377a94,word,3442cf35 diff --git a/patches/SLPM-66286_7380A572.pnach b/patches/SLPM-66286_7380A572.pnach index 153d9716..118187b4 100644 --- a/patches/SLPM-66286_7380A572.pnach +++ b/patches/SLPM-66286_7380A572.pnach @@ -2,7 +2,7 @@ gametitle=幻想水滸伝 V (SLPM-66286) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,001b8804,word,3c023f40 //hor val diff --git a/patches/SLPM-66291_49D66AEF.pnach b/patches/SLPM-66291_49D66AEF.pnach index d5c97f71..8d23e049 100644 --- a/patches/SLPM-66291_49D66AEF.pnach +++ b/patches/SLPM-66291_49D66AEF.pnach @@ -2,7 +2,7 @@ gametitle=Tenka-bito (NTSC-J)(SLPM-66291) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66307_4192E055.pnach b/patches/SLPM-66307_4192E055.pnach index 0c2757df..85112009 100644 --- a/patches/SLPM-66307_4192E055.pnach +++ b/patches/SLPM-66307_4192E055.pnach @@ -2,7 +2,7 @@ gametitle=Sengoku Musou 2 (J)(SLPM-66307) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) patch=1,EE,00179c38,word,3c023f19 //3c023f4c patch=1,EE,00179c40,word,3442999a //3442cccd diff --git a/patches/SLPM-66320_280AD120.pnach b/patches/SLPM-66320_280AD120.pnach index 358574a1..a029c8c1 100644 --- a/patches/SLPM-66320_280AD120.pnach +++ b/patches/SLPM-66320_280AD120.pnach @@ -2,7 +2,7 @@ gametitle=Final Fantasy XII (J)(SLPM-66320) [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce //patch=1,EE,204dfb50,extended,3fe28f5c //patch=1,EE,204dfbb0,extended,3fe28f5c diff --git a/patches/SLPM-66321_A341986A.pnach b/patches/SLPM-66321_A341986A.pnach index 91b530ee..6bf639ac 100644 --- a/patches/SLPM-66321_A341986A.pnach +++ b/patches/SLPM-66321_A341986A.pnach @@ -2,7 +2,7 @@ gametitle=Kurogane no Houkou - Warship Gunner 2 (J)(SLPM-66321) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66322_DDC02A89.pnach b/patches/SLPM-66322_DDC02A89.pnach index 8050bf2e..46444716 100644 --- a/patches/SLPM-66322_DDC02A89.pnach +++ b/patches/SLPM-66322_DDC02A89.pnach @@ -2,7 +2,7 @@ gametitle=James Bond 007 - From Russia With Love (J)(SLPM-66322) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-66324_848A3A4F.pnach b/patches/SLPM-66324_848A3A4F.pnach index 421cf2cd..0aeb1ae9 100644 --- a/patches/SLPM-66324_848A3A4F.pnach +++ b/patches/SLPM-66324_848A3A4F.pnach @@ -2,7 +2,7 @@ gametitle=World Football Climax (J)(SLPM-66324) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66343_88B27A66.pnach b/patches/SLPM-66343_88B27A66.pnach index 41b7d3ea..7b33f03d 100644 --- a/patches/SLPM-66343_88B27A66.pnach +++ b/patches/SLPM-66343_88B27A66.pnach @@ -2,7 +2,7 @@ gametitle=Shin Sangoku Musou 4 Empires [NTSC-J] (SLPM-66343) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0014708c,word,3c0243d6 patch=1,EE,0019fb2c,word,3c023f2b diff --git a/patches/SLPM-66354_B3A9F9ED.pnach b/patches/SLPM-66354_B3A9F9ED.pnach index 3a8a91ab..ab85f9e5 100644 --- a/patches/SLPM-66354_B3A9F9ED.pnach +++ b/patches/SLPM-66354_B3A9F9ED.pnach @@ -2,7 +2,7 @@ gametitle=BLACK (J) (SLPM-66354) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 (pnach by Arapapa) +author=No.47 (pnach by Arapapa) patch=1,EE,203BF03C,word,00000001 //00000000 patch=1,EE,204BC950,word,00000001 //00000000 diff --git a/patches/SLPM-66363_AE22A564.pnach b/patches/SLPM-66363_AE22A564.pnach index c2dd33dc..a0fbd104 100644 --- a/patches/SLPM-66363_AE22A564.pnach +++ b/patches/SLPM-66363_AE22A564.pnach @@ -2,7 +2,7 @@ //[Widescreen 16:9] //gsaspectratio=16:9 -//comment=Widescreen hack by Arapapa. Breaks menu cursor alignment. +//author=Arapapa. Breaks menu cursor alignment. // 16:9 (00000000 00000000 43ad1346 00000000) //patch=1,EE,002feb04,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-66375_C5DEFEA0.pnach b/patches/SLPM-66375_C5DEFEA0.pnach index c61416d9..e2003cbb 100644 --- a/patches/SLPM-66375_C5DEFEA0.pnach +++ b/patches/SLPM-66375_C5DEFEA0.pnach @@ -2,7 +2,7 @@ gametitle=Okami (J) (SLPM_66375) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (pnach by Arapapa) +author=ElHecht (pnach by Arapapa) //Nemesis2000's search values did not apply to NTSC-J // 16:9 diff --git a/patches/SLPM-66401_80745E51.pnach b/patches/SLPM-66401_80745E51.pnach index 42d9d0eb..9596b26d 100644 --- a/patches/SLPM-66401_80745E51.pnach +++ b/patches/SLPM-66401_80745E51.pnach @@ -2,7 +2,7 @@ gametitle=Wrestle Kingdom (J)(SLPM-66401) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66403_3D2ADD93.pnach b/patches/SLPM-66403_3D2ADD93.pnach index 86f06b68..8ebdb409 100644 --- a/patches/SLPM-66403_3D2ADD93.pnach +++ b/patches/SLPM-66403_3D2ADD93.pnach @@ -2,7 +2,7 @@ gametitle=Suzuki TT Super Bikes - Real Road Racing (NTSC-J)(SLPM-66403) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66404_ADFF13DF.pnach b/patches/SLPM-66404_ADFF13DF.pnach index 1fb283e9..1ddcf7e5 100644 --- a/patches/SLPM-66404_ADFF13DF.pnach +++ b/patches/SLPM-66404_ADFF13DF.pnach @@ -2,7 +2,7 @@ gametitle=Ultimate Spider-Man (J)(SLPM-66404) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66410_22C2AC43.pnach b/patches/SLPM-66410_22C2AC43.pnach index 97974701..498afb9f 100644 --- a/patches/SLPM-66410_22C2AC43.pnach +++ b/patches/SLPM-66410_22C2AC43.pnach @@ -2,7 +2,7 @@ gametitle=Brothers in Arms: Earned in Blood (J) (SLPM_664.10) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //gameplay patch=1,EE,002f292c,word,3c023f40 diff --git a/patches/SLPM-66417_287ACB70.pnach b/patches/SLPM-66417_287ACB70.pnach index a8072fe3..25ca0d92 100644 --- a/patches/SLPM-66417_287ACB70.pnach +++ b/patches/SLPM-66417_287ACB70.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou Powerful Major League (J)(SLPM-66417) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPM-66419_774DE8E2.pnach b/patches/SLPM-66419_774DE8E2.pnach index 96d45fb4..8f98d725 100644 --- a/patches/SLPM-66419_774DE8E2.pnach +++ b/patches/SLPM-66419_774DE8E2.pnach @@ -2,7 +2,7 @@ gametitle=Valkyrie Profile 2 - Silmeria [NTSC-J] (SLPM-66419) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //16:9 patch=1,EE,20150848,word,3f11eb85 //3eaaaaab diff --git a/patches/SLPM-66431_BA147622.pnach b/patches/SLPM-66431_BA147622.pnach index c7728329..ca50e28e 100644 --- a/patches/SLPM-66431_BA147622.pnach +++ b/patches/SLPM-66431_BA147622.pnach @@ -2,7 +2,7 @@ gametitle=WinBack 2 - Project Poseidon [NTSC-J] (SLPM-66431) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant patch=1,EE,002f1790,word,3c013f40 //00000000 patch=1,EE,002f1794,word,4481f000 //00000000 diff --git a/patches/SLPM-66436_CA295E61.pnach b/patches/SLPM-66436_CA295E61.pnach index 0bc3a356..35bea017 100644 --- a/patches/SLPM-66436_CA295E61.pnach +++ b/patches/SLPM-66436_CA295E61.pnach @@ -2,7 +2,7 @@ gametitle=Atelier Iris 3: Grand Phantasm(J) (SLPM-66436) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //3D scenes patch=1,EE,0035d89c,word,3c013f40 //hor value diff --git a/patches/SLPM-66441_E0959BA8.pnach b/patches/SLPM-66441_E0959BA8.pnach index 78738652..9960386e 100644 --- a/patches/SLPM-66441_E0959BA8.pnach +++ b/patches/SLPM-66441_E0959BA8.pnach @@ -2,7 +2,7 @@ gametitle=Oookuki (J)(SLLPM-66441) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,0019dba4,word,3c013f40 //00000000 diff --git a/patches/SLPM-66445_05C3D28F.pnach b/patches/SLPM-66445_05C3D28F.pnach index a27e9dd8..c3fe9fab 100644 --- a/patches/SLPM-66445_05C3D28F.pnach +++ b/patches/SLPM-66445_05C3D28F.pnach @@ -2,7 +2,7 @@ gametitle=Shin Megami Tensei: Persona 3 (J) (SLPM_66445) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //16:9 patch=1,EE,007b179c,word,3fe38e38 // 3faaaaab diff --git a/patches/SLPM-66450_143A362F.pnach b/patches/SLPM-66450_143A362F.pnach index 97983754..401a80c1 100644 --- a/patches/SLPM-66450_143A362F.pnach +++ b/patches/SLPM-66450_143A362F.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou Powerful Pro Yakyuu 13 (J)(SLPM-66450) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //X-Fov patch=1,EE,003227ac,word,3f19999a //3f4ccccd diff --git a/patches/SLPM-66468_2F1BDED1.pnach b/patches/SLPM-66468_2F1BDED1.pnach index 7be16c11..7e90cd47 100644 --- a/patches/SLPM-66468_2F1BDED1.pnach +++ b/patches/SLPM-66468_2F1BDED1.pnach @@ -2,7 +2,7 @@ gametitle=Area 51 (J) (SLPM_664.68) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (pnach by Arapapa) +author=ElHecht (pnach by Arapapa) // 16:9 patch=1,EE,00396748,word,3c193f40 // 00000000 hor fov (00000000 00000000 03ad0046) diff --git a/patches/SLPM-66474_731B4557.pnach b/patches/SLPM-66474_731B4557.pnach index ef5a4d31..080305df 100644 --- a/patches/SLPM-66474_731B4557.pnach +++ b/patches/SLPM-66474_731B4557.pnach @@ -2,7 +2,7 @@ gametitle=Odin Sphere (J)(SLPM-66474) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Zoom //0040033c 00108344 00000000 43d00246 diff --git a/patches/SLPM-66477_F4EF4B57.pnach b/patches/SLPM-66477_F4EF4B57.pnach index 1b3d3cad..75180514 100644 --- a/patches/SLPM-66477_F4EF4B57.pnach +++ b/patches/SLPM-66477_F4EF4B57.pnach @@ -2,7 +2,7 @@ gametitle=Kamiwaza [SLPM-66477] [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,203B48E0,extended,3F400000 diff --git a/patches/SLPM-66511_F9CA661E.pnach b/patches/SLPM-66511_F9CA661E.pnach index 0a965caf..3d206532 100644 --- a/patches/SLPM-66511_F9CA661E.pnach +++ b/patches/SLPM-66511_F9CA661E.pnach @@ -2,7 +2,7 @@ gametitle=Kowloon Youma Gakuenki Re-Charge (NTSC-J)(SLPM-66511) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66542_675839AB.pnach b/patches/SLPM-66542_675839AB.pnach index 89ece210..8b17059e 100644 --- a/patches/SLPM-66542_675839AB.pnach +++ b/patches/SLPM-66542_675839AB.pnach @@ -2,7 +2,7 @@ gametitle=Sengoku Musou 2 Empires (J)(SLPM-66542) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) patch=1,EE,0017a658,word,3c023f19 //3c023f4c patch=1,EE,0017a660,word,3442999a //3442cccd diff --git a/patches/SLPM-66550_AEDAEE99.pnach b/patches/SLPM-66550_AEDAEE99.pnach index c2bcb240..4e7fac7a 100644 --- a/patches/SLPM-66550_AEDAEE99.pnach +++ b/patches/SLPM-66550_AEDAEE99.pnach @@ -2,7 +2,7 @@ gametitle=God Hand (J) (SLPM_66550) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 and Arapapa +author=nemesis2000 and Arapapa //16:9 (6e3f013c efee2134 00288144 3c00073c) patch=1,EE,0030afe0,word,3c013f9f // 3c013f6e diff --git a/patches/SLPM-66551_BF4AD345.pnach b/patches/SLPM-66551_BF4AD345.pnach index 6097b685..a93d8aae 100644 --- a/patches/SLPM-66551_BF4AD345.pnach +++ b/patches/SLPM-66551_BF4AD345.pnach @@ -2,7 +2,7 @@ gametitle=Appleseed EX (J)(SLPM-66551) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66572_9830E5FD.pnach b/patches/SLPM-66572_9830E5FD.pnach index 08f0e4e6..385f9978 100644 --- a/patches/SLPM-66572_9830E5FD.pnach +++ b/patches/SLPM-66572_9830E5FD.pnach @@ -2,7 +2,7 @@ gametitle=LEGO Star Wars II - The Original Trilogy (J)(SLPM-66572) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66590_C9D22492.pnach b/patches/SLPM-66590_C9D22492.pnach index 983a6070..5cf7e167 100644 --- a/patches/SLPM-66590_C9D22492.pnach +++ b/patches/SLPM-66590_C9D22492.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou Powerful Pro Yakyuu 13 Chou Ketteiban (J)(SLPM-66590) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //X-Fov patch=1,EE,00326e2c,word,3f19999a //3f4ccccd diff --git a/patches/SLPM-66591_1E05A4A5.pnach b/patches/SLPM-66591_1E05A4A5.pnach index b91992c9..cb3a6b28 100644 --- a/patches/SLPM-66591_1E05A4A5.pnach +++ b/patches/SLPM-66591_1E05A4A5.pnach @@ -2,7 +2,7 @@ gametitle=FlatOut 2 GTR (J)(SLPM-66591) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas (NTSC-J by Arapapa) +author=El_Patas (NTSC-J by Arapapa) //Gameplay 16:9 diff --git a/patches/SLPM-66595_F32B1B28.pnach b/patches/SLPM-66595_F32B1B28.pnach index b74caae6..76ee709c 100644 --- a/patches/SLPM-66595_F32B1B28.pnach +++ b/patches/SLPM-66595_F32B1B28.pnach @@ -2,7 +2,7 @@ gametitle= J-League Winning Eleven 10 - Europa League '06-'07 (NTSC-J) (SLPM-665 [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,001043fc,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-66622_86BC3040.pnach b/patches/SLPM-66622_86BC3040.pnach index f5e6bf4f..a6f7ddea 100644 --- a/patches/SLPM-66622_86BC3040.pnach +++ b/patches/SLPM-66622_86BC3040.pnach @@ -2,7 +2,7 @@ gametitle=Metal Gear Solid 3 - Subsistence [First Print Limited Edition] [Disc1o [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66645_51692BF7.pnach b/patches/SLPM-66645_51692BF7.pnach index 5adb76c2..5cf98e30 100644 --- a/patches/SLPM-66645_51692BF7.pnach +++ b/patches/SLPM-66645_51692BF7.pnach @@ -2,7 +2,7 @@ gametitle=Bionicle Heroes (J)(SLPM-66645) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66653_4056C58B.pnach b/patches/SLPM-66653_4056C58B.pnach index 53d21fc4..a96f4385 100644 --- a/patches/SLPM-66653_4056C58B.pnach +++ b/patches/SLPM-66653_4056C58B.pnach @@ -2,7 +2,7 @@ gametitle=Akudaikan 3 (J)(SLPM-66653) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66660_9E8F0454.pnach b/patches/SLPM-66660_9E8F0454.pnach new file mode 100644 index 00000000..5933599b --- /dev/null +++ b/patches/SLPM-66660_9E8F0454.pnach @@ -0,0 +1,18 @@ +gametitle=Hokuto no Ken - Shinpan no Sousousei - Kengou Retsuden 北斗の拳 審判の双蒼星 拳豪列伝 (Japan) SLPM_666.60 + +author=FelixTheCat1970 +[No-Interlacing] +description=Autoboot in progressive scan video mode and 640x480 pixels-lines +gsinterlacemode=1 +gsaspectratio=4:3 + +patch=0,EE,20123050,extended,241B0001 +patch=0,EE,2029832C,extended,A39B86E8 +patch=0,EE,00292D00,extended,24030000 +patch=0,EE,202A2E70,extended,AC4024CC +patch=0,EE,202B3EB8,extended,0000102D +patch=0,EE,202B4068,extended,0000102D +patch=0,EE,202A2EB0,extended,AC612568 +patch=0,EE,002A2E88,extended,2403005A +patch=0,EE,002A2E74,extended,2406005F +patch=0,EE,002A2E34,extended,24040003 \ No newline at end of file diff --git a/patches/SLPM-66663_32E8F92A.pnach b/patches/SLPM-66663_32E8F92A.pnach index 0a54662e..eccbc953 100644 --- a/patches/SLPM-66663_32E8F92A.pnach +++ b/patches/SLPM-66663_32E8F92A.pnach @@ -2,7 +2,7 @@ gametitle=Phantasy Star Universe - Ambition of the Illuminus (NTSC-J) (SLPM-6666 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht (pnach NTSC-J by Arapapa) +author=ElHecht (pnach NTSC-J by Arapapa) //search values //00007f43 00008043 000060c3 0e01804b (2nd) 208FB230 diff --git a/patches/SLPM-66672_83162EAD.pnach b/patches/SLPM-66672_83162EAD.pnach index 95de848f..633e7a1b 100644 --- a/patches/SLPM-66672_83162EAD.pnach +++ b/patches/SLPM-66672_83162EAD.pnach @@ -2,7 +2,7 @@ gametitle=Tom Clancy's Splinter Cell 4 - Double Agent (NTSC-J)(SLPM-66672) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //Search values are different than NTSC-U. diff --git a/patches/SLPM-66676_7B23BFF5.pnach b/patches/SLPM-66676_7B23BFF5.pnach index 5bd61733..135613e7 100644 --- a/patches/SLPM-66676_7B23BFF5.pnach +++ b/patches/SLPM-66676_7B23BFF5.pnach @@ -2,7 +2,7 @@ gametitle=Kingdom Hearts Re - Chain of Memories (Ultimate Hits) [NTSC-J] (SLPM-6 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen correction by nemesis2000 (pnach by Little Giant) +author=nemesis2000 (pnach by Little Giant) //gameplay by asmodean patch=1,EE,20332fbc,extended,3F19999A // 3F4CCCCD (hor axis) diff --git a/patches/SLPM-66679_D06BF8A6.pnach b/patches/SLPM-66679_D06BF8A6.pnach index dd0315bd..d01a4ac0 100644 --- a/patches/SLPM-66679_D06BF8A6.pnach +++ b/patches/SLPM-66679_D06BF8A6.pnach @@ -2,7 +2,7 @@ gametitle=Shin Megami Tensei - Devil Summoner 2 (SLPM_666.79) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa and Red_Tv +author=Arapapa and Red_Tv //fields and battles patch=1,EE,20427064,extended,3fc65461 // 3f951eb8 diff --git a/patches/SLPM-66698_F694D3D9.pnach b/patches/SLPM-66698_F694D3D9.pnach index 8a7361e1..e61efd40 100644 --- a/patches/SLPM-66698_F694D3D9.pnach +++ b/patches/SLPM-66698_F694D3D9.pnach @@ -2,7 +2,7 @@ gametitle=Shijyou Saikyou no Deshi Kenichi - Gekitou! Ragnarok Hachikengou [NTSC [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //16:9 patch=1,EE,213C7498,extended,3F499999 diff --git a/patches/SLPM-66710_E5E683C9.pnach b/patches/SLPM-66710_E5E683C9.pnach index 804bede2..b3aab542 100644 --- a/patches/SLPM-66710_E5E683C9.pnach +++ b/patches/SLPM-66710_E5E683C9.pnach @@ -2,7 +2,7 @@ gametitle=The Godfather (NTSC-J)(SLPM-66710) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66714_A3B0D1C7.pnach b/patches/SLPM-66714_A3B0D1C7.pnach index ba63fde9..b2dcf235 100644 --- a/patches/SLPM-66714_A3B0D1C7.pnach +++ b/patches/SLPM-66714_A3B0D1C7.pnach @@ -2,7 +2,7 @@ gametitle=Wrestle Kingdom 2 - Pro Wrestling Sekai Taisen (J)(SLPM-66714) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66721_03487FEE.pnach b/patches/SLPM-66721_03487FEE.pnach index 30ff0324..3b0e68aa 100644 --- a/patches/SLPM-66721_03487FEE.pnach +++ b/patches/SLPM-66721_03487FEE.pnach @@ -2,7 +2,7 @@ gametitle=Musou Orochi (J)(SLPM-66721) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPM-66739_DDF76A98.pnach b/patches/SLPM-66739_DDF76A98.pnach index bd09c47b..5610e3ef 100644 --- a/patches/SLPM-66739_DDF76A98.pnach +++ b/patches/SLPM-66739_DDF76A98.pnach @@ -2,7 +2,7 @@ gametitle=Burnout Dominator (J) (SLPM_667.39) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by Arapapa +author=Arapapa //Force turn on Internal Widescreen (Full boot bypassing) patch=1,EE,0038b128,word,24020002 //30420003 diff --git a/patches/SLPM-66747_3CE1316C.pnach b/patches/SLPM-66747_3CE1316C.pnach index f6fa2836..754733a2 100644 --- a/patches/SLPM-66747_3CE1316C.pnach +++ b/patches/SLPM-66747_3CE1316C.pnach @@ -2,7 +2,7 @@ gametitle=Baroque (J) (SLPM_66747) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (pnach NTSC-J by Arapapa) +author=ElHecht (pnach NTSC-J by Arapapa) // 16:9(803f033c 00c0053c 00288344 00000000 83280246) patch=1,EE,00398fe4,word,3c033f40 // 3c033f80 hor fov diff --git a/patches/SLPM-66748_B60D30B6.pnach b/patches/SLPM-66748_B60D30B6.pnach index 857cef9f..f00b9109 100644 --- a/patches/SLPM-66748_B60D30B6.pnach +++ b/patches/SLPM-66748_B60D30B6.pnach @@ -2,7 +2,7 @@ gametitle=Mana Khemia: Alchemists of Al-Revis (SLPM_66748) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //3D scenes patch=1,EE,00468da4,word,3c013f40 //hor value diff --git a/patches/SLPM-66750_1E7A88A7.pnach b/patches/SLPM-66750_1E7A88A7.pnach index 65b9b0ec..e140ce78 100644 --- a/patches/SLPM-66750_1E7A88A7.pnach +++ b/patches/SLPM-66750_1E7A88A7.pnach @@ -1,7 +1,7 @@ [Widescreen 16:9] gsaspectratio=16:9 comment=Final Fantasy XII International: Zodiac Job System (SLPM-66750) -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 comment=English patch //widescreen fix patch=1,EE,001803c8,word,3C013f80 diff --git a/patches/SLPM-66750_E20A9B0A.pnach b/patches/SLPM-66750_E20A9B0A.pnach index 6f4d38e3..7322e9fd 100644 --- a/patches/SLPM-66750_E20A9B0A.pnach +++ b/patches/SLPM-66750_E20A9B0A.pnach @@ -1,7 +1,7 @@ [Widescreen 16:9] gsaspectratio=16:9 comment=Final Fantasy XII International: Zodiac Job System (SLPM-66750) -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 comment=Original game //widescreen fix patch=1,EE,001803c8,word,3C013f80 diff --git a/patches/SLPM-66751_12A01A1B.pnach b/patches/SLPM-66751_12A01A1B.pnach index 98ee5afd..7832c190 100644 --- a/patches/SLPM-66751_12A01A1B.pnach +++ b/patches/SLPM-66751_12A01A1B.pnach @@ -2,7 +2,7 @@ gametitle=Mahoroba Stories [NTSC-J] (SLPM-66751) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //16:9 patch=1,EE,001F331C,word,3C053F40 //3c013f80 hor diff --git a/patches/SLPM-66763_7D0C1516.pnach b/patches/SLPM-66763_7D0C1516.pnach index 2ab3c43e..98bb864b 100644 --- a/patches/SLPM-66763_7D0C1516.pnach +++ b/patches/SLPM-66763_7D0C1516.pnach @@ -2,7 +2,7 @@ gametitle=Shinseiki Evangelion - Battle Orchestra (J)(SLPM-66763) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66777_C8E271AB.pnach b/patches/SLPM-66777_C8E271AB.pnach index a9e3dd5e..c5da1adf 100644 --- a/patches/SLPM-66777_C8E271AB.pnach +++ b/patches/SLPM-66777_C8E271AB.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou Powerful Pro Yakyuu 14 (J)(SLPM-66777) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //X-Fov patch=1,EE,003378dc,word,3f19999a //3f4ccccd diff --git a/patches/SLPM-66810_927A79A4.pnach b/patches/SLPM-66810_927A79A4.pnach index a5750345..2edf4e73 100644 --- a/patches/SLPM-66810_927A79A4.pnach +++ b/patches/SLPM-66810_927A79A4.pnach @@ -2,7 +2,7 @@ gametitle= J-League Winning Eleven 2007 - Club Championship (NTSC-J) (SLPM-66810 [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,001043fc,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-66851_7812A8FA.pnach b/patches/SLPM-66851_7812A8FA.pnach index 293a4cee..6b3ae102 100644 --- a/patches/SLPM-66851_7812A8FA.pnach +++ b/patches/SLPM-66851_7812A8FA.pnach @@ -2,7 +2,7 @@ gametitle=Grand Theft Auto - Liberty City Stories (J) (SLPM_66851) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //widescreen fix patch=1,EE,001d96d8,word,468010a0 diff --git a/patches/SLPM-66867_DECEBFAD.pnach b/patches/SLPM-66867_DECEBFAD.pnach index 8d1a6997..0dc0a95d 100644 --- a/patches/SLPM-66867_DECEBFAD.pnach +++ b/patches/SLPM-66867_DECEBFAD.pnach @@ -2,7 +2,7 @@ gametitle=MotoGP 07 [NTSC-J] [SLPM-66867] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas (NTSC-J by Arapapa) +author=El_Patas (NTSC-J by Arapapa) //Gameplay 16:9 patch=1,EE,0020e264,word,4483E800 //44830800 diff --git a/patches/SLPM-66875_6AE93A66.pnach b/patches/SLPM-66875_6AE93A66.pnach index 44558495..f6631c92 100644 --- a/patches/SLPM-66875_6AE93A66.pnach +++ b/patches/SLPM-66875_6AE93A66.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou Powerful Major League 2 (J)(SLPM-66875) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPM-66885_BF410FEB.pnach b/patches/SLPM-66885_BF410FEB.pnach index 7690b697..734d5ced 100644 --- a/patches/SLPM-66885_BF410FEB.pnach +++ b/patches/SLPM-66885_BF410FEB.pnach @@ -2,7 +2,7 @@ gametitle= Winning Eleven 2008 (NTSC-J) (SLPM_66885) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen pnach El_Patas (NTSC-J by Arapapa) +author=El_Patas (NTSC-J by Arapapa) // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,001043fc,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-66902_38D6ED88.pnach b/patches/SLPM-66902_38D6ED88.pnach index 610ce252..3911a427 100644 --- a/patches/SLPM-66902_38D6ED88.pnach +++ b/patches/SLPM-66902_38D6ED88.pnach @@ -2,7 +2,7 @@ gametitle=Disney Princess - Mahou no Sekai e (J)(SLPM-66902) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66910_93BB2306.pnach b/patches/SLPM-66910_93BB2306.pnach index d77b7313..1d8dff60 100644 --- a/patches/SLPM-66910_93BB2306.pnach +++ b/patches/SLPM-66910_93BB2306.pnach @@ -2,7 +2,7 @@ gametitle=Stuntman Ignition (J)(SLPM-66910) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-66916_BFBFE018.pnach b/patches/SLPM-66916_BFBFE018.pnach index f260c0a5..3e0821db 100644 --- a/patches/SLPM-66916_BFBFE018.pnach +++ b/patches/SLPM-66916_BFBFE018.pnach @@ -2,7 +2,7 @@ gametitle=Jikkyou Powerful Pro Yakyuu 14 Chou Ketteiban (J)(SLPM-66916) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //X-Fov patch=1,EE,0033fa64,word,3f19999a //3f4ccccd diff --git a/patches/SLPM-66953_A1970E42.pnach b/patches/SLPM-66953_A1970E42.pnach index 30ebd98c..6826561b 100644 --- a/patches/SLPM-66953_A1970E42.pnach +++ b/patches/SLPM-66953_A1970E42.pnach @@ -2,7 +2,7 @@ gametitle=Musou Orochi - Maou Sairin (J)(SLPM-66953) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) // 16:9 //000203ae 4c3f023c xxxxxxxx cdcc4234 diff --git a/patches/SLPM-66978_4E63E63C.pnach b/patches/SLPM-66978_4E63E63C.pnach index d1b59ab9..2f09ca4a 100644 --- a/patches/SLPM-66978_4E63E63C.pnach +++ b/patches/SLPM-66978_4E63E63C.pnach @@ -2,7 +2,7 @@ gametitle=Shin Megami Tensei: Persona 4 NTSC-J (SLPM-66978) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 and pavachan (NTSC-J by Arapapa) +author=nemesis2000 and pavachan (NTSC-J by Arapapa) //16:9 patch=1,EE,0076f61c,word,3fe38e38 diff --git a/patches/SLPM-67002_CED0851A.pnach b/patches/SLPM-67002_CED0851A.pnach index fbfb563d..b93d2628 100644 --- a/patches/SLPM-67002_CED0851A.pnach +++ b/patches/SLPM-67002_CED0851A.pnach @@ -2,7 +2,7 @@ gametitle=Metal Gear Solid 2 - Substance (J)(SLPM-67002) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-67502_C0E5F643.pnach b/patches/SLPM-67502_C0E5F643.pnach index 466eef6f..48744b10 100644 --- a/patches/SLPM-67502_C0E5F643.pnach +++ b/patches/SLPM-67502_C0E5F643.pnach @@ -2,7 +2,7 @@ gametitle=Devil May Cry (K) (SLPM-67502) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach NTSC-K by Arapapa) +author=nemesis2000 (pnach NTSC-K by Arapapa) //NTSC-K is a little diffrent to NTSC-U //NOTICE... After you run the new game, rectangle appears in the upper-left of the screen. //NOTICE... Entering the options menu, it does not go out after. diff --git a/patches/SLPM-67503_4718CB72.pnach b/patches/SLPM-67503_4718CB72.pnach index f741036e..dc5df815 100644 --- a/patches/SLPM-67503_4718CB72.pnach +++ b/patches/SLPM-67503_4718CB72.pnach @@ -2,7 +2,7 @@ gametitle=FIFA 2002 (K)(SLPM-67503) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-67506_44510A2D.pnach b/patches/SLPM-67506_44510A2D.pnach index d26657d2..d4b5b7a6 100644 --- a/patches/SLPM-67506_44510A2D.pnach +++ b/patches/SLPM-67506_44510A2D.pnach @@ -2,7 +2,7 @@ gametitle=Thunder Strike - Operation Phoenix (K)(SLPM-67506) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-67512_AB8AF16C.pnach b/patches/SLPM-67512_AB8AF16C.pnach index 55acf23e..481573db 100644 --- a/patches/SLPM-67512_AB8AF16C.pnach +++ b/patches/SLPM-67512_AB8AF16C.pnach @@ -2,7 +2,7 @@ gametitle=2002 FIFA World Cup Korea Japan (K)(SLPM-67512) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-67516_1B7FF35A.pnach b/patches/SLPM-67516_1B7FF35A.pnach index 3039f927..62ceebb5 100644 --- a/patches/SLPM-67516_1B7FF35A.pnach +++ b/patches/SLPM-67516_1B7FF35A.pnach @@ -2,7 +2,7 @@ gametitle=Soul Reaver 2 (K)(SLPM-67516) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa and nemesis2000 +author=Arapapa and nemesis2000 //Widescreen hack 16:9 //X-Fov diff --git a/patches/SLPM-67520_8CF4E374.pnach b/patches/SLPM-67520_8CF4E374.pnach index c2adf192..839c16e4 100644 --- a/patches/SLPM-67520_8CF4E374.pnach +++ b/patches/SLPM-67520_8CF4E374.pnach @@ -2,7 +2,7 @@ gametitle=Tarzan - Untamed (K)(SLPM-67520) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-67522_E4672E95.pnach b/patches/SLPM-67522_E4672E95.pnach index 255823ae..91f9318c 100644 --- a/patches/SLPM-67522_E4672E95.pnach +++ b/patches/SLPM-67522_E4672E95.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Tactics 1 (SLPM_675.22) (NTSC-K) [Widescreen 16:9] gsaspectratio=16:9 -comment=widescreen 16:9 hack by 99skull +author=99skull patch=1,EE,0019C574,word,3C023F40 //3C023F80, wide diff --git a/patches/SLPM-67523_9BD28EB3.pnach b/patches/SLPM-67523_9BD28EB3.pnach index dbdd0eff..970f52c1 100644 --- a/patches/SLPM-67523_9BD28EB3.pnach +++ b/patches/SLPM-67523_9BD28EB3.pnach @@ -2,7 +2,7 @@ gametitle=Shin Sangoku Musou 2 (K)(SLPM-67523) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by 99skull +author=99skull //16:9 widescreen hack diff --git a/patches/SLPM-67524_D4B9D03C.pnach b/patches/SLPM-67524_D4B9D03C.pnach index 02446cf5..ad662515 100644 --- a/patches/SLPM-67524_D4B9D03C.pnach +++ b/patches/SLPM-67524_D4B9D03C.pnach @@ -2,7 +2,7 @@ gametitle=Armored Core 3 (NTSC-K) (SLPM_67524) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) // 16:9 patch=1,EE,002e6dfc,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPM-67528_7E33C663.pnach b/patches/SLPM-67528_7E33C663.pnach index e35bb896..d3fe5c76 100644 --- a/patches/SLPM-67528_7E33C663.pnach +++ b/patches/SLPM-67528_7E33C663.pnach @@ -2,7 +2,7 @@ gametitle=Hajime no Ippo - Victorious Boxers - Championship Version (K)(SLPM-675 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-67530_0B5371C9.pnach b/patches/SLPM-67530_0B5371C9.pnach index 32aa4a6d..c1cff993 100644 --- a/patches/SLPM-67530_0B5371C9.pnach +++ b/patches/SLPM-67530_0B5371C9.pnach @@ -2,7 +2,7 @@ gametitle=NHL 2003 (K)(SLPM-67530) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-67533_E511E11E.pnach b/patches/SLPM-67533_E511E11E.pnach index dc8645fa..967c87f6 100644 --- a/patches/SLPM-67533_E511E11E.pnach +++ b/patches/SLPM-67533_E511E11E.pnach @@ -2,7 +2,7 @@ gametitle=Men in Black II - Alien Escape (K)(SLPM-67533) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPM-67536_351ECCAD.pnach b/patches/SLPM-67536_351ECCAD.pnach index b0de191e..5f6530b3 100644 --- a/patches/SLPM-67536_351ECCAD.pnach +++ b/patches/SLPM-67536_351ECCAD.pnach @@ -2,7 +2,7 @@ gametitle=Houshin Engi 2 (K)(SLPM-67536) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-67538_6C5DCBDC.pnach b/patches/SLPM-67538_6C5DCBDC.pnach index e19e7995..26506c0f 100644 --- a/patches/SLPM-67538_6C5DCBDC.pnach +++ b/patches/SLPM-67538_6C5DCBDC.pnach @@ -2,7 +2,7 @@ gametitle=Sidewinder F (K) (SLPM-67538) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas (NTSC-K by Arapapa) +author=El_Patas (NTSC-K by Arapapa) //Gameplay 16:9 diff --git a/patches/SLPM-67540_C4F0E5CC.pnach b/patches/SLPM-67540_C4F0E5CC.pnach index bce111a3..46a7db9a 100644 --- a/patches/SLPM-67540_C4F0E5CC.pnach +++ b/patches/SLPM-67540_C4F0E5CC.pnach @@ -2,7 +2,7 @@ gametitle=Auto Modellista (K) (SLPM-67540) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 and Arapapa +author=nemesis2000 and Arapapa //Game-play patch=1,EE,0032875c,word,3fe38e38 //3faaaaab diff --git a/patches/SLPM-67541_767799C1.pnach b/patches/SLPM-67541_767799C1.pnach index 51509a0b..cb5476da 100644 --- a/patches/SLPM-67541_767799C1.pnach +++ b/patches/SLPM-67541_767799C1.pnach @@ -2,7 +2,7 @@ gametitle=NBA Live 2003 (K)(SLPM-67541) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLPM-67545_40C77B13.pnach b/patches/SLPM-67545_40C77B13.pnach index 950da3e6..ef20bbae 100644 --- a/patches/SLPM-67545_40C77B13.pnach +++ b/patches/SLPM-67545_40C77B13.pnach @@ -2,7 +2,7 @@ gametitle=Project Minerva (K)(SLPM-67545) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Gaint (NTSC-K by Arapapa) +author=Little Giant (NTSC-K by Arapapa) //3ef0a3d7 3f91eb85 (2nd) patch=1,EE,20F1A388,extended,3F206D3A // vert diff --git a/patches/SLPM-67546_6898435D.pnach b/patches/SLPM-67546_6898435D.pnach index 55e4d5ed..cf564fe9 100644 --- a/patches/SLPM-67546_6898435D.pnach +++ b/patches/SLPM-67546_6898435D.pnach @@ -2,7 +2,7 @@ gametitle=The Lord of the Rings - The Two Towers (K) (SLPM-67546) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPM-67550_2667BAF1.pnach b/patches/SLPM-67550_2667BAF1.pnach index 43704087..cce8d37b 100644 --- a/patches/SLPM-67550_2667BAF1.pnach +++ b/patches/SLPM-67550_2667BAF1.pnach @@ -2,7 +2,7 @@ gametitle=Shin Sangoku Musou 2 Mushouden (K)(SLPM-67550) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht (NTSC-K by Arapapa) +author=ElHecht (NTSC-K by Arapapa) //Widescreen 16:9 diff --git a/patches/SLPM-68005_E90BE9F8.pnach b/patches/SLPM-68005_E90BE9F8.pnach index 94ff5215..9f6ea4ce 100644 --- a/patches/SLPM-68005_E90BE9F8.pnach +++ b/patches/SLPM-68005_E90BE9F8.pnach @@ -2,7 +2,7 @@ gametitle=Harry Potter to Himitsu no Heya(Coca Cola Original version) (J)(SLPM-6 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-68008_B5FEAE85.pnach b/patches/SLPM-68008_B5FEAE85.pnach index 00bb98f1..6a72d413 100644 --- a/patches/SLPM-68008_B5FEAE85.pnach +++ b/patches/SLPM-68008_B5FEAE85.pnach @@ -2,7 +2,7 @@ gametitle=Virtua Fighter - 10th Anniversary (J)(SLPM-68008) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-68503_CED2D09E.pnach b/patches/SLPM-68503_CED2D09E.pnach index 99795364..8496fc8e 100644 --- a/patches/SLPM-68503_CED2D09E.pnach +++ b/patches/SLPM-68503_CED2D09E.pnach @@ -2,7 +2,7 @@ gametitle=Metal Gear Solid 2 - Sons of Liberty [Shareholder Edition] (J)(SLPM-68 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-74101_DC2E5A76.pnach b/patches/SLPM-74101_DC2E5A76.pnach index d571212b..4bab5be0 100644 --- a/patches/SLPM-74101_DC2E5A76.pnach +++ b/patches/SLPM-74101_DC2E5A76.pnach @@ -2,7 +2,7 @@ gametitle=Bomberman Land 2 (NTSC-J) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by gamemasterplc +author=gamemasterplc patch=1,EE,201391F4,extended,24040340 //Framebuffer X Resolution (832) patch=1,EE,20139220,extended,24040340 //Internal X Resolution (832) diff --git a/patches/SLPM-74232_5C1E5BEF.pnach b/patches/SLPM-74232_5C1E5BEF.pnach index 4a0bcf36..6938f123 100644 --- a/patches/SLPM-74232_5C1E5BEF.pnach +++ b/patches/SLPM-74232_5C1E5BEF.pnach @@ -2,7 +2,7 @@ gametitle=Shin Onimusha - Dawn of Dreams (PlayStation 2 the Best) [NTSC-J] [Disc [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesiss2000 +author=nemesis2000 //Widescreen hack 16:9 diff --git a/patches/SLPM-74232_C1C77637.pnach b/patches/SLPM-74232_C1C77637.pnach index 70a875ca..e99fd468 100644 --- a/patches/SLPM-74232_C1C77637.pnach +++ b/patches/SLPM-74232_C1C77637.pnach @@ -2,7 +2,7 @@ gametitle=Shin Onimusha - Dawn of Dreams (PlayStation 2 the Best) [NTSC-J] [Disc [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesiss2000 +author=nemesis2000 //Widescreen hack 16:9 patch=1,EE,0012f960,word,3c033f19 //3c033f4c diff --git a/patches/SLPM-74277_232C7D72.pnach b/patches/SLPM-74277_232C7D72.pnach index 936f84ee..09e2e79f 100644 --- a/patches/SLPM-74277_232C7D72.pnach +++ b/patches/SLPM-74277_232C7D72.pnach @@ -2,7 +2,7 @@ gametitle=Shin Megami Tensei: Persona 3 FES (SLPM-66690) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by CeruleansBlue, devina, nemesis2000, sergx12, Arapapa +author=CeruleansBlue, devina, nemesis2000, sergx12, Arapapa //16:9 by CeruleansBlue patch=1,EE,007ccc1c,word,3fe38e38 diff --git a/patches/SLPM-74405_1C9C08BA.pnach b/patches/SLPM-74405_1C9C08BA.pnach index 55c7aedd..5de35cca 100644 --- a/patches/SLPM-74405_1C9C08BA.pnach +++ b/patches/SLPM-74405_1C9C08BA.pnach @@ -2,7 +2,7 @@ gametitle=Samurai - Kanzenban (J)(SLPM-74405) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPM-74419_8362ED29.pnach b/patches/SLPM-74419_8362ED29.pnach index 7d304ebd..76e72945 100644 --- a/patches/SLPM-74419_8362ED29.pnach +++ b/patches/SLPM-74419_8362ED29.pnach @@ -2,7 +2,7 @@ gametitle=Bakusou Dekotora Densetsu Otoko Hanamichi Yume Roman (Playstation2 The [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20001_4F9C7FCF.pnach b/patches/SLPS-20001_4F9C7FCF.pnach index 16189064..9de09526 100644 --- a/patches/SLPS-20001_4F9C7FCF.pnach +++ b/patches/SLPS-20001_4F9C7FCF.pnach @@ -2,7 +2,7 @@ gametitle=Ridge Racer V (J)(SLPS-20001) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 (NTSC-J by Arapapa) +author=No.47 (NTSC-J by Arapapa) //single player //00 80 04 44 33 33 B3 3E 33 33 B3 3E DB 0F 49 40 diff --git a/patches/SLPS-20003_63642E9F.pnach b/patches/SLPS-20003_63642E9F.pnach index 65f06f39..c43eb075 100644 --- a/patches/SLPS-20003_63642E9F.pnach +++ b/patches/SLPS-20003_63642E9F.pnach @@ -2,7 +2,7 @@ gametitle=Street Fighter EX3 (J)(SLPS-20003) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 +author=nemesis2000 patch=1,EE,002097dc,word,3c013f40 //00000000 patch=1,EE,002097e0,word,44810000 //00000000 patch=1,EE,002097e8,word,4600c602 //00000000 diff --git a/patches/SLPS-20007_034836F8.pnach b/patches/SLPS-20007_034836F8.pnach index e67b3888..06da1822 100644 --- a/patches/SLPS-20007_034836F8.pnach +++ b/patches/SLPS-20007_034836F8.pnach @@ -2,7 +2,7 @@ gametitle=Driving Emotion Type-S (J)(SLPS-20007) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20009_9ED42B11.pnach b/patches/SLPS-20009_9ED42B11.pnach index c9bf81e2..1b59e180 100644 --- a/patches/SLPS-20009_9ED42B11.pnach +++ b/patches/SLPS-20009_9ED42B11.pnach @@ -2,7 +2,7 @@ gametitle=Golf Paradise (J)(SLPS-20009) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20010_31DD9FBC.pnach b/patches/SLPS-20010_31DD9FBC.pnach index 10747188..01dcbdb7 100644 --- a/patches/SLPS-20010_31DD9FBC.pnach +++ b/patches/SLPS-20010_31DD9FBC.pnach @@ -2,7 +2,7 @@ gametitle=Gekikuukan Pro Yakyuu - At the End of the Century 1999 (J)(SLPS-20010) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20012_C3AC9115.pnach b/patches/SLPS-20012_C3AC9115.pnach index fe2a99ac..ca3bd873 100644 --- a/patches/SLPS-20012_C3AC9115.pnach +++ b/patches/SLPS-20012_C3AC9115.pnach @@ -2,7 +2,7 @@ gametitle=Sky Surfer (J)(SLPS-20012) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20015_06979F19.pnach b/patches/SLPS-20015_06979F19.pnach index 3bba0ab2..fc522eef 100644 --- a/patches/SLPS-20015_06979F19.pnach +++ b/patches/SLPS-20015_06979F19.pnach @@ -2,7 +2,7 @@ gametitle=Tekken Tag Tournament [NTSC-J] (SLPS-20015) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0034b004,word,3c013f40 patch=1,EE,0034b008,word,44810000 patch=1,EE,0034b010,word,4600c602 diff --git a/patches/SLPS-20022_23328202.pnach b/patches/SLPS-20022_23328202.pnach index 0554044c..1019dbe1 100644 --- a/patches/SLPS-20022_23328202.pnach +++ b/patches/SLPS-20022_23328202.pnach @@ -2,7 +2,7 @@ gametitle=All Star Pro Wrestling (J)(SLPS-20022) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20024_DA21B99E.pnach b/patches/SLPS-20024_DA21B99E.pnach index f166893e..e40d51b6 100644 --- a/patches/SLPS-20024_DA21B99E.pnach +++ b/patches/SLPS-20024_DA21B99E.pnach @@ -2,7 +2,7 @@ gametitle=Hresvelgr - Formula Highpowered (J) (SLPS-20024) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,002810b4,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPS-20027_A1A9C393.pnach b/patches/SLPS-20027_A1A9C393.pnach index 0faaefd0..bfebb726 100644 --- a/patches/SLPS-20027_A1A9C393.pnach +++ b/patches/SLPS-20027_A1A9C393.pnach @@ -2,7 +2,7 @@ gametitle=Aquaqua (J)(SLPS-20027) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20027_CF736A9D.pnach b/patches/SLPS-20027_CF736A9D.pnach index 92d38b31..225c1278 100644 --- a/patches/SLPS-20027_CF736A9D.pnach +++ b/patches/SLPS-20027_CF736A9D.pnach @@ -2,7 +2,7 @@ gametitle=Aqua Aqua (U)(SLUS-20162) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPS-20029_75DF43A4.pnach b/patches/SLPS-20029_75DF43A4.pnach index d361caba..948acf07 100644 --- a/patches/SLPS-20029_75DF43A4.pnach +++ b/patches/SLPS-20029_75DF43A4.pnach @@ -2,7 +2,7 @@ gametitle=Surfroid - Densetsu no Surfer (J)(SLPS-20029) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20033_2DA31A2F.pnach b/patches/SLPS-20033_2DA31A2F.pnach index b45613fc..04fbaf3c 100644 --- a/patches/SLPS-20033_2DA31A2F.pnach +++ b/patches/SLPS-20033_2DA31A2F.pnach @@ -2,7 +2,7 @@ gametitle=GunGriffon Blaze (J)(SLPS-20033) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20036_9C2BA3F3.pnach b/patches/SLPS-20036_9C2BA3F3.pnach index f056f72a..088393c2 100644 --- a/patches/SLPS-20036_9C2BA3F3.pnach +++ b/patches/SLPS-20036_9C2BA3F3.pnach @@ -2,7 +2,7 @@ gametitle=Magical Sports 2000 Koushien (J)(SLPS-20036) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20037_C390C1CF.pnach b/patches/SLPS-20037_C390C1CF.pnach index 2723acb3..259cc209 100644 --- a/patches/SLPS-20037_C390C1CF.pnach +++ b/patches/SLPS-20037_C390C1CF.pnach @@ -2,7 +2,7 @@ gametitle=Magical Sports Go Go Golf (J)(SLPS-20037) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20040_2E2BF306.pnach b/patches/SLPS-20040_2E2BF306.pnach index 697db98b..f9c81f6e 100644 --- a/patches/SLPS-20040_2E2BF306.pnach +++ b/patches/SLPS-20040_2E2BF306.pnach @@ -2,7 +2,7 @@ gametitle=Moto GP (J)(SLPS-20040) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20042_32F1FA12.pnach b/patches/SLPS-20042_32F1FA12.pnach index 726f8301..fdf81252 100644 --- a/patches/SLPS-20042_32F1FA12.pnach +++ b/patches/SLPS-20042_32F1FA12.pnach @@ -2,7 +2,7 @@ gametitle=F1 Racing Championship (J)(SLPS-20042) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20043_77B9C3B3.pnach b/patches/SLPS-20043_77B9C3B3.pnach index 810b1219..0397c544 100644 --- a/patches/SLPS-20043_77B9C3B3.pnach +++ b/patches/SLPS-20043_77B9C3B3.pnach @@ -2,7 +2,7 @@ gametitle=Lake Masters EX (J)(SLPS-20043) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20044_B9D20D1D.pnach b/patches/SLPS-20044_B9D20D1D.pnach index ba680df0..3e1e6d3e 100644 --- a/patches/SLPS-20044_B9D20D1D.pnach +++ b/patches/SLPS-20044_B9D20D1D.pnach @@ -2,7 +2,7 @@ gametitle=F1 Championship Season 2000 (J)(SLPS-20044) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20046_ECD13E2B.pnach b/patches/SLPS-20046_ECD13E2B.pnach index eff80f2e..e8832692 100644 --- a/patches/SLPS-20046_ECD13E2B.pnach +++ b/patches/SLPS-20046_ECD13E2B.pnach @@ -2,7 +2,7 @@ gametitle=Kuusen (J)(SLPS-20046) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20050_4AFEA97B.pnach b/patches/SLPS-20050_4AFEA97B.pnach index 20f48f99..435cf286 100644 --- a/patches/SLPS-20050_4AFEA97B.pnach +++ b/patches/SLPS-20050_4AFEA97B.pnach @@ -2,7 +2,7 @@ gametitle=Happy! Happy!! Boarders in Hokkaido (J)(SLPS-20050) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20052_930E07E3.pnach b/patches/SLPS-20052_930E07E3.pnach index 0b997cd2..6a8cfa8e 100644 --- a/patches/SLPS-20052_930E07E3.pnach +++ b/patches/SLPS-20052_930E07E3.pnach @@ -2,7 +2,7 @@ gametitle=Global Folktale (NTSC-J)(SLPS-20052) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20053_7C20E49D.pnach b/patches/SLPS-20053_7C20E49D.pnach index 06e69613..0f97a4bd 100644 --- a/patches/SLPS-20053_7C20E49D.pnach +++ b/patches/SLPS-20053_7C20E49D.pnach @@ -2,7 +2,7 @@ gametitle=Tenshi no Present: Marle Oukoku Monogatari [NTSC-J] (SLPS_200.66 & SLP [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00104D1C,word,3C013F40 //00000000 (Increases hor. axis) diff --git a/patches/SLPS-20057_0194120C.pnach b/patches/SLPS-20057_0194120C.pnach index cf995ed4..44031323 100644 --- a/patches/SLPS-20057_0194120C.pnach +++ b/patches/SLPS-20057_0194120C.pnach @@ -2,7 +2,7 @@ gametitle=Dog of Bay (J)(SLPS-20057) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20058_2CB87FF1.pnach b/patches/SLPS-20058_2CB87FF1.pnach index 7425ec4e..992e7bd4 100644 --- a/patches/SLPS-20058_2CB87FF1.pnach +++ b/patches/SLPS-20058_2CB87FF1.pnach @@ -2,7 +2,7 @@ gametitle=Kengo [NTSC-J] [SLPS-20058] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20059_1D91728A.pnach b/patches/SLPS-20059_1D91728A.pnach index d02897cf..c56d3db1 100644 --- a/patches/SLPS-20059_1D91728A.pnach +++ b/patches/SLPS-20059_1D91728A.pnach @@ -2,7 +2,7 @@ gametitle=Hresvelgr - International Edition (J) (SLPS-20059) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,0029bb6c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPS-20062_79EAB070.pnach b/patches/SLPS-20062_79EAB070.pnach index 6c1ab881..ff7452a2 100644 --- a/patches/SLPS-20062_79EAB070.pnach +++ b/patches/SLPS-20062_79EAB070.pnach @@ -2,7 +2,7 @@ gametitle=Truck Kyousoukyoku - Ai to Kanashimi no Rodeo (J)(SLPS-20062) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20064_58525D14.pnach b/patches/SLPS-20064_58525D14.pnach index d3315ed1..79de9336 100644 --- a/patches/SLPS-20064_58525D14.pnach +++ b/patches/SLPS-20064_58525D14.pnach @@ -2,7 +2,7 @@ gametitle=Top Gear - Dare Devil (J)(SLPS-20064) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20066_7C20E49D.pnach b/patches/SLPS-20066_7C20E49D.pnach index 06e69613..0f97a4bd 100644 --- a/patches/SLPS-20066_7C20E49D.pnach +++ b/patches/SLPS-20066_7C20E49D.pnach @@ -2,7 +2,7 @@ gametitle=Tenshi no Present: Marle Oukoku Monogatari [NTSC-J] (SLPS_200.66 & SLP [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00104D1C,word,3C013F40 //00000000 (Increases hor. axis) diff --git a/patches/SLPS-20070_D0692603.pnach b/patches/SLPS-20070_D0692603.pnach index 3ef28323..6cc69a52 100644 --- a/patches/SLPS-20070_D0692603.pnach +++ b/patches/SLPS-20070_D0692603.pnach @@ -2,7 +2,7 @@ gametitle=Donald Duck - Rescue Daisakusen!! (J)(SLPS-20070) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20073_2A126B9C.pnach b/patches/SLPS-20073_2A126B9C.pnach index ddcb8dc2..a81ba5ba 100644 --- a/patches/SLPS-20073_2A126B9C.pnach +++ b/patches/SLPS-20073_2A126B9C.pnach @@ -2,7 +2,7 @@ gametitle=NBA Live 2001 (J)(SLPS-20073) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20075_4645353D.pnach b/patches/SLPS-20075_4645353D.pnach index 98b53e79..507fa989 100644 --- a/patches/SLPS-20075_4645353D.pnach +++ b/patches/SLPS-20075_4645353D.pnach @@ -2,7 +2,7 @@ gametitle=Kikou Heidan J-Phoenix Joshouhen (J)(SLPS-20075) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20077_48C43B26.pnach b/patches/SLPS-20077_48C43B26.pnach index 74c15fb5..b5ee69bb 100644 --- a/patches/SLPS-20077_48C43B26.pnach +++ b/patches/SLPS-20077_48C43B26.pnach @@ -2,7 +2,7 @@ gametitle=Pilot ni Narou 2 (J)(SLPS-20077) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20091_E0B85063.pnach b/patches/SLPS-20091_E0B85063.pnach index de4b29fc..b25ea567 100644 --- a/patches/SLPS-20091_E0B85063.pnach +++ b/patches/SLPS-20091_E0B85063.pnach @@ -2,7 +2,7 @@ gametitle=Gekibo 2 - Toku Dane Ookoku Nippon (J)(SLPS-20091) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20092_F5DB01E6.pnach b/patches/SLPS-20092_F5DB01E6.pnach index 3dfd3aa3..5938c26c 100644 --- a/patches/SLPS-20092_F5DB01E6.pnach +++ b/patches/SLPS-20092_F5DB01E6.pnach @@ -2,7 +2,7 @@ gametitle=Tiger Woods PGA Tour 2001 (J)(SLPS-20092) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20097_32F4C748.pnach b/patches/SLPS-20097_32F4C748.pnach index 551e9958..bc41c987 100644 --- a/patches/SLPS-20097_32F4C748.pnach +++ b/patches/SLPS-20097_32F4C748.pnach @@ -2,7 +2,7 @@ gametitle=Magical Sports 2001 Koushien (J)(SLPS-20097) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20100_F66528FF.pnach b/patches/SLPS-20100_F66528FF.pnach index e6274f4c..be3fada4 100644 --- a/patches/SLPS-20100_F66528FF.pnach +++ b/patches/SLPS-20100_F66528FF.pnach @@ -2,7 +2,7 @@ gametitle=Tetsu 1 - Densha de Battle! [NTSC-J] [PBPX-95201](SLPS-20100) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20101_05E1287B.pnach b/patches/SLPS-20101_05E1287B.pnach index 6f01267a..b4fe45c1 100644 --- a/patches/SLPS-20101_05E1287B.pnach +++ b/patches/SLPS-20101_05E1287B.pnach @@ -2,7 +2,7 @@ gametitle=City Crisis (J)(SLPS-20101) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20103_712EB514.pnach b/patches/SLPS-20103_712EB514.pnach index 17930d2a..2a894657 100644 --- a/patches/SLPS-20103_712EB514.pnach +++ b/patches/SLPS-20103_712EB514.pnach @@ -2,7 +2,7 @@ gametitle=Lake Masters EX Super (J)(SLPS-20103) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20104_02F53745.pnach b/patches/SLPS-20104_02F53745.pnach index 2c1ab3aa..96cf0b5f 100644 --- a/patches/SLPS-20104_02F53745.pnach +++ b/patches/SLPS-20104_02F53745.pnach @@ -2,7 +2,7 @@ gametitle=Bokujou Monogatari 3 - Heart ni Hi wo Tsukete (J)(SLPS-20104) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20111_C8FC17B2.pnach b/patches/SLPS-20111_C8FC17B2.pnach index 075b3d69..46ad74da 100644 --- a/patches/SLPS-20111_C8FC17B2.pnach +++ b/patches/SLPS-20111_C8FC17B2.pnach @@ -2,7 +2,7 @@ gametitle=Magical Sports 2001 Pro Yakyuu (J)(SLPS-20111) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20130_F820AA03.pnach b/patches/SLPS-20130_F820AA03.pnach index 0510fdd4..35f329c9 100644 --- a/patches/SLPS-20130_F820AA03.pnach +++ b/patches/SLPS-20130_F820AA03.pnach @@ -2,7 +2,7 @@ gametitle=Shin Best Play Pro Yakyuu (J)(SLPS-20130) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20135_BD27FC43.pnach b/patches/SLPS-20135_BD27FC43.pnach index 53cd07db..c8071a0e 100644 --- a/patches/SLPS-20135_BD27FC43.pnach +++ b/patches/SLPS-20135_BD27FC43.pnach @@ -2,7 +2,7 @@ gametitle=Pai Chenjan [NTSC-J] [PBPX-95201](SLPS-20135) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20139_1049E818.pnach b/patches/SLPS-20139_1049E818.pnach index 4e2df03b..5431b029 100644 --- a/patches/SLPS-20139_1049E818.pnach +++ b/patches/SLPS-20139_1049E818.pnach @@ -2,7 +2,7 @@ gametitle=All Star Professional Wrestling II (J)(SLPS-20139) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20144_DE86254A.pnach b/patches/SLPS-20144_DE86254A.pnach index 0235de3c..9e97e228 100644 --- a/patches/SLPS-20144_DE86254A.pnach +++ b/patches/SLPS-20144_DE86254A.pnach @@ -2,7 +2,7 @@ gametitle=The Seed (J)(SLPS-20144) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPS-20152_A8A2A013.pnach b/patches/SLPS-20152_A8A2A013.pnach index ad1a0a12..85ba02f5 100644 --- a/patches/SLPS-20152_A8A2A013.pnach +++ b/patches/SLPS-20152_A8A2A013.pnach @@ -2,7 +2,7 @@ gametitle=Stunt GP (J)(SLPS-20152) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by LRukyk (NTSC-J by Arapapa) +author=LRukyk (NTSC-J by Arapapa) //Widescreen hack 16:9 patch=1,EE,005de5cc,word,3fe37119 //3faa9fbe diff --git a/patches/SLPS-20160_145DD6EF.pnach b/patches/SLPS-20160_145DD6EF.pnach index 7279ff5e..2cf01de2 100644 --- a/patches/SLPS-20160_145DD6EF.pnach +++ b/patches/SLPS-20160_145DD6EF.pnach @@ -2,7 +2,7 @@ gametitle=Disney's Tarzan - Freeride (J)(SLPS-20160) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20167_C4C80532.pnach b/patches/SLPS-20167_C4C80532.pnach index c225690c..7e820b3a 100644 --- a/patches/SLPS-20167_C4C80532.pnach +++ b/patches/SLPS-20167_C4C80532.pnach @@ -2,7 +2,7 @@ gametitle=La Pucelle - Hikari no Seijou Densetsu (J) (v1.04) (SLPS-20167) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas (NTSC-J by Arapapa) +author=El_Patas (NTSC-J by Arapapa) //Gameplay 16:9 diff --git a/patches/SLPS-20170_B439D8AA.pnach b/patches/SLPS-20170_B439D8AA.pnach index 082c5690..c10c5dd6 100644 --- a/patches/SLPS-20170_B439D8AA.pnach +++ b/patches/SLPS-20170_B439D8AA.pnach @@ -2,7 +2,7 @@ gametitle=Wave Rally (NTSC-J)(SLPS-20170) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20172_C725F411.pnach b/patches/SLPS-20172_C725F411.pnach index 5b77fad2..a8c8e3bb 100644 --- a/patches/SLPS-20172_C725F411.pnach +++ b/patches/SLPS-20172_C725F411.pnach @@ -2,7 +2,7 @@ gametitle=Koushien - Konpeki no Sora (J)(SLPS-20172) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20173_EC15F3BD.pnach b/patches/SLPS-20173_EC15F3BD.pnach index cbacde9f..4f7ff4b6 100644 --- a/patches/SLPS-20173_EC15F3BD.pnach +++ b/patches/SLPS-20173_EC15F3BD.pnach @@ -2,7 +2,7 @@ gametitle=Magical Sports - Hard hitter 2 (J)(SLPS-20173) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20178_A7110F33.pnach b/patches/SLPS-20178_A7110F33.pnach index cc723446..4f1f8092 100644 --- a/patches/SLPS-20178_A7110F33.pnach +++ b/patches/SLPS-20178_A7110F33.pnach @@ -2,7 +2,7 @@ gametitle=Samurai (J)(SLPS-20178) [Widescreen 16:9] gsaspectratio=16:9 -comment=comment=Widescreen hack by ElHecht(NTSC-J by Arapapa) +comment=author=ElHecht(NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPS-20187_4A6C43EF.pnach b/patches/SLPS-20187_4A6C43EF.pnach index 3f4ea8f9..d34bf6d0 100644 --- a/patches/SLPS-20187_4A6C43EF.pnach +++ b/patches/SLPS-20187_4A6C43EF.pnach @@ -2,7 +2,7 @@ gametitle=Black/Matrix II (J)(SLPS-20187) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20194_CB70C610.pnach b/patches/SLPS-20194_CB70C610.pnach index 76e4b914..dd0bc171 100644 --- a/patches/SLPS-20194_CB70C610.pnach +++ b/patches/SLPS-20194_CB70C610.pnach @@ -2,7 +2,7 @@ gametitle=U - Underwater Unit [NTSC-J] [SLPS-20194] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20198_A18347E0.pnach b/patches/SLPS-20198_A18347E0.pnach index a6930531..2e719cd0 100644 --- a/patches/SLPS-20198_A18347E0.pnach +++ b/patches/SLPS-20198_A18347E0.pnach @@ -2,7 +2,7 @@ gametitle=Raging Bless - Gouma Mokushiroku (J)(SLPS-20198) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20199_A0ED2D23.pnach b/patches/SLPS-20199_A0ED2D23.pnach index 2f5fd7c1..81676a0e 100644 --- a/patches/SLPS-20199_A0ED2D23.pnach +++ b/patches/SLPS-20199_A0ED2D23.pnach @@ -2,7 +2,7 @@ gametitle=F1 2002 (NTSC-J & PAL)(SLPS-20199 & SLES-50874) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20205_F3717E4C.pnach b/patches/SLPS-20205_F3717E4C.pnach index 24b47bbf..e393f7c3 100644 --- a/patches/SLPS-20205_F3717E4C.pnach +++ b/patches/SLPS-20205_F3717E4C.pnach @@ -2,7 +2,7 @@ gametitle=Magical Sports - Hard Hitter (New Price) (J)(SLPS-20205) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20214_F7D86DD0.pnach b/patches/SLPS-20214_F7D86DD0.pnach index 67d381aa..4dbe3f41 100644 --- a/patches/SLPS-20214_F7D86DD0.pnach +++ b/patches/SLPS-20214_F7D86DD0.pnach @@ -2,7 +2,7 @@ gametitle=3D Kakutou Tsukuru 2 [NTSC-J] (PBPX-95201)(SLPS-20214) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant patch=1,EE,002b59c4,word,3c013f40 //00000000 patch=1,EE,002b59c8,word,44810000 //00000000 diff --git a/patches/SLPS-20222_8EE57E45.pnach b/patches/SLPS-20222_8EE57E45.pnach index 8689beea..1b2e5992 100644 --- a/patches/SLPS-20222_8EE57E45.pnach +++ b/patches/SLPS-20222_8EE57E45.pnach @@ -2,7 +2,7 @@ gametitle=Inaka Kurasi - Nan no Shima no Monogatari (J)(SLPS-20222) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20230_495AF344.pnach b/patches/SLPS-20230_495AF344.pnach index da5ee1a9..8428cb93 100644 --- a/patches/SLPS-20230_495AF344.pnach +++ b/patches/SLPS-20230_495AF344.pnach @@ -2,7 +2,7 @@ gametitle=Chulip (J)(SLPS-20230) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20234_E1963055.pnach b/patches/SLPS-20234_E1963055.pnach index 35a19700..eb958f40 100644 --- a/patches/SLPS-20234_E1963055.pnach +++ b/patches/SLPS-20234_E1963055.pnach @@ -2,7 +2,7 @@ gametitle=Harry Potter to Himitsu no Heya (J)(SLPS-20234) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20245_510F1B72.pnach b/patches/SLPS-20245_510F1B72.pnach index b25cdcfd..8ff5bf46 100644 --- a/patches/SLPS-20245_510F1B72.pnach +++ b/patches/SLPS-20245_510F1B72.pnach @@ -2,7 +2,7 @@ gametitle=LowRider - Round the World (J)(SLPS-20245) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20247_EF8130D1.pnach b/patches/SLPS-20247_EF8130D1.pnach index e05cbd05..cc4c23b1 100644 --- a/patches/SLPS-20247_EF8130D1.pnach +++ b/patches/SLPS-20247_EF8130D1.pnach @@ -2,7 +2,7 @@ gametitle=Lotus Challenge (J)(SLPS-20247) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20251_8C104E5A.pnach b/patches/SLPS-20251_8C104E5A.pnach index 54b4ba09..31e67e6b 100644 --- a/patches/SLPS-20251_8C104E5A.pnach +++ b/patches/SLPS-20251_8C104E5A.pnach @@ -2,7 +2,7 @@ gametitle=Makai Senki Disgaea (SLPS-20251) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 +author=nemesis2000 patch=1,EE,0014c39c,word,3c033f40 patch=1,EE,0014c3a4,word,e7a000e4 patch=1,EE,0014c3a8,word,46000003 diff --git a/patches/SLPS-20266_7C1AD726.pnach b/patches/SLPS-20266_7C1AD726.pnach index 81eb65bf..84ed54ac 100644 --- a/patches/SLPS-20266_7C1AD726.pnach +++ b/patches/SLPS-20266_7C1AD726.pnach @@ -2,7 +2,7 @@ gametitle=Baskelian (J)(SLPS-20266) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20280_90D2D375.pnach b/patches/SLPS-20280_90D2D375.pnach index 4a80c8f2..0e2c9233 100644 --- a/patches/SLPS-20280_90D2D375.pnach +++ b/patches/SLPS-20280_90D2D375.pnach @@ -2,7 +2,7 @@ gametitle=Mahou no Pumpkin (J)(SLPS-20280) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20291_2EA99E16.pnach b/patches/SLPS-20291_2EA99E16.pnach index 9a68eac0..9089e55f 100644 --- a/patches/SLPS-20291_2EA99E16.pnach +++ b/patches/SLPS-20291_2EA99E16.pnach @@ -2,7 +2,7 @@ gametitle=Fish Eyes 3 - Ki Oku no Hahen-tachi (J)(SLPS-20291) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20295_5CBB11E6.pnach b/patches/SLPS-20295_5CBB11E6.pnach index 6c14dff4..73692e41 100644 --- a/patches/SLPS-20295_5CBB11E6.pnach +++ b/patches/SLPS-20295_5CBB11E6.pnach @@ -2,7 +2,7 @@ gametitle=F1 Career Challenge (J)(SLPS-20295) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20300_A8700356.pnach b/patches/SLPS-20300_A8700356.pnach index 416467cb..46aac855 100644 --- a/patches/SLPS-20300_A8700356.pnach +++ b/patches/SLPS-20300_A8700356.pnach @@ -2,7 +2,7 @@ gametitle=Kidou Senshi Gundam - SEED (J)(SLPS-20300) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20301_FEE46123.pnach b/patches/SLPS-20301_FEE46123.pnach index 6702c582..55da83d0 100644 --- a/patches/SLPS-20301_FEE46123.pnach +++ b/patches/SLPS-20301_FEE46123.pnach @@ -2,7 +2,7 @@ gametitle=Gachinko Pro Yakyuu (J)(SLPS-20301) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Wide hack 16:9 diff --git a/patches/SLPS-20305_AD5C679D.pnach b/patches/SLPS-20305_AD5C679D.pnach index 1941415e..7abae905 100644 --- a/patches/SLPS-20305_AD5C679D.pnach +++ b/patches/SLPS-20305_AD5C679D.pnach @@ -2,7 +2,7 @@ gametitle=Real Sports Pro Yakyuu (J)(SLPS-20305) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20329_0B359BBF.pnach b/patches/SLPS-20329_0B359BBF.pnach index 6ad59869..944da0c1 100644 --- a/patches/SLPS-20329_0B359BBF.pnach +++ b/patches/SLPS-20329_0B359BBF.pnach @@ -2,7 +2,7 @@ gametitle=Kamen Rider 555 (J)(SLPS-20329) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20367_6FC373B9.pnach b/patches/SLPS-20367_6FC373B9.pnach index a526a6c3..e99e1f10 100644 --- a/patches/SLPS-20367_6FC373B9.pnach +++ b/patches/SLPS-20367_6FC373B9.pnach @@ -2,7 +2,7 @@ gametitle=Curry House Coco Ichibanya (NTSC-J)(SLPS-20367) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,0013497c,word,3c013f40 //00000000 diff --git a/patches/SLPS-20369_823A7E69.pnach b/patches/SLPS-20369_823A7E69.pnach index 40de5536..6caed4eb 100644 --- a/patches/SLPS-20369_823A7E69.pnach +++ b/patches/SLPS-20369_823A7E69.pnach @@ -2,7 +2,7 @@ gametitle=Kinnikuman Generations (J)(SLPS-20369) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20380_927D3EB4.pnach b/patches/SLPS-20380_927D3EB4.pnach index 0103c537..3a344d48 100644 --- a/patches/SLPS-20380_927D3EB4.pnach +++ b/patches/SLPS-20380_927D3EB4.pnach @@ -2,7 +2,7 @@ gametitle=Shinkon Gattai Godannar!! [NTSC-J] (SLPS-20380) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Gaint +author=Little Giant // 16:10 //patch=1,EE,00103f94,word,3c013f55 //00000000 hor fov diff --git a/patches/SLPS-20381_04D450CC.pnach b/patches/SLPS-20381_04D450CC.pnach index a283a247..18308344 100644 --- a/patches/SLPS-20381_04D450CC.pnach +++ b/patches/SLPS-20381_04D450CC.pnach @@ -2,7 +2,7 @@ gametitle=Monkey Turn V (J)(SLPS-20381) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20398_CCF46486.pnach b/patches/SLPS-20398_CCF46486.pnach index b4255abe..642b913b 100644 --- a/patches/SLPS-20398_CCF46486.pnach +++ b/patches/SLPS-20398_CCF46486.pnach @@ -2,7 +2,7 @@ gametitle=La Pucelle: Hikari no Seijo Densetsu Nishuu 2-Shu-me hajimemashita (J) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas (NTSC-J by Arapapa) +author=El_Patas (NTSC-J by Arapapa) //Gameplay 16:9 diff --git a/patches/SLPS-20402_37BA81B1.pnach b/patches/SLPS-20402_37BA81B1.pnach index 25faae60..e3599871 100644 --- a/patches/SLPS-20402_37BA81B1.pnach +++ b/patches/SLPS-20402_37BA81B1.pnach @@ -2,7 +2,7 @@ gametitle=Kamen Rider Blade (J)(SLPS-20402) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20410_BE3F85FF.pnach b/patches/SLPS-20410_BE3F85FF.pnach index 66e46e4d..e877f943 100644 --- a/patches/SLPS-20410_BE3F85FF.pnach +++ b/patches/SLPS-20410_BE3F85FF.pnach @@ -2,7 +2,7 @@ gametitle=Phantom Kingdom (J)(SLPS-20410) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLPS-20416_7142AF8B.pnach b/patches/SLPS-20416_7142AF8B.pnach index 79cfdbe6..f967579a 100644 --- a/patches/SLPS-20416_7142AF8B.pnach +++ b/patches/SLPS-20416_7142AF8B.pnach @@ -2,7 +2,7 @@ gametitle=Onmyou Taisenki - Byakko Enbu (With_Eyetoy) (J)(SLPS-20416) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20417_55D22FA4.pnach b/patches/SLPS-20417_55D22FA4.pnach index c3105eac..36586b4e 100644 --- a/patches/SLPS-20417_55D22FA4.pnach +++ b/patches/SLPS-20417_55D22FA4.pnach @@ -2,7 +2,7 @@ gametitle=Onmyou Taisenki - Byakko Enbu [NTSC-J] [SLPS-20417] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20420_3B6F3D8C.pnach b/patches/SLPS-20420_3B6F3D8C.pnach index 31117e19..f527e352 100644 --- a/patches/SLPS-20420_3B6F3D8C.pnach +++ b/patches/SLPS-20420_3B6F3D8C.pnach @@ -2,7 +2,7 @@ gametitle=Ultraman Nexus (J)(SLPS-20420) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20423_7BE628C2.pnach b/patches/SLPS-20423_7BE628C2.pnach index 2736b5d4..47a28404 100644 --- a/patches/SLPS-20423_7BE628C2.pnach +++ b/patches/SLPS-20423_7BE628C2.pnach @@ -2,7 +2,7 @@ gametitle=LEGO Star Wars (J)(SLPS-20423) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20440_8DD94147.pnach b/patches/SLPS-20440_8DD94147.pnach index 4586651b..d7480581 100644 --- a/patches/SLPS-20440_8DD94147.pnach +++ b/patches/SLPS-20440_8DD94147.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 88 - The Mini Bijo Keikan (J)(SLPS-20440) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20441_F1FD3B5D.pnach b/patches/SLPS-20441_F1FD3B5D.pnach index 2b09955f..9881e042 100644 --- a/patches/SLPS-20441_F1FD3B5D.pnach +++ b/patches/SLPS-20441_F1FD3B5D.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 87: The Nadesico (J)(SLPS-20441) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by sergx12 & ElHecht (NTSC-J by Arapapa) +author=sergx12 & ElHecht (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPS-20444_7E9FD243.pnach b/patches/SLPS-20444_7E9FD243.pnach index 5b2397ed..ff5ab86b 100644 --- a/patches/SLPS-20444_7E9FD243.pnach +++ b/patches/SLPS-20444_7E9FD243.pnach @@ -2,7 +2,7 @@ gametitle=The Oneechanbara 2 [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,20446CB4,extended,3F400000 diff --git a/patches/SLPS-20445_B94D2F0D.pnach b/patches/SLPS-20445_B94D2F0D.pnach index c4b58c1f..7359ac0b 100644 --- a/patches/SLPS-20445_B94D2F0D.pnach +++ b/patches/SLPS-20445_B94D2F0D.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Ultimate Vol.28 - The Gaidou! Genocide Grand Prix - [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,2074302C,extended,3f100000 //3f400000 X-Fov diff --git a/patches/SLPS-20447_E26A225F.pnach b/patches/SLPS-20447_E26A225F.pnach index 22be8218..161667bc 100644 --- a/patches/SLPS-20447_E26A225F.pnach +++ b/patches/SLPS-20447_E26A225F.pnach @@ -2,7 +2,7 @@ gametitle=Kamen Rider Hibiki (J)(SLPS-20447) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20452_5C432A3F.pnach b/patches/SLPS-20452_5C432A3F.pnach index af837d17..29455d24 100644 --- a/patches/SLPS-20452_5C432A3F.pnach +++ b/patches/SLPS-20452_5C432A3F.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Ultimate Vol. 30 - Kourin! Zokushi God (J)(SLPS-204 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Wide Screen 16:9 diff --git a/patches/SLPS-20453_602B7A48.pnach b/patches/SLPS-20453_602B7A48.pnach index 79d2a41b..3ed30602 100644 --- a/patches/SLPS-20453_602B7A48.pnach +++ b/patches/SLPS-20453_602B7A48.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Ultimate Vol.29 - K-1 Premium 2005 Dynamite!! (J)(S [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20456_9F4E45A3.pnach b/patches/SLPS-20456_9F4E45A3.pnach index e930f4c4..d755ea0f 100644 --- a/patches/SLPS-20456_9F4E45A3.pnach +++ b/patches/SLPS-20456_9F4E45A3.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 95 - The Zombie vs. Kyuukyuusha (J)(SLPS-20456 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20458_7686C666.pnach b/patches/SLPS-20458_7686C666.pnach index 6508e4f3..800afc3c 100644 --- a/patches/SLPS-20458_7686C666.pnach +++ b/patches/SLPS-20458_7686C666.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 96 - The Pirate (J)(SLPS-20458) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20463_96F3F344.pnach b/patches/SLPS-20463_96F3F344.pnach index 2c9b769a..4aac65cd 100644 --- a/patches/SLPS-20463_96F3F344.pnach +++ b/patches/SLPS-20463_96F3F344.pnach @@ -2,7 +2,7 @@ gametitle=Ougon Kishi Garo [NTSC-J] (SLPS-20463) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //16:9 patch=1,EE,0020C7F8,word,3c013f40 //00000000 diff --git a/patches/SLPS-20465_5FF52634.pnach b/patches/SLPS-20465_5FF52634.pnach index 962dce30..3b4a4b97 100644 --- a/patches/SLPS-20465_5FF52634.pnach +++ b/patches/SLPS-20465_5FF52634.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 100 - The Otoko Tachi no Kijuu Houza (J)(SLPS- [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20466_C5B75C7C.pnach b/patches/SLPS-20466_C5B75C7C.pnach index f2c5a80e..a0e161aa 100644 --- a/patches/SLPS-20466_C5B75C7C.pnach +++ b/patches/SLPS-20466_C5B75C7C.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 101 - The Oneechanpon [SLPS-20466] [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,20495104,extended,3F400000 diff --git a/patches/SLPS-20467_6B7DDDD9.pnach b/patches/SLPS-20467_6B7DDDD9.pnach index 80a6877f..b019e2dd 100644 --- a/patches/SLPS-20467_6B7DDDD9.pnach +++ b/patches/SLPS-20467_6B7DDDD9.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 102 - The Fuhyou - Senjou no Inu Tachi (J)(SLP [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20468_0C370E94.pnach b/patches/SLPS-20468_0C370E94.pnach index 51da789b..2c65a872 100644 --- a/patches/SLPS-20468_0C370E94.pnach +++ b/patches/SLPS-20468_0C370E94.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 106 - The Block Kuzushi Quest - Dragon Kingdom [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20474_F3A2AB09.pnach b/patches/SLPS-20474_F3A2AB09.pnach index fd46d2f8..cafe5af7 100644 --- a/patches/SLPS-20474_F3A2AB09.pnach +++ b/patches/SLPS-20474_F3A2AB09.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 107 - The Honoo no Kakutou Banchou (J)(SLPS-20 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20476_715D9DD3.pnach b/patches/SLPS-20476_715D9DD3.pnach index 5eb4247e..1c1e1635 100644 --- a/patches/SLPS-20476_715D9DD3.pnach +++ b/patches/SLPS-20476_715D9DD3.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 108 - The Nippon Tokushubutai (J)(SLPS-20476) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20478_91A93F28.pnach b/patches/SLPS-20478_91A93F28.pnach index 855f5cba..a9e2f48c 100644 --- a/patches/SLPS-20478_91A93F28.pnach +++ b/patches/SLPS-20478_91A93F28.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 109 - The Taxi 2 (J)(SLPS-20478) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20481_E08D659B.pnach b/patches/SLPS-20481_E08D659B.pnach index 8f3c337a..665e04ec 100644 --- a/patches/SLPS-20481_E08D659B.pnach +++ b/patches/SLPS-20481_E08D659B.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol.112 - The Tousou Highway 2 - Road Warrior 2050 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20483_E4614547.pnach b/patches/SLPS-20483_E4614547.pnach index 4656075d..1951f050 100644 --- a/patches/SLPS-20483_E4614547.pnach +++ b/patches/SLPS-20483_E4614547.pnach @@ -2,7 +2,7 @@ gametitle=Kamen Rider Kabuto (J)(SLPS-20483) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20488_82481A67.pnach b/patches/SLPS-20488_82481A67.pnach index 9dee6493..de9d567f 100644 --- a/patches/SLPS-20488_82481A67.pnach +++ b/patches/SLPS-20488_82481A67.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 113: The Tairyou Jigoku [NTSC-J] (SLPS_204.88) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00307D74,word,3C013F40 //3C013F80 (Increases hor. axis) diff --git a/patches/SLPS-20488_B2486AF4.pnach b/patches/SLPS-20488_B2486AF4.pnach new file mode 100644 index 00000000..f84bb048 --- /dev/null +++ b/patches/SLPS-20488_B2486AF4.pnach @@ -0,0 +1,8 @@ +gametitle=Simple 2000 Series Vol. 113: The Tairyou Jigoku (NTSC-J) SLPS-20488 B2486AF4 (Spanish Fan Translation) + +[Widescreen 16:9] +gsaspectratio=16:9 +author=El_Patas + +//Gameplay 16:9 +patch=1,EE,00307D74,word,3C013F40 //3C013F80 (Increases hor. axis) \ No newline at end of file diff --git a/patches/SLPS-20493_333F1F59.pnach b/patches/SLPS-20493_333F1F59.pnach index f4761a75..5b374f10 100644 --- a/patches/SLPS-20493_333F1F59.pnach +++ b/patches/SLPS-20493_333F1F59.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 116 - The Neko Mura no Hitobito Pagu Daikan no [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20494_54673FA9.pnach b/patches/SLPS-20494_54673FA9.pnach index 433a3667..50dc837c 100644 --- a/patches/SLPS-20494_54673FA9.pnach +++ b/patches/SLPS-20494_54673FA9.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 117 - The Zerosen (J)(SLPS20494) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20497_88F8F8B1.pnach b/patches/SLPS-20497_88F8F8B1.pnach index 70dd1d93..73d8f8fd 100644 --- a/patches/SLPS-20497_88F8F8B1.pnach +++ b/patches/SLPS-20497_88F8F8B1.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 119 - The Survival Game 2 (J)(SLPS-20497) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20499_AA75FE6A.pnach b/patches/SLPS-20499_AA75FE6A.pnach index 36f41958..61b9d2a5 100644 --- a/patches/SLPS-20499_AA75FE6A.pnach +++ b/patches/SLPS-20499_AA75FE6A.pnach @@ -2,7 +2,7 @@ gametitle=Inaka Kurasi - Nan no Shima no Monogatari (Super Best Collection) [NTS [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-20500_0A283CB4.pnach b/patches/SLPS-20500_0A283CB4.pnach index ae773fe5..6d0dbb7f 100644 --- a/patches/SLPS-20500_0A283CB4.pnach +++ b/patches/SLPS-20500_0A283CB4.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 120 - The Saigo no Nippon Tsuwamono [SLPS-2050 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25001_B3999B20.pnach b/patches/SLPS-25001_B3999B20.pnach index 0488aff6..420bae3b 100644 --- a/patches/SLPS-25001_B3999B20.pnach +++ b/patches/SLPS-25001_B3999B20.pnach @@ -2,7 +2,7 @@ gametitle=Eternal Ring (J)(SLPS-25001) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen Hack 16:9 diff --git a/patches/SLPS-25002_7894BA09.pnach b/patches/SLPS-25002_7894BA09.pnach index f469daa2..3e958580 100644 --- a/patches/SLPS-25002_7894BA09.pnach +++ b/patches/SLPS-25002_7894BA09.pnach @@ -2,7 +2,7 @@ gametitle=Dead or Alive 2 (SLPS_25002) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,203B0400,word,3F400000 patch=1,EE,203B0C20,word,3F400000 patch=1,EE,203B1440,word,3F400000 diff --git a/patches/SLPS-25004_31603A01.pnach b/patches/SLPS-25004_31603A01.pnach index 999820b8..6b3aef70 100644 --- a/patches/SLPS-25004_31603A01.pnach +++ b/patches/SLPS-25004_31603A01.pnach @@ -2,7 +2,7 @@ gametitle=Kensetsu Juuki Kenka Battle - Buchigire Kongou!! [NTSC-J] [PBPX-95201] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas (NTSC-J by Arapapa) +author=El_Patas (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPS-25007_F3F906DE.pnach b/patches/SLPS-25007_F3F906DE.pnach index bb42866d..a0794782 100644 --- a/patches/SLPS-25007_F3F906DE.pnach +++ b/patches/SLPS-25007_F3F906DE.pnach @@ -2,7 +2,7 @@ gametitle=Armored Core 2 [NTSC-J] (SLPS-25007) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002885ec,word,3c013f40 // 00000000 hor fov gameplay diff --git a/patches/SLPS-25009_AA0D46D4.pnach b/patches/SLPS-25009_AA0D46D4.pnach index 059ac880..2b8c5973 100644 --- a/patches/SLPS-25009_AA0D46D4.pnach +++ b/patches/SLPS-25009_AA0D46D4.pnach @@ -2,7 +2,7 @@ gametitle=G-Saviour (J)(SLPS-25009) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25010_B937D335.pnach b/patches/SLPS-25010_B937D335.pnach index 6a34f675..86e2a95c 100644 --- a/patches/SLPS-25010_B937D335.pnach +++ b/patches/SLPS-25010_B937D335.pnach @@ -2,7 +2,7 @@ gametitle=Unison (J)(SLPS-25010) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25012_059F0DE7.pnach b/patches/SLPS-25012_059F0DE7.pnach index bd09adb9..7a8c7d67 100644 --- a/patches/SLPS-25012_059F0DE7.pnach +++ b/patches/SLPS-25012_059F0DE7.pnach @@ -2,7 +2,7 @@ gametitle=Hajime no Ippo - Victorious Boxers (J)(SLPS-25012) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25013_1DE78E93.pnach b/patches/SLPS-25013_1DE78E93.pnach index 996b11bd..d022d12d 100644 --- a/patches/SLPS-25013_1DE78E93.pnach +++ b/patches/SLPS-25013_1DE78E93.pnach @@ -2,7 +2,7 @@ gametitle=Kuri Kuri Mix (J)(SLPS-25013) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas (NTSC-K by Arapapa) +author=El_Patas (NTSC-K by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPS-25015_6F9C4D7C.pnach b/patches/SLPS-25015_6F9C4D7C.pnach index 375e90ce..649c1c48 100644 --- a/patches/SLPS-25015_6F9C4D7C.pnach +++ b/patches/SLPS-25015_6F9C4D7C.pnach @@ -2,7 +2,7 @@ gametitle=Choro Q HG (J)(SLPS-25015) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25016_62B8752C.pnach b/patches/SLPS-25016_62B8752C.pnach index 14602b6a..ebd87923 100644 --- a/patches/SLPS-25016_62B8752C.pnach +++ b/patches/SLPS-25016_62B8752C.pnach @@ -2,7 +2,7 @@ gametitle=Neo Atlas III (J)(SLPS-25016) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25018_B4580F15.pnach b/patches/SLPS-25018_B4580F15.pnach index 647fbcf6..dad02aff 100644 --- a/patches/SLPS-25018_B4580F15.pnach +++ b/patches/SLPS-25018_B4580F15.pnach @@ -2,7 +2,7 @@ gametitle=Sidewinder Max [NTSC-J] (SLPS_250.18) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00123860,word,3C0143C0 //3C014400 Zoom diff --git a/patches/SLPS-25020_3FDDF5B2.pnach b/patches/SLPS-25020_3FDDF5B2.pnach index 3f88f564..4a6d4fa4 100644 --- a/patches/SLPS-25020_3FDDF5B2.pnach +++ b/patches/SLPS-25020_3FDDF5B2.pnach @@ -2,7 +2,7 @@ gametitle=Kidou Senshi Gundam (J)(SLPS-25020) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25022_5B38173C.pnach b/patches/SLPS-25022_5B38173C.pnach index 50599fa8..f3d01129 100644 --- a/patches/SLPS-25022_5B38173C.pnach +++ b/patches/SLPS-25022_5B38173C.pnach @@ -2,7 +2,7 @@ gametitle=Cool Boarders - Code Alien (J)(SLPS-25022) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25023_18C8487E.pnach b/patches/SLPS-25023_18C8487E.pnach index 0fb2aa6f..7acfff21 100644 --- a/patches/SLPS-25023_18C8487E.pnach +++ b/patches/SLPS-25023_18C8487E.pnach @@ -2,7 +2,7 @@ gametitle=The Bouncer (Japan) [SLPS-25023] [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,20391a3c,extended,3F400000 diff --git a/patches/SLPS-25026_82C02240.pnach b/patches/SLPS-25026_82C02240.pnach index bf2d44e6..56630bbc 100644 --- a/patches/SLPS-25026_82C02240.pnach +++ b/patches/SLPS-25026_82C02240.pnach @@ -2,7 +2,7 @@ gametitle=Dead or Alive 2 - Hard*Core (SLPS_25026) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,204588D0,word,3F400000 patch=1,EE,20459140,word,3F400000 patch=1,EE,204599B0,word,3F400000 diff --git a/patches/SLPS-25027_D7416293.pnach b/patches/SLPS-25027_D7416293.pnach index 28eb5080..20fc5404 100644 --- a/patches/SLPS-25027_D7416293.pnach +++ b/patches/SLPS-25027_D7416293.pnach @@ -2,7 +2,7 @@ gametitle=Golf Paradise DX (J)(SLPS-25027) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25028_F9D5C6A6.pnach b/patches/SLPS-25028_F9D5C6A6.pnach index 70227fec..81ab7fee 100644 --- a/patches/SLPS-25028_F9D5C6A6.pnach +++ b/patches/SLPS-25028_F9D5C6A6.pnach @@ -2,7 +2,7 @@ gametitle=Shutokou Battle 0 (J)(SLPS-25028) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa and VIRGIN KLM +author=Arapapa and VIRGIN KLM //Widescreen hack 16:9 @@ -24,15 +24,15 @@ patch=1,EE,20336120,word,3F400000 //47 02 00 00 72 01 00 00 00 00 00 00 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3F 00 00 80 3F patch=1,EE,20336150,word,0000022E //00 00 80 3F 00 00 80 3F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 02 00 00 C0 01 00 00 00 00 00 00 01 00 02 00 45 00 00 00 -patch=1,EE,20336168,word,3F400000 (1st) +patch=1,EE,20336168,word,3F400000 //(1st) //FC 01 00 00 80 01 00 00 00 00 00 00 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3F 00 00 80 3F patch=1,EE,20336198,word,000001F5 //00 00 80 3F 00 00 80 3F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 02 00 00 C0 01 00 00 00 00 00 00 01 00 02 00 45 00 00 00 -patch=1,EE,203361B0,word,3F400000 (2nd) +patch=1,EE,203361B0,word,3F400000 //(2nd) //15 02 00 00 80 01 00 00 00 00 00 00 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3F 00 00 80 3F patch=1,EE,203361E0,word,00000208 //00 00 80 3F 00 00 80 3F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 02 00 00 C0 01 00 00 00 00 00 00 01 00 02 00 45 00 00 00 -patch=1,EE,203361F8,word,3F400000 (3rd) +patch=1,EE,203361F8,word,3F400000 //(3rd) //2E 02 00 00 80 01 00 00 00 00 00 00 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3F 00 00 80 3F patch=1,EE,20336228,word,0000021B //00 00 80 3F 00 00 80 3F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 02 00 00 C0 01 00 00 00 00 00 00 01 00 02 00 29 00 00 00 @@ -81,7 +81,7 @@ patch=1,EE,20308700,word,3F400000 patch=1,EE,203086e8,word,00000051 //00000021 //00 00 80 3F 00 00 80 3F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 02 00 00 C0 01 00 00 CC CC CC 80 03 00 02 00 FF FF FF FF -patch=1,EE,20308748,word,3F400000 (1st) +patch=1,EE,20308748,word,3F400000 //(1st) //80 01 00 00 86 01 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3F 00 00 80 3F patch=1,EE,20308730,word,0000019b //00000180 @@ -94,7 +94,7 @@ patch=1,EE,2074F514,extended,3F400000 [No-Interlacing] gsinterlacemode=1 -comment=No Interlacing Patch by Tokman5 +author=Tokman5 //While FMV is playing, deinterlacing will be temporary disabled due to streaming problem patch=1,EE,D06452A0,extended,01100001 patch=1,EE,20263518,extended,34022000 diff --git a/patches/SLPS-25032_C8BACD69.pnach b/patches/SLPS-25032_C8BACD69.pnach index 1f0c43f2..abfc89a4 100644 --- a/patches/SLPS-25032_C8BACD69.pnach +++ b/patches/SLPS-25032_C8BACD69.pnach @@ -2,7 +2,7 @@ gametitle=Golful Golf (J)(SLPS-25032) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25033_1645DE53.pnach b/patches/SLPS-25033_1645DE53.pnach index 396dd5b2..68a15745 100644 --- a/patches/SLPS-25033_1645DE53.pnach +++ b/patches/SLPS-25033_1645DE53.pnach @@ -2,7 +2,7 @@ gametitle=Klonoa 2:Lunatea's Veil (SLPS_25033) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by synce (NTSC-K by Arapapa) +author=synce (NTSC-K by Arapapa) //16:9 (00000000 00000000 43ad1346 00000000) patch=1,EE,00303fac,word,3c013f40 diff --git a/patches/SLPS-25035_ED1F2721.pnach b/patches/SLPS-25035_ED1F2721.pnach index b267796d..2429bc10 100644 --- a/patches/SLPS-25035_ED1F2721.pnach +++ b/patches/SLPS-25035_ED1F2721.pnach @@ -2,7 +2,7 @@ gametitle=Monster Farm [NTSC-J] [SLPS-25035] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25040_5F2A0E36.pnach b/patches/SLPS-25040_5F2A0E36.pnach index a65e7b76..8313776c 100644 --- a/patches/SLPS-25040_5F2A0E36.pnach +++ b/patches/SLPS-25040_5F2A0E36.pnach @@ -2,7 +2,7 @@ gametitle=Armored Core 2 - Another Age [NTSC-J] (SLPS-25040) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002c45a4,word,3c013f40 // 00000000 hor fov gameplay diff --git a/patches/SLPS-25048_626CF8C1.pnach b/patches/SLPS-25048_626CF8C1.pnach index eeae520f..14f36982 100644 --- a/patches/SLPS-25048_626CF8C1.pnach +++ b/patches/SLPS-25048_626CF8C1.pnach @@ -2,7 +2,7 @@ gametitle=Zeonic Front - Kidou Senshi Gundam 0079 (J)(SLPS-25048) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25050_6A4EFE60.pnach b/patches/SLPS-25050_6A4EFE60.pnach index aac9c762..433e104f 100644 --- a/patches/SLPS-25050_6A4EFE60.pnach +++ b/patches/SLPS-25050_6A4EFE60.pnach @@ -2,7 +2,7 @@ gametitle=Final Fantasy X (J)(SLPS-25050) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesiss2000 +author=nemesis2000 //Widescreen hack 16:9 diff --git a/patches/SLPS-25052_5ED8FB53.pnach b/patches/SLPS-25052_5ED8FB53.pnach index f7f596a1..2affa786 100644 --- a/patches/SLPS-25052_5ED8FB53.pnach +++ b/patches/SLPS-25052_5ED8FB53.pnach @@ -2,7 +2,7 @@ gametitle=Ace Combat 04: Shattered Skies (J) (SLPS_25052) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (pnach NTSC-J by Arapapa) +author=nemesis2000 (pnach NTSC-J by Arapapa) //widescreen fix patch=1,EE,003cf4cc,word,441CF7AE diff --git a/patches/SLPS-25054_CA067714.pnach b/patches/SLPS-25054_CA067714.pnach index 9de169ad..79d2a4e9 100644 --- a/patches/SLPS-25054_CA067714.pnach +++ b/patches/SLPS-25054_CA067714.pnach @@ -2,7 +2,7 @@ gametitle=Tamamayu Monogatari 2 - Horobi no Mushi [SLPS-25054] [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,21E2BB8C,extended,3F400000 diff --git a/patches/SLPS-25057_04C3765E.pnach b/patches/SLPS-25057_04C3765E.pnach index d4801047..a37f4bf7 100644 --- a/patches/SLPS-25057_04C3765E.pnach +++ b/patches/SLPS-25057_04C3765E.pnach @@ -2,7 +2,7 @@ gametitle=King's Field IV (J)(SLPS-25057) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25060_41C1D2B2.pnach b/patches/SLPS-25060_41C1D2B2.pnach index b401462f..4ff74bf7 100644 --- a/patches/SLPS-25060_41C1D2B2.pnach +++ b/patches/SLPS-25060_41C1D2B2.pnach @@ -2,7 +2,7 @@ gametitle=Kidou Senshi Gundam - Meguriai Sora (J)9SLPS-25060) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25061_99336083.pnach b/patches/SLPS-25061_99336083.pnach index 725aec06..2ea5992f 100644 --- a/patches/SLPS-25061_99336083.pnach +++ b/patches/SLPS-25061_99336083.pnach @@ -2,7 +2,7 @@ gametitle=Kidou Senshi Gundam Ver. 1.5 (Gundam the Best) (J)(SLPS-25061) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25064_D96D057A.pnach b/patches/SLPS-25064_D96D057A.pnach index 67c82cd9..76378532 100644 --- a/patches/SLPS-25064_D96D057A.pnach +++ b/patches/SLPS-25064_D96D057A.pnach @@ -2,7 +2,7 @@ gametitle=Seaman - Kindan no Pet - Gaze Hakushi no Jikken Shima (Limited Edition [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPS-25069_D7BBDD65.pnach b/patches/SLPS-25069_D7BBDD65.pnach index 669f8b89..ba1278cc 100644 --- a/patches/SLPS-25069_D7BBDD65.pnach +++ b/patches/SLPS-25069_D7BBDD65.pnach @@ -2,7 +2,7 @@ gametitle=FIFA 2002 - Road to World Cup (J)(SLPS-25069) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25074_9883194E.pnach b/patches/SLPS-25074_9883194E.pnach index b53ffe25..f1e4e17f 100644 --- a/patches/SLPS-25074_9883194E.pnach +++ b/patches/SLPS-25074_9883194E.pnach @@ -1,48 +1,49 @@ -gametitle=Zero 零 Zero (J)(SLPS-25074) +gametitle=Zero 零 Zero * NTSC-J * SLPS-25074 * 9883194E +// Project Zero - Fatal Frame [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by nemesis2000 and devina40 (NTSC-J by Arapapa) +author=nemesis2000 & Devina - ported by arapapa -//Game Play -patch=1,EE,00186f14,word,3c013f40 //3c013f80 +// Game Play +patch=1,EE,00186f14,word,3c013f40 // 3c013f80 -//Cutscenes by pgert -patch=1,EE,001828ec,word,3C013F40 //3C013F80 +// Cutscenes by pgert +patch=1,EE,001828ec,word,3C013F40 // 3C013F80 -//Cut-scene render fix -//0045013c 00208144 280040e6 -patch=1,EE,001828e0,word,3c0145C0 //3c014500 +// Cut-scene Render fix +// 0045013c 00208144 280040e6 +patch=1,EE,001828e0,word,3c0145C0 // 3c014500 -//FMV's fix +// FMV fix patch=1,EE,0017f520,word,24027100 patch=1,EE,0017f530,word,24027100 patch=1,EE,0017f538,word,24091e00 -//Lens Flare's fix -//Modified based on PAL (0,875 instead of 0,75) - better. -patch=1,EE,0013601c,word,3c013f12 //3c013f00 -patch=1,EE,001349a8,word,3C01428C //3c0142a0 -patch=1,EE,00134a8c,word,3C01410C //3c014120 -patch=1,EE,00134a54,word,3C014128 //3c014140 -patch=1,EE,00134a10,word,3C0141A8 //3c0141c0 +// Lens Flare's fix +// Modified based on PAL (0,875 instead of 0,75) - better. +patch=1,EE,0013601c,word,3c013f12 // 3c013f00 +patch=1,EE,001349a8,word,3C01428C // 3c0142a0 +patch=1,EE,00134a8c,word,3C01410C // 3c014120 +patch=1,EE,00134a54,word,3C014128 // 3c014140 +patch=1,EE,00134a10,word,3C0141A8 // 3c0141c0 -//Remove effects (Memory Hack) -//6666f643 0000803f 0000803f -//patch=1,EE,203496CC,extended,00000000 //blurry bloom -//00002044 0000e043 0000803f 0000803f 00000000 00000000 (10) -//patch=1,EE,20349B4C,extended,00000000 //dark filter -//00002044 0000e043 0000803f 0000803f 00000000 00000000 (8) -//patch=1,EE,203499DC,extended,00000000 //post process and noise +// ========== -//No interlacing by asasega -//patch=1,EE,2022e3cc,extended,00000000 +[Disable Blurry Bloom effect] +// 6666f643 0000803f 0000803f +patch=1,EE,203496CC,extended,00000000 +[Disable Dark Filter effect] +// 00002044 0000e043 0000803f 0000803f 00000000 00000000 (10) +patch=1,EE,20349B4C,extended,00000000 + +[Disable Post-Process and Noise effect] +// 00002044 0000e043 0000803f 0000803f 00000000 00000000 (8) +patch=1,EE,203499DC,extended,00000000 [No-Interlacing] gsinterlacemode=1 +author=asasega & synce comment=Progressive Scan Hack - patch=1,EE,2022E3CC,extended,00000000 - - diff --git a/patches/SLPS-25076_7993AD80.pnach b/patches/SLPS-25076_7993AD80.pnach index a8fedec7..359f52a4 100644 --- a/patches/SLPS-25076_7993AD80.pnach +++ b/patches/SLPS-25076_7993AD80.pnach @@ -2,7 +2,7 @@ gametitle=Sidewinder F (NTSC-J) (SLPS_250.76) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001472D8,word,3C0143C0 //3C014400 Zoom diff --git a/patches/SLPS-25077_A4C84DE7.pnach b/patches/SLPS-25077_A4C84DE7.pnach index 93753944..e12a93fc 100644 --- a/patches/SLPS-25077_A4C84DE7.pnach +++ b/patches/SLPS-25077_A4C84DE7.pnach @@ -2,7 +2,7 @@ gametitle=Vampire Night (J)(SLPS-25077) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht(NTSC-J by Arapapa) +author=ElHecht(NTSC-J by Arapapa) // 16:9 //00000000 4900023c 20544224 diff --git a/patches/SLPS-25084_732086B9.pnach b/patches/SLPS-25084_732086B9.pnach index 91ad7297..26b032f1 100644 --- a/patches/SLPS-25084_732086B9.pnach +++ b/patches/SLPS-25084_732086B9.pnach @@ -2,7 +2,7 @@ gametitle=Thunder Strike - Operation Phoenix (J)(SLPS-25084) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25085_6F991F52.pnach b/patches/SLPS-25085_6F991F52.pnach index 1b037a95..c247ac44 100644 --- a/patches/SLPS-25085_6F991F52.pnach +++ b/patches/SLPS-25085_6F991F52.pnach @@ -2,7 +2,7 @@ gametitle=Soul Reaver 2 (J)(SLPS-25085) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa and nemesis2000 +author=Arapapa and nemesis2000 //Widescreen hack 16:9 diff --git a/patches/SLPS-25094_DFC8C288.pnach b/patches/SLPS-25094_DFC8C288.pnach index cbf21c16..a20e7040 100644 --- a/patches/SLPS-25094_DFC8C288.pnach +++ b/patches/SLPS-25094_DFC8C288.pnach @@ -2,7 +2,7 @@ gametitle=Reveal Fantasia [NTSC-J] (SLPS-25094) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //16:9 patch=1,EE,20107cec,extended,3c123ec0 diff --git a/patches/SLPS-25100_26173F9A.pnach b/patches/SLPS-25100_26173F9A.pnach index 25741246..d032e89a 100644 --- a/patches/SLPS-25100_26173F9A.pnach +++ b/patches/SLPS-25100_26173F9A.pnach @@ -2,7 +2,7 @@ gametitle=Tekken 4 [NTSC-J] (SLPS-25100) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,002174e8,word,3c013f40 diff --git a/patches/SLPS-25101_913CF83B.pnach b/patches/SLPS-25101_913CF83B.pnach index 2e76ce1d..b8cc9285 100644 --- a/patches/SLPS-25101_913CF83B.pnach +++ b/patches/SLPS-25101_913CF83B.pnach @@ -2,7 +2,7 @@ gametitle=Nichibeikan Pro Yakyuu - Final League (J)(SLPS-25101) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25102_4B4A5878.pnach b/patches/SLPS-25102_4B4A5878.pnach index 7ee9022b..d652e0fd 100644 --- a/patches/SLPS-25102_4B4A5878.pnach +++ b/patches/SLPS-25102_4B4A5878.pnach @@ -2,7 +2,7 @@ gametitle=Project Arms (J)(SLPS-25102) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25104_216658F6.pnach b/patches/SLPS-25104_216658F6.pnach index 83836dd4..8d62846e 100644 --- a/patches/SLPS-25104_216658F6.pnach +++ b/patches/SLPS-25104_216658F6.pnach @@ -2,7 +2,7 @@ gametitle=Super Robot Taisen Impact (J)(SLPS-25104) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25105_DB557147.pnach b/patches/SLPS-25105_DB557147.pnach index 14c8302f..8414d343 100644 --- a/patches/SLPS-25105_DB557147.pnach +++ b/patches/SLPS-25105_DB557147.pnach @@ -2,7 +2,7 @@ gametitle=Kingdom Hearts (NTSC-J) [SLPS-25105] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0011043c,word,3c0143d6 //render fix patch=1,EE,00110930,word,3c013f19 //hor value first half patch=1,EE,00110934,word,3421999a //hor value second half diff --git a/patches/SLPS-25108_DF3812A4.pnach b/patches/SLPS-25108_DF3812A4.pnach index e221be3a..f67fdc78 100644 --- a/patches/SLPS-25108_DF3812A4.pnach +++ b/patches/SLPS-25108_DF3812A4.pnach @@ -2,7 +2,7 @@ gametitle=Runabout 3 - Neo Age (J)(SLPS-25108) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25110_4471743C.pnach b/patches/SLPS-25110_4471743C.pnach index 36c7a96f..6b75437c 100644 --- a/patches/SLPS-25110_4471743C.pnach +++ b/patches/SLPS-25110_4471743C.pnach @@ -2,7 +2,7 @@ gametitle=Project FIFA Worldcup - Sorenara kimi ga daihyou kantoku (J)(SLPS-2511 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25112_D00E1931.pnach b/patches/SLPS-25112_D00E1931.pnach index bc9c73b0..eb75a804 100644 --- a/patches/SLPS-25112_D00E1931.pnach +++ b/patches/SLPS-25112_D00E1931.pnach @@ -2,7 +2,7 @@ gametitle=Armored Core 3 [NTSC-J] (SLPS-25112) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002e6c3c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPS-25113_3E359E0B.pnach b/patches/SLPS-25113_3E359E0B.pnach index 79809282..3391a869 100644 --- a/patches/SLPS-25113_3E359E0B.pnach +++ b/patches/SLPS-25113_3E359E0B.pnach @@ -2,7 +2,7 @@ gametitle=Zettaizetsumei Toshi [NTSC-J] (SLPS-25113) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //16:9 patch=1,EE,0013e3b4,word,3c023f40 //3c023f80 game play diff --git a/patches/SLPS-25123_672F3D8A.pnach b/patches/SLPS-25123_672F3D8A.pnach index fe1e443c..58899816 100644 --- a/patches/SLPS-25123_672F3D8A.pnach +++ b/patches/SLPS-25123_672F3D8A.pnach @@ -2,7 +2,7 @@ gametitle=Kidou Senshi Gundam Senki - Lost War Chronicles (J)(SLPS-25123) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25129_4405AA47.pnach b/patches/SLPS-25129_4405AA47.pnach index 022df2c9..4c1f5b78 100644 --- a/patches/SLPS-25129_4405AA47.pnach +++ b/patches/SLPS-25129_4405AA47.pnach @@ -2,7 +2,7 @@ gametitle=Hajime no Ippo - Victorious Boxers - Championship Version (PlayStation [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25148_2297BD1E.pnach b/patches/SLPS-25148_2297BD1E.pnach index 7e37a9fe..4f89d4f2 100644 --- a/patches/SLPS-25148_2297BD1E.pnach +++ b/patches/SLPS-25148_2297BD1E.pnach @@ -2,7 +2,7 @@ gametitle=Panel Quiz Attack 25 (J)(SLPS-25148) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25151_E560ED68.pnach b/patches/SLPS-25151_E560ED68.pnach index 2b2be3d7..f0ef7539 100644 --- a/patches/SLPS-25151_E560ED68.pnach +++ b/patches/SLPS-25151_E560ED68.pnach @@ -2,7 +2,7 @@ gametitle=Medal of Honor - Jishousaidai no Sakusen(Frontline) (NTSC-J)(SLPS-2515 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPS-25153_ECF38282.pnach b/patches/SLPS-25153_ECF38282.pnach index fa1caa57..f02f86e5 100644 --- a/patches/SLPS-25153_ECF38282.pnach +++ b/patches/SLPS-25153_ECF38282.pnach @@ -2,7 +2,7 @@ gametitle=Lilo and Stitch - Stitch no Daibouken (J)(SLPS-25153) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25155_9BD2779A.pnach b/patches/SLPS-25155_9BD2779A.pnach index 5ee22660..a1fc7470 100644 --- a/patches/SLPS-25155_9BD2779A.pnach +++ b/patches/SLPS-25155_9BD2779A.pnach @@ -2,7 +2,7 @@ gametitle=Ultraman Fighting Evolution 2 [NTSC-J] (SLPS-25155) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //16:9 patch=1,EE,002006B4,word,3C013F40 //3C013F80 diff --git a/patches/SLPS-25159_C0F2492E.pnach b/patches/SLPS-25159_C0F2492E.pnach index 99d9f1ad..a1fcc2c4 100644 --- a/patches/SLPS-25159_C0F2492E.pnach +++ b/patches/SLPS-25159_C0F2492E.pnach @@ -2,7 +2,7 @@ gametitle=Technic Beat (J)(SLPS-25159) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25166_0C786CEF.pnach b/patches/SLPS-25166_0C786CEF.pnach index 21c48fe2..f3be4ddc 100644 --- a/patches/SLPS-25166_0C786CEF.pnach +++ b/patches/SLPS-25166_0C786CEF.pnach @@ -2,7 +2,7 @@ gametitle=Kinkou Myaku Tansa Simulation - Ingot 79 (J)(SLPS-25166) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25169_124C0F8D.pnach b/patches/SLPS-25169_124C0F8D.pnach index 19f321e5..03c1e3ae 100644 --- a/patches/SLPS-25169_124C0F8D.pnach +++ b/patches/SLPS-25169_124C0F8D.pnach @@ -2,7 +2,7 @@ gametitle=Armored Core 3 - Silent Line [NTSC-J] (SLPS-25169) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0031e7f4,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPS-25170_49D60A00.pnach b/patches/SLPS-25170_49D60A00.pnach index 240214c2..19a0b07d 100644 --- a/patches/SLPS-25170_49D60A00.pnach +++ b/patches/SLPS-25170_49D60A00.pnach @@ -2,7 +2,7 @@ gametitle=SD Gundam G Generation Neo (J)(SLPS-25170) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25171_5327DC7F.pnach b/patches/SLPS-25171_5327DC7F.pnach index 2184c9c7..a1464476 100644 --- a/patches/SLPS-25171_5327DC7F.pnach +++ b/patches/SLPS-25171_5327DC7F.pnach @@ -2,7 +2,7 @@ gametitle=Lupin Sansei - Majutsuou no Isan (J)(SLPS-25171) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25174_2BA66E82.pnach b/patches/SLPS-25174_2BA66E82.pnach index 4f387ffd..ffa2e932 100644 --- a/patches/SLPS-25174_2BA66E82.pnach +++ b/patches/SLPS-25174_2BA66E82.pnach @@ -2,7 +2,7 @@ gametitle=Dragon Ball Z (J)(SLPS-25174) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by sergx12 (NTSC-J by Arapapa) +author=sergx12 (NTSC-J by Arapapa) //Gameplay 16:9 diff --git a/patches/SLPS-25186_74B1AA2F.pnach b/patches/SLPS-25186_74B1AA2F.pnach index 5337ba9a..3bc6c5eb 100644 --- a/patches/SLPS-25186_74B1AA2F.pnach +++ b/patches/SLPS-25186_74B1AA2F.pnach @@ -2,7 +2,7 @@ gametitle=Kidou Shinsengumi - Moeyo Ken (J)(SLPS-25186) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25199_20356DA7.pnach b/patches/SLPS-25199_20356DA7.pnach index 5bef8add..00a890ec 100644 --- a/patches/SLPS-25199_20356DA7.pnach +++ b/patches/SLPS-25199_20356DA7.pnach @@ -2,7 +2,7 @@ gametitle=Unlimited Saga (J)(SLPS-25199) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 battles //00000000 00000000 43ad1346 00000000 00000000 diff --git a/patches/SLPS-25204_38D93759.pnach b/patches/SLPS-25204_38D93759.pnach index 4ef35eae..6ac69c9d 100644 --- a/patches/SLPS-25204_38D93759.pnach +++ b/patches/SLPS-25204_38D93759.pnach @@ -2,7 +2,7 @@ gametitle=Moto GP 3 (J)(SLPS-25204) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25207_2C16B37E.pnach b/patches/SLPS-25207_2C16B37E.pnach index 19bbcfd2..d82712ea 100644 --- a/patches/SLPS-25207_2C16B37E.pnach +++ b/patches/SLPS-25207_2C16B37E.pnach @@ -2,7 +2,7 @@ gametitle=TimeSplitter - Jikuu no Shinryakusha (J)(SLPS-25207) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 (NTSC-K by Arapapa) +author=No.47 (NTSC-K by Arapapa) patch=1,EE,205805F4,word,3FC71C71 patch=1,EE,205811C8,word,3FC71C71 diff --git a/patches/SLPS-25228_B6D4DABC.pnach b/patches/SLPS-25228_B6D4DABC.pnach index 6be715d1..7d88631d 100644 --- a/patches/SLPS-25228_B6D4DABC.pnach +++ b/patches/SLPS-25228_B6D4DABC.pnach @@ -2,7 +2,7 @@ gametitle=Dai-2-Ji Super Robot Taisen Alpha (J)(SLPS-25228) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25263_B282D5FD.pnach b/patches/SLPS-25263_B282D5FD.pnach index b704632e..14e5a5b1 100644 --- a/patches/SLPS-25263_B282D5FD.pnach +++ b/patches/SLPS-25263_B282D5FD.pnach @@ -2,7 +2,7 @@ gametitle=Monster Farm 4 [NTSC-J] (SLPS-25263) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Gaint +author=Little Giant patch=1,EE,002ebf74,word,3c013f40 //00000000 hor patch=1,EE,002ebf78,word,44810000 //00000000 diff --git a/patches/SLPS-25265_4C927A09.pnach b/patches/SLPS-25265_4C927A09.pnach index 934c1824..b51e10a6 100644 --- a/patches/SLPS-25265_4C927A09.pnach +++ b/patches/SLPS-25265_4C927A09.pnach @@ -2,7 +2,7 @@ gametitle=RahXephon (J) (SLPS-25265) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa) +author=Arapapa) //16:9 (0000803f 6666e63e) patch=1,EE,2031A120,word,3F400000 // 3f800000 diff --git a/patches/SLPS-25268_916B1D2E.pnach b/patches/SLPS-25268_916B1D2E.pnach index f1d3791e..55ea3639 100644 --- a/patches/SLPS-25268_916B1D2E.pnach +++ b/patches/SLPS-25268_916B1D2E.pnach @@ -2,7 +2,7 @@ gametitle=Dead to Rights (J)(SLPS-25268) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25269_9EF8ED7A.pnach b/patches/SLPS-25269_9EF8ED7A.pnach index 64fffcfd..42932773 100644 --- a/patches/SLPS-25269_9EF8ED7A.pnach +++ b/patches/SLPS-25269_9EF8ED7A.pnach @@ -2,7 +2,7 @@ gametitle=Hitman 2 - Silent Assassin (J)(SLPS-25269) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPS-25271_29D80A23.pnach b/patches/SLPS-25271_29D80A23.pnach index efa7957b..29ca43cc 100644 --- a/patches/SLPS-25271_29D80A23.pnach +++ b/patches/SLPS-25271_29D80A23.pnach @@ -2,7 +2,7 @@ gametitle=Sidewinder V [NTSC-J] (SLPS_252.55) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0012670C,word,3C0143C0 //3C014400 Zoom diff --git a/patches/SLPS-25272_B33016F7.pnach b/patches/SLPS-25272_B33016F7.pnach index c07c9f9e..bb994e22 100644 --- a/patches/SLPS-25272_B33016F7.pnach +++ b/patches/SLPS-25272_B33016F7.pnach @@ -2,7 +2,7 @@ gametitle=Hulk (J)(SLPS-25272) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25279_93476F02.pnach b/patches/SLPS-25279_93476F02.pnach index 9b093fdd..68a4f23c 100644 --- a/patches/SLPS-25279_93476F02.pnach +++ b/patches/SLPS-25279_93476F02.pnach @@ -2,7 +2,7 @@ gametitle=Bouken Shounen Club Gahou (J)(SLPS-25279) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25287_D914D83F.pnach b/patches/SLPS-25287_D914D83F.pnach index 554a4b12..225f32f8 100644 --- a/patches/SLPS-25287_D914D83F.pnach +++ b/patches/SLPS-25287_D914D83F.pnach @@ -2,7 +2,7 @@ gametitle=Hajime no Ippo 2 - Victorious Road (J)(SLPS-25287) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25296_62D73EA2.pnach b/patches/SLPS-25296_62D73EA2.pnach index d134236d..43619c15 100644 --- a/patches/SLPS-25296_62D73EA2.pnach +++ b/patches/SLPS-25296_62D73EA2.pnach @@ -2,7 +2,7 @@ gametitle=Super Robot Taisen - Scramble Commander (J)(SLPS-25296) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25299_4D5B1DB3.pnach b/patches/SLPS-25299_4D5B1DB3.pnach index e7b0b0f6..c8fa06aa 100644 --- a/patches/SLPS-25299_4D5B1DB3.pnach +++ b/patches/SLPS-25299_4D5B1DB3.pnach @@ -2,7 +2,7 @@ gametitle=Shinseiki Evangelion 2 - Evangelions (J)(SLPS-25299) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25302_B2F0A8D2.pnach b/patches/SLPS-25302_B2F0A8D2.pnach index e3d5cfee..8d46e8cf 100644 --- a/patches/SLPS-25302_B2F0A8D2.pnach +++ b/patches/SLPS-25302_B2F0A8D2.pnach @@ -2,7 +2,7 @@ gametitle=Kamen Rider - Seigi no Keifu (J)(SLPS-25302) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25303_B292D14D.pnach b/patches/SLPS-25303_B292D14D.pnach index 16c5231c..2a463c5e 100644 --- a/patches/SLPS-25303_B292D14D.pnach +++ b/patches/SLPS-25303_B292D14D.pnach @@ -1,12 +1,14 @@ -gametitle=Zero: Akai Chou (SLPS-25303) +gametitle=Zero: Akai Chou * NTSC-J * SLPS-25303 * B292D14D +// Fatal Frame II: Crimson Butterfly +// Project Zero II: Crimson Butterfly [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 -patch=1,EE,00336d0c,word,3f400000 //aspect +patch=1,EE,00336d0c,word,3f400000 // aspect -//FMV's fix +// FMV fix patch=1,EE,001e526c,word,3c013f40 // width (1.0f = 640) patch=1,EE,001e5270,word,0c079418 patch=1,EE,001e5274,word,44811800 @@ -22,21 +24,32 @@ patch=1,EE,001e5294,word,dfb00000 patch=1,EE,001e5114,word,01c02820 patch=1,EE,001e5118,word,e4830030 -patch=1,EE,0033a908,word,0000006a //x-pos = (640-640*width)/(2*width) Hex +patch=1,EE,0033a908,word,0000006a // x-pos = (640-640*width)/(2*width) Hex -//Lens Flare's fix -patch=1,EE,0014f7dc,word,3c013f40 //00000000 -patch=1,EE,0014f84c,word,44810800 //00000000 -patch=1,EE,0014f850,word,46016302 //00000000 -patch=1,EE,0013a214,word,0c053df7 //0c053df8 -patch=1,EE,0013a29c,word,0c053df7 //0c053df8 -patch=1,EE,0013a304,word,0c053df7 //0c053df8 -patch=1,EE,0013a37c,word,0c053df7 //0c053df8 +// Lens Flare's fix +patch=1,EE,0014f7dc,word,3c013f40 // 00000000 +patch=1,EE,0014f84c,word,44810800 // 00000000 +patch=1,EE,0014f850,word,46016302 // 00000000 +patch=1,EE,0013a214,word,0c053df7 // 0c053df8 +patch=1,EE,0013a29c,word,0c053df7 // 0c053df8 +patch=1,EE,0013a304,word,0c053df7 // 0c053df8 +patch=1,EE,0013a37c,word,0c053df7 // 0c053df8 -//Dither Effect Off -//patch=1,EE,0019ed14,word,10000012 //54400012 +// ========== -//Cutscenes Focus Effect fix (optional) -patch=1,EE,0020b95c,word,00000000 //0c08308a +[Disable Dither effect] +patch=1,EE,0019ed14,word,10000012 // 54400012 +[Cutscenes Focus Effect fix] +patch=1,EE,0020b95c,word,00000000 // 0c08308a +// ========== + +// aspect ratio of 16:10 by wagrenier +//patch=1,EE,003ff6b8,word,3F400000 // X-FoV +//patch=1,EE,00336d0c,word,3F4A3D71 // Y-FoV + +// aspect ratio of 21:9 (3440x1440) by wagrenier +//patch=1,EE,003ff6b8,word,3F400000 // X-FoV + +// ========== diff --git a/patches/SLPS-25307_BB22866C.pnach b/patches/SLPS-25307_BB22866C.pnach index 37fcf0b8..368e4bb0 100644 --- a/patches/SLPS-25307_BB22866C.pnach +++ b/patches/SLPS-25307_BB22866C.pnach @@ -2,7 +2,7 @@ gametitle=Shinseiki GPX Cyber Formula - Road to the Infinity (J)(SLPS-25307) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25308_63FE356A.pnach b/patches/SLPS-25308_63FE356A.pnach index ac671193..894638a1 100644 --- a/patches/SLPS-25308_63FE356A.pnach +++ b/patches/SLPS-25308_63FE356A.pnach @@ -2,7 +2,7 @@ gametitle=Crouching Tiger - Hidden Dragon (J)(SLPS-25308) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25314_B6AA81EE.pnach b/patches/SLPS-25314_B6AA81EE.pnach index 95624ee8..8797a6f9 100644 --- a/patches/SLPS-25314_B6AA81EE.pnach +++ b/patches/SLPS-25314_B6AA81EE.pnach @@ -2,7 +2,7 @@ gametitle=Nebula - Echo Night (J)(SLPS-25314) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25320_78E96CCC.pnach b/patches/SLPS-25320_78E96CCC.pnach index 76035e50..31ac8824 100644 --- a/patches/SLPS-25320_78E96CCC.pnach +++ b/patches/SLPS-25320_78E96CCC.pnach @@ -2,7 +2,7 @@ gametitle=Inuyasha - Juuso no Kamen [NTSC-J] (SLPS-25320) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by miseru99 +author=miseru99 //3D field models patch=1,EE,2020E6E0,extended,3F400000 diff --git a/patches/SLPS-25333_215E7FBB.pnach b/patches/SLPS-25333_215E7FBB.pnach index 7440a454..09bb31a5 100644 --- a/patches/SLPS-25333_215E7FBB.pnach +++ b/patches/SLPS-25333_215E7FBB.pnach @@ -2,7 +2,7 @@ gametitle=Gallop Racer Lucky 7 (J) (SLPS-25333) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //X-Fov patch=1,EE,0012ba20,word,3c013f40 //3c013f80 diff --git a/patches/SLPS-25338_26D1C561.pnach b/patches/SLPS-25338_26D1C561.pnach index 731af088..6e5955d2 100644 --- a/patches/SLPS-25338_26D1C561.pnach +++ b/patches/SLPS-25338_26D1C561.pnach @@ -13,6 +13,7 @@ patch=1,EE,01E15D18,extended,00000040 // 3C023F80 hor fov menu description=Attempts to disable interlaced offset rendering. gsinterlacemode=1 patch=1,EE,2023C2DC,extended,34020001 //30420001 +patch=1,EE,20235568,extended,00000000 //1202FFF9 [Remove Blur] author=001 & Berylskid diff --git a/patches/SLPS-25339_26D1C561.pnach b/patches/SLPS-25339_26D1C561.pnach index 37eb49eb..2530c0a5 100644 --- a/patches/SLPS-25339_26D1C561.pnach +++ b/patches/SLPS-25339_26D1C561.pnach @@ -13,6 +13,7 @@ patch=1,EE,01E15D18,extended,00000040 // 3C023F80 hor fov menu description=Attempts to disable interlaced offset rendering. gsinterlacemode=1 patch=1,EE,2023C2DC,extended,34020001 //30420001 +patch=1,EE,20235568,extended,00000000 //1202FFF9 [Remove Blur] author=001 & Berylskid diff --git a/patches/SLPS-25341_B1DD47DA.pnach b/patches/SLPS-25341_B1DD47DA.pnach index a2b80c4e..1b4297d9 100644 --- a/patches/SLPS-25341_B1DD47DA.pnach +++ b/patches/SLPS-25341_B1DD47DA.pnach @@ -2,7 +2,7 @@ gametitle=Backyard Wrestling - Don't Try This at Home (J)(SLPS-25341) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25343_651DFFAF.pnach b/patches/SLPS-25343_651DFFAF.pnach index 339c61b0..10f659fd 100644 --- a/patches/SLPS-25343_651DFFAF.pnach +++ b/patches/SLPS-25343_651DFFAF.pnach @@ -2,7 +2,7 @@ gametitle=Gunslinger Girl Volume.I [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,202DB230,extended,3F400000 diff --git a/patches/SLPS-25345_4FC5B891.pnach b/patches/SLPS-25345_4FC5B891.pnach index 82506c71..fe423dd6 100644 --- a/patches/SLPS-25345_4FC5B891.pnach +++ b/patches/SLPS-25345_4FC5B891.pnach @@ -2,7 +2,7 @@ gametitle=Super Robot Taisen MX (J)(SLPS-25345) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25356_7C45C11D.pnach b/patches/SLPS-25356_7C45C11D.pnach index a17def60..ef5485d9 100644 --- a/patches/SLPS-25356_7C45C11D.pnach +++ b/patches/SLPS-25356_7C45C11D.pnach @@ -2,7 +2,7 @@ gametitle=Broken Sword: The Sleeping Dragon(J) (SLPS-25356) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) patch=1,EE,001b06d4,word,3c01bec0 patch=1,EE,001b06dc,word,44813000 diff --git a/patches/SLPS-25358_AB9E3E64.pnach b/patches/SLPS-25358_AB9E3E64.pnach index 7edcd0d3..98a1678b 100644 --- a/patches/SLPS-25358_AB9E3E64.pnach +++ b/patches/SLPS-25358_AB9E3E64.pnach @@ -2,7 +2,7 @@ gametitle=Konjiki no Gashbell - Yuujou Tag Battle [NTSC-J] (SLPS-25358) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //16:9 patch=1,EE,0011AE74,word,3c013f40 //00000000 diff --git a/patches/SLPS-25359_C0D585EF.pnach b/patches/SLPS-25359_C0D585EF.pnach index 81b70d5d..c991a78c 100644 --- a/patches/SLPS-25359_C0D585EF.pnach +++ b/patches/SLPS-25359_C0D585EF.pnach @@ -2,7 +2,7 @@ gametitle=Shaman King - Funbari Spirits [NTSC-J] (SLPS-25359) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //16:9 patch=1,EE,001038cc,word,3c013f40 //3c013f80 diff --git a/patches/SLPS-25363_7D2AB18C.pnach b/patches/SLPS-25363_7D2AB18C.pnach index 6a7a3aea..3f198166 100644 --- a/patches/SLPS-25363_7D2AB18C.pnach +++ b/patches/SLPS-25363_7D2AB18C.pnach @@ -2,7 +2,7 @@ gametitle=Sakurazaka Shouboutai (J)(SLPS-25363) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25364_FCABB636.pnach b/patches/SLPS-25364_FCABB636.pnach index 5ac465c6..a171fd0e 100644 --- a/patches/SLPS-25364_FCABB636.pnach +++ b/patches/SLPS-25364_FCABB636.pnach @@ -2,7 +2,7 @@ gametitle=Ultraman (J)(SLPS-25364) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25373_0BFB247D.pnach b/patches/SLPS-25373_0BFB247D.pnach index c272e0a3..93c4352f 100644 --- a/patches/SLPS-25373_0BFB247D.pnach +++ b/patches/SLPS-25373_0BFB247D.pnach @@ -2,7 +2,7 @@ gametitle=Gunslinger Girl Volume.II [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,202F7B80,extended,3F400000 diff --git a/patches/SLPS-25374_BD533A18.pnach b/patches/SLPS-25374_BD533A18.pnach index 992593b0..7ed6eb68 100644 --- a/patches/SLPS-25374_BD533A18.pnach +++ b/patches/SLPS-25374_BD533A18.pnach @@ -2,7 +2,7 @@ gametitle=Daidassou - The Great Escape (J)(SLPS-25374) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25375_D4ECB62E.pnach b/patches/SLPS-25375_D4ECB62E.pnach index 06c5da15..44abe8d9 100644 --- a/patches/SLPS-25375_D4ECB62E.pnach +++ b/patches/SLPS-25375_D4ECB62E.pnach @@ -2,7 +2,7 @@ gametitle=XIII - Daitouryou o Koroshita Otoko (J)(SLPS-25375) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) // 16:9 diff --git a/patches/SLPS-25382_3D065BBB.pnach b/patches/SLPS-25382_3D065BBB.pnach index 249cc3a7..e9f1bddc 100644 --- a/patches/SLPS-25382_3D065BBB.pnach +++ b/patches/SLPS-25382_3D065BBB.pnach @@ -2,7 +2,7 @@ gametitle=One Piece Land Land [NTSC-J] (SLPS-25382) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 //(aa3f013c aaaa2134) first... find address from top (00000000) diff --git a/patches/SLPS-25386_EF7B9E4D.pnach b/patches/SLPS-25386_EF7B9E4D.pnach index 9bbdf52a..3133f7de 100644 --- a/patches/SLPS-25386_EF7B9E4D.pnach +++ b/patches/SLPS-25386_EF7B9E4D.pnach @@ -2,7 +2,7 @@ gametitle= King of Fighters - Maximum Impact [NTSC-J] [SLPS-25386] [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPS-25388_E0EE3385.pnach b/patches/SLPS-25388_E0EE3385.pnach index 64e500c8..61e18bf8 100644 --- a/patches/SLPS-25388_E0EE3385.pnach +++ b/patches/SLPS-25388_E0EE3385.pnach @@ -2,7 +2,7 @@ gametitle=Gunslinger Girl Volume.III [Widescreen 16:9] gsaspectratio=16:9 -comment=NTSC-J Widescreen Hack by synce +author=synce patch=1,EE,20318100,extended,3F400000 diff --git a/patches/SLPS-25389_21538F32.pnach b/patches/SLPS-25389_21538F32.pnach index a9aa1e09..96562073 100644 --- a/patches/SLPS-25389_21538F32.pnach +++ b/patches/SLPS-25389_21538F32.pnach @@ -2,7 +2,7 @@ gametitle=Kidou Senshi Gundam Seed - Owaranai Ashita e (J)(SLPS-25389) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25394_08B19EFF.pnach b/patches/SLPS-25394_08B19EFF.pnach index 102e0f70..0e42011f 100644 --- a/patches/SLPS-25394_08B19EFF.pnach +++ b/patches/SLPS-25394_08B19EFF.pnach @@ -2,7 +2,7 @@ gametitle=Another Century's Episode (J)(SLPS-25394) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa and Somebody who fixed A.C.E 3 +author=Arapapa and Somebody who fixed A.C.E 3 //Widescreen hack 16:9 diff --git a/patches/SLPS-25399_CD62245A.pnach b/patches/SLPS-25399_CD62245A.pnach index a9ec4371..b02cba27 100644 --- a/patches/SLPS-25399_CD62245A.pnach +++ b/patches/SLPS-25399_CD62245A.pnach @@ -2,7 +2,7 @@ gametitle=Keroro Gunsou - MeroMero Battle Royale [NTSC-J] (SLPS-25399) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //16:9 patch=1,EE,E0025555,extended,009B74C4 // diff --git a/patches/SLPS-25402_2FE30958.pnach b/patches/SLPS-25402_2FE30958.pnach index c6d034f7..0dca92bd 100644 --- a/patches/SLPS-25402_2FE30958.pnach +++ b/patches/SLPS-25402_2FE30958.pnach @@ -2,7 +2,7 @@ gametitle=Hagane no Renkinjutsushi - Dream Carnival (J)(SLPS-25402) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25406_7A12A6B0.pnach b/patches/SLPS-25406_7A12A6B0.pnach index 85fc0771..d16f6f1c 100644 --- a/patches/SLPS-25406_7A12A6B0.pnach +++ b/patches/SLPS-25406_7A12A6B0.pnach @@ -2,7 +2,7 @@ gametitle=Hitman - Contracts(J)(SLPS-25406) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLPS-25418_86089F31.pnach b/patches/SLPS-25418_86089F31.pnach index 11f8afcd..37a44823 100644 --- a/patches/SLPS-25418_86089F31.pnach +++ b/patches/SLPS-25418_86089F31.pnach @@ -2,7 +2,7 @@ gametitle=Ace Combat 5: The Unsung War (J) (SLPS_25418) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //widescreen fix patch=1,EE,00440ba8,word,43D638F3 diff --git a/patches/SLPS-25421_D2F0DC73.pnach b/patches/SLPS-25421_D2F0DC73.pnach index d2f1c048..eefdb8fe 100644 --- a/patches/SLPS-25421_D2F0DC73.pnach +++ b/patches/SLPS-25421_D2F0DC73.pnach @@ -2,7 +2,7 @@ gametitle=Bokujou Monogatari - Oh! Wonderful Life (First Print Limited Edition) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25425_4A9E1684.pnach b/patches/SLPS-25425_4A9E1684.pnach index 7f1164a3..5d2d71b6 100644 --- a/patches/SLPS-25425_4A9E1684.pnach +++ b/patches/SLPS-25425_4A9E1684.pnach @@ -2,7 +2,7 @@ gametitle=SD Gundam Force: Daikessen! Jigen Kaizoku De Scar!! (J)(SLPS-25425) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25426_BFFC4507.pnach b/patches/SLPS-25426_BFFC4507.pnach index c73caa10..2e53eba8 100644 --- a/patches/SLPS-25426_BFFC4507.pnach +++ b/patches/SLPS-25426_BFFC4507.pnach @@ -2,7 +2,7 @@ gametitle=Detective Conan - Inheritance of Britain (NTSC-J)(SLPS-25426) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Play Tip //Effects of shadow are dirty.Then it is better to turn off a shadow's effects. diff --git a/patches/SLPS-25427_8D1AFF7F.pnach b/patches/SLPS-25427_8D1AFF7F.pnach index e09d4191..75a47b32 100644 --- a/patches/SLPS-25427_8D1AFF7F.pnach +++ b/patches/SLPS-25427_8D1AFF7F.pnach @@ -2,7 +2,7 @@ gametitle=Legendz Gekitou! Saga Battle [NTSC-J] (SLPS-25427) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Gaint +author=Little Giant //16:9 patch=1,EE,206DA92C,extended,3F533334 diff --git a/patches/SLPS-25430_B78086CD.pnach b/patches/SLPS-25430_B78086CD.pnach index fe4d94c9..8e45e240 100644 --- a/patches/SLPS-25430_B78086CD.pnach +++ b/patches/SLPS-25430_B78086CD.pnach @@ -2,7 +2,7 @@ gametitle=Lupin Sansei - Columbus no Isan wa Akenisomaru (J)(SLPS-25430) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25439_F8CF8013.pnach b/patches/SLPS-25439_F8CF8013.pnach index 63a91d65..3785a9f8 100644 --- a/patches/SLPS-25439_F8CF8013.pnach +++ b/patches/SLPS-25439_F8CF8013.pnach @@ -2,7 +2,7 @@ gametitle=Hajime no Ippo All-Stars (J)(SLPS-25439) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25440_FFBE2593.pnach b/patches/SLPS-25440_FFBE2593.pnach index 75d08cf2..7ae8e610 100644 --- a/patches/SLPS-25440_FFBE2593.pnach +++ b/patches/SLPS-25440_FFBE2593.pnach @@ -2,7 +2,7 @@ gametitle=Konjiki no Gashbell!! Gekitou! Saikyou no Mamonotachi [NTSC-J] (SLPS-2 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //16:9 patch=1,EE,00228604,word,3c013f40 // 00000000 hor diff --git a/patches/SLPS-25441_128CF8F4.pnach b/patches/SLPS-25441_128CF8F4.pnach index dc1d2c47..c8ab5e14 100644 --- a/patches/SLPS-25441_128CF8F4.pnach +++ b/patches/SLPS-25441_128CF8F4.pnach @@ -2,7 +2,7 @@ gametitle=Ultraman Fighting Evolution 3 [NTSC-J] (SLPS-25441) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //16:9 patch=1,EE,004b344c,word,3f400000 //3f800000 diff --git a/patches/SLPS-25445_5FEE89E0.pnach b/patches/SLPS-25445_5FEE89E0.pnach index ba93fad7..9266d427 100644 --- a/patches/SLPS-25445_5FEE89E0.pnach +++ b/patches/SLPS-25445_5FEE89E0.pnach @@ -2,7 +2,7 @@ gametitle=Kagero 2 - Dark Illusion (J)(SLPS-25445) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) // 16:9 vertical fov //00000000 02a80e46 83050c46 00000000 00000000 diff --git a/patches/SLPS-25447_603F5B4E.pnach b/patches/SLPS-25447_603F5B4E.pnach index ba0d9995..c698d778 100644 --- a/patches/SLPS-25447_603F5B4E.pnach +++ b/patches/SLPS-25447_603F5B4E.pnach @@ -2,7 +2,7 @@ gametitle=Aim for the Top - Gunbuster (NTSC-J) (SLPS-25447) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (0000803F 6666E63E 6666E63F) patch=1,EE,202CFAA0,word,3F400000 // 3F800000 diff --git a/patches/SLPS-25453_E4F97921.pnach b/patches/SLPS-25453_E4F97921.pnach index 59c2c4e4..4379f652 100644 --- a/patches/SLPS-25453_E4F97921.pnach +++ b/patches/SLPS-25453_E4F97921.pnach @@ -2,7 +2,7 @@ gametitle=Digimon World X [NTSC-J] (SLPS-25453) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht patch=1,EE,001b8450,word,3c013f40 // 00000000 hor fov patch=1,EE,001b845c,word,4481f000 // 00000000 patch=1,EE,001b84b8,word,461ebb03 // 4600bb06 diff --git a/patches/SLPS-25457_FEFCF9DE.pnach b/patches/SLPS-25457_FEFCF9DE.pnach index f020ad6e..ff250c68 100644 --- a/patches/SLPS-25457_FEFCF9DE.pnach +++ b/patches/SLPS-25457_FEFCF9DE.pnach @@ -2,7 +2,7 @@ gametitle=Poncotsu Roman Daikatsugeki Bumpy Trot (J)(SLPS-25457) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25460_5B26AFF9.pnach b/patches/SLPS-25460_5B26AFF9.pnach index 4a574212..90f79167 100644 --- a/patches/SLPS-25460_5B26AFF9.pnach +++ b/patches/SLPS-25460_5B26AFF9.pnach @@ -2,7 +2,7 @@ gametitle=Dragon Ball Z 3 (J)(SLPS-25460) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) // 16:9 patch=1,EE,00131ba8,word,080c92ea // 46000803 jump to code-inject 003247c8 diff --git a/patches/SLPS-25462_FEBE1992.pnach b/patches/SLPS-25462_FEBE1992.pnach index d3ac8514..7944bcc4 100644 --- a/patches/SLPS-25462_FEBE1992.pnach +++ b/patches/SLPS-25462_FEBE1992.pnach @@ -2,7 +2,7 @@ gametitle=Armored Core - Last Raven [NTSC-J] (SLPS-25462) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00174e64,word,3c094455 //3c024420 hor fov diff --git a/patches/SLPS-25465_23F4D08E.pnach b/patches/SLPS-25465_23F4D08E.pnach index b9cd38ea..5b0f3ee0 100644 --- a/patches/SLPS-25465_23F4D08E.pnach +++ b/patches/SLPS-25465_23F4D08E.pnach @@ -2,7 +2,7 @@ gametitle=Azumi (NTSC-J)(SLPS-25465) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa/Elhecht +author=Arapapa/Elhecht // 16:9 gameplay patch=1,EE,0021b0e8,word,10000012 // 10000013 diff --git a/patches/SLPS-25470_9DA64F02.pnach b/patches/SLPS-25470_9DA64F02.pnach index dd65109d..f2e22341 100644 --- a/patches/SLPS-25470_9DA64F02.pnach +++ b/patches/SLPS-25470_9DA64F02.pnach @@ -2,7 +2,7 @@ gametitle=Bouken-Ou Beet - Darkness Century (J) (SLPS-25470) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (0000803f 0000803f 0f070600) patch=1,EE,202C11C0,extended,3f400000 // 3f800000 diff --git a/patches/SLPS-25471_44D3D2F6.pnach b/patches/SLPS-25471_44D3D2F6.pnach index 52cc7579..45b3cd1d 100644 --- a/patches/SLPS-25471_44D3D2F6.pnach +++ b/patches/SLPS-25471_44D3D2F6.pnach @@ -2,7 +2,7 @@ gametitle=Gakkou o Tsukurou!! Happy Days (J)(SLPS-25471) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25478_8AD46A5B.pnach b/patches/SLPS-25478_8AD46A5B.pnach index 140d75f8..ef965aca 100644 --- a/patches/SLPS-25478_8AD46A5B.pnach +++ b/patches/SLPS-25478_8AD46A5B.pnach @@ -2,7 +2,7 @@ gametitle=Kidou Senshi Gundam - Ichinen Sensou (J)(SLPS-25478) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25479_E6DA8929.pnach b/patches/SLPS-25479_E6DA8929.pnach index 71d79799..153c3383 100644 --- a/patches/SLPS-25479_E6DA8929.pnach +++ b/patches/SLPS-25479_E6DA8929.pnach @@ -2,7 +2,7 @@ gametitle=Konjiki no Gashbell!! Yuujou Tag Battle 2 [NTSC-J] (SLPS-25479) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //16:9 patch=1,EE,0011D394,word,3c013f40 //00000000 diff --git a/patches/SLPS-25498_F6ACFAA1.pnach b/patches/SLPS-25498_F6ACFAA1.pnach index fb84e404..bfb7bb00 100644 --- a/patches/SLPS-25498_F6ACFAA1.pnach +++ b/patches/SLPS-25498_F6ACFAA1.pnach @@ -2,7 +2,7 @@ gametitle=Jikuu Bouken Zentrix (J)(SLPS-25498) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25502_937F9183.pnach b/patches/SLPS-25502_937F9183.pnach index 5678c2b7..5fc10e02 100644 --- a/patches/SLPS-25502_937F9183.pnach +++ b/patches/SLPS-25502_937F9183.pnach @@ -2,7 +2,7 @@ gametitle=Steamboy (J)(SLPS-25502) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25510_FC46EA61.pnach b/patches/SLPS-25510_FC46EA61.pnach index 4494bfa5..07426f50 100644 --- a/patches/SLPS-25510_FC46EA61.pnach +++ b/patches/SLPS-25510_FC46EA61.pnach @@ -2,7 +2,7 @@ gametitle=Tekken 5 [NTSC-J] (SLPS-25510) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00332B78,word,3c013f40 // both fov+ diff --git a/patches/SLPS-25518_2B8DB1A5.pnach b/patches/SLPS-25518_2B8DB1A5.pnach index a45b0c8a..a7f4d9cb 100644 --- a/patches/SLPS-25518_2B8DB1A5.pnach +++ b/patches/SLPS-25518_2B8DB1A5.pnach @@ -2,7 +2,7 @@ gametitle=Inuyasha - Okugi Ranbu [NTSC-J] (SLPS-25518) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //16:9 patch=1,EE,0011ff90,word,3c013fdc //3c013fa5 hor 1 diff --git a/patches/SLPS-25520_FB5F5CA9.pnach b/patches/SLPS-25520_FB5F5CA9.pnach index ab54e075..4f8ef61f 100644 --- a/patches/SLPS-25520_FB5F5CA9.pnach +++ b/patches/SLPS-25520_FB5F5CA9.pnach @@ -2,7 +2,7 @@ gametitle=Gundam True Odyssey: Ushinawareta G no Densetsu [NTSC-J] (SLPS-25520) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,001b8b5c,word,46000003 //3c013f80 patch=1,EE,001b8b60,word,7fb00010 //44810000 diff --git a/patches/SLPS-25528_0C3E8D76.pnach b/patches/SLPS-25528_0C3E8D76.pnach index 9ecfd0c1..cccf10c2 100644 --- a/patches/SLPS-25528_0C3E8D76.pnach +++ b/patches/SLPS-25528_0C3E8D76.pnach @@ -2,7 +2,7 @@ gametitle=Summon Night EX Thesis - Yoake no Tsubasa (J)(SLPS-25528) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25529_4E811100.pnach b/patches/SLPS-25529_4E811100.pnach index a50bb095..45e1f727 100644 --- a/patches/SLPS-25529_4E811100.pnach +++ b/patches/SLPS-25529_4E811100.pnach @@ -2,7 +2,7 @@ gametitle=Ultraman Fighting Evolution Rebirth [NTSC-J] (SLPS-25529) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //16:9 patch=1,EE,002a642c,word,3c013f40 //00000000 diff --git a/patches/SLPS-25530_FD405F7E.pnach b/patches/SLPS-25530_FD405F7E.pnach index fbb56f63..35d9344f 100644 --- a/patches/SLPS-25530_FD405F7E.pnach +++ b/patches/SLPS-25530_FD405F7E.pnach @@ -2,7 +2,7 @@ gametitle=Garouden Breakblow (NTSC-J) (SLPS-25530) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,0014f58c,word,080ad5cf // 46007bc7 diff --git a/patches/SLPS-25531_9370E436.pnach b/patches/SLPS-25531_9370E436.pnach index 29bf179a..ea9d0c9b 100644 --- a/patches/SLPS-25531_9370E436.pnach +++ b/patches/SLPS-25531_9370E436.pnach @@ -2,7 +2,7 @@ gametitle=SD Gundam G Generation Seed (J)(SLPS-25531) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25532_4CCEF323.pnach b/patches/SLPS-25532_4CCEF323.pnach index 4d8f655d..9e9b9147 100644 --- a/patches/SLPS-25532_4CCEF323.pnach +++ b/patches/SLPS-25532_4CCEF323.pnach @@ -2,7 +2,7 @@ gametitle=Critical Velocity (NTSC-J)(SLPS-25532) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25533_1F8640E0.pnach b/patches/SLPS-25533_1F8640E0.pnach index b44b5194..4b12be8a 100644 --- a/patches/SLPS-25533_1F8640E0.pnach +++ b/patches/SLPS-25533_1F8640E0.pnach @@ -2,7 +2,7 @@ gametitle=Tales of Legendia (J)(SLPS-25533) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25537_5D12241C.pnach b/patches/SLPS-25537_5D12241C.pnach index 60b9726b..dcd350e3 100644 --- a/patches/SLPS-25537_5D12241C.pnach +++ b/patches/SLPS-25537_5D12241C.pnach @@ -2,7 +2,7 @@ gametitle=Dai-3-Ji Super Robot Taisen Alpha - Shuuen no Ginga he (J)(SLPS-25537) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25541_53C75B72.pnach b/patches/SLPS-25541_53C75B72.pnach index 539a7b35..ea4a34a6 100644 --- a/patches/SLPS-25541_53C75B72.pnach +++ b/patches/SLPS-25541_53C75B72.pnach @@ -2,7 +2,7 @@ gametitle=Shinseiki GPX Cyber Formula - Road to the Infinity 2 (J)(SLPS-25541) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25544_3F651512.pnach b/patches/SLPS-25544_3F651512.pnach index bac22b8f..e1192bbb 100644 --- a/patches/SLPS-25544_3F651512.pnach +++ b/patches/SLPS-25544_3F651512.pnach @@ -1,57 +1,65 @@ -gametitle=Zero: Shisei no Koe [NTSC-J] (SLPS-25544) +gametitle=Zero: Shisei no Koe * NTSC-J * SLPS-25544 * 3F651512 +// Fatal Frame III: The Tormented +// Project Zero 3: The Tormented [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (Pnach by Little Giant) +author=ported by Little Giant -//gameplay +// gameplay patch=1,EE,0032006c,word,3f400000 //patch=1,EE,203E185C,extended,3F400000 -//FMV's fix(New) -patch=1,EE,00368140,word,44200000 //44200000 -patch=1,EE,00368148,word,3e333333 //3f800000 - -patch=1,EE,00212808,word,0c09aa90 //c5e00000 -patch=1,EE,0021280c,word,c5e10000 //0c09aa90 -patch=1,EE,00212810,word,8faf00b0 //e7a00044 -patch=1,EE,00212814,word,0200202d //8faf00b0 -patch=1,EE,00212818,word,8fae00b4 //0200202d -patch=1,EE,0021281c,word,448f0000 //8fae00b4 -patch=1,EE,00212820,word,46800020 //448f0000 -patch=1,EE,00212824,word,25effffe //448e0800 -patch=1,EE,00212828,word,46010042 //46800020 -patch=1,EE,0021282c,word,e7a10044 //25effffe -patch=1,EE,00212830,word,afaf002c //46800860 -patch=1,EE,00212834,word,afae0030 //afaf002c -patch=1,EE,00212838,word,3c013f40 //afae0030 -patch=1,EE,0021283c,word,44810800 //00000000 -patch=1,EE,00212840,word,4601b582 //00000000 -patch=1,EE,00212844,word,4600b583 //4600b583 -patch=1,EE,00212848,word,448e0800 //00000000 -patch=1,EE,0021284c,word,46800860 //00000000 - -//Dither + Ghost post-process Effect Off -//patch=1,EE,00156024,word,00000000 //0c055954 -//Disable dark filter (cutscene) -//patch=1,EE,0015609c,word,00000000 //0c05594c - -//Disable all bloom (speedup, but makes the game seem dull) -//patch=1,EE,00156164,word,00000000 //0c055942 - -//Disable overbloom (cutscene) -//patch=1,EE,00156100,word,00000000 //0c0558f4 -//Decrease overbloom (gameplay) -//patch=1,EE,20364FFC,word,3F400000 //3F800000 - -//Focus Effect Off -patch=1,EE,0015606c,word,00000000 //0c0558ee -//Bloom offset (fixes bloom glitch) -patch=1,EE,20365008,word,43A30000 // 43A00000 - TC X-offset -patch=1,EE,2036500C,word,43660000 // 43600000 - TC Y-offset +// FMV fix (new) +patch=1,EE,00368140,word,44200000 // 44200000 +patch=1,EE,00368148,word,3e333333 // 3f800000 + +patch=1,EE,00212808,word,0c09aa90 // c5e00000 +patch=1,EE,0021280c,word,c5e10000 // 0c09aa90 +patch=1,EE,00212810,word,8faf00b0 // e7a00044 +patch=1,EE,00212814,word,0200202d // 8faf00b0 +patch=1,EE,00212818,word,8fae00b4 // 0200202d +patch=1,EE,0021281c,word,448f0000 // 8fae00b4 +patch=1,EE,00212820,word,46800020 // 448f0000 +patch=1,EE,00212824,word,25effffe // 448e0800 +patch=1,EE,00212828,word,46010042 // 46800020 +patch=1,EE,0021282c,word,e7a10044 // 25effffe +patch=1,EE,00212830,word,afaf002c // 46800860 +patch=1,EE,00212834,word,afae0030 // afaf002c +patch=1,EE,00212838,word,3c013f40 // afae0030 +patch=1,EE,0021283c,word,44810800 // 00000000 +patch=1,EE,00212840,word,4601b582 // 00000000 +patch=1,EE,00212844,word,4600b583 // 4600b583 +patch=1,EE,00212848,word,448e0800 // 00000000 +patch=1,EE,0021284c,word,46800860 // 00000000 -//FMW's fix (old) +// FMW's fix (old) //patch=1,EE,00368140,word,43f00000 //patch=1,EE,00368148,word,42d40000 +// ========== + +[Disable Dither & Ghost Post-Process effect] +patch=1,EE,00156024,word,00000000 // 0c055954 + +[Disable Dark Filter on Cutscenes] +patch=1,EE,0015609c,word,00000000 // 0c05594c + +[Disable Overbloom on Cutscenes] +patch=1,EE,00156100,word,00000000 // 0c0558f4 +[Decrease Overbloom on Gameplay] +patch=1,EE,20364FFC,word,3F400000 // 3F800000 + +[Disable Focus effect] +patch=1,EE,0015606c,word,00000000 // 0c0558ee + +[Disable All Bloom] +comment=Speedup, but makes the game seem dull +patch=1,EE,00156164,word,00000000 // 0c055942 + +[Upscaling offset fix] +author=pgert +description=Fixes offset glitch +patch=1,EE,20365008,word,43A30000 // 43A00000 - TC X-offset +patch=1,EE,2036500C,word,43660000 // 43600000 - TC Y-offset diff --git a/patches/SLPS-25545_78621F71.pnach b/patches/SLPS-25545_78621F71.pnach index 77ef3a42..4ed9c6c5 100644 --- a/patches/SLPS-25545_78621F71.pnach +++ b/patches/SLPS-25545_78621F71.pnach @@ -2,7 +2,7 @@ gametitle=Fighting For One Piece (NTSC-J) (SLPS-25545) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0019ec30,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLPS-25549_B0918A18.pnach b/patches/SLPS-25549_B0918A18.pnach index a4967674..4f3f4554 100644 --- a/patches/SLPS-25549_B0918A18.pnach +++ b/patches/SLPS-25549_B0918A18.pnach @@ -2,7 +2,7 @@ gametitle=Kidou Senshi Gundam SEED Destiny - Generation of C.E (J)(SLPS-25549) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25551_C162A768.pnach b/patches/SLPS-25551_C162A768.pnach index b5461ef9..cb78032b 100644 --- a/patches/SLPS-25551_C162A768.pnach +++ b/patches/SLPS-25551_C162A768.pnach @@ -2,7 +2,7 @@ gametitle=Cowboy Bebop - Tsuioku no Serenade (J)(SLPS-25551) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25560_E7D5481C.pnach b/patches/SLPS-25560_E7D5481C.pnach index 62798c9e..294201d6 100644 --- a/patches/SLPS-25560_E7D5481C.pnach +++ b/patches/SLPS-25560_E7D5481C.pnach @@ -2,7 +2,7 @@ gametitle=Dragon Ball Z Sparking! (J)(SLPS-25560) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by sergx12/ElHecht (NTSC-J by Arapapa) +author=sergx12/ElHecht (NTSC-J by Arapapa) // 16:9 menu patch=1,EE,001f94c4,word,3F600000 // 3f490fda sky/background fix diff --git a/patches/SLPS-25561_558F078E.pnach b/patches/SLPS-25561_558F078E.pnach index 3bd72b7c..01244f63 100644 --- a/patches/SLPS-25561_558F078E.pnach +++ b/patches/SLPS-25561_558F078E.pnach @@ -2,7 +2,7 @@ gametitle=Moto GP 4 (J)(SLPS-25561) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25575_6E8687AE.pnach b/patches/SLPS-25575_6E8687AE.pnach index 24b3640f..f761abff 100644 --- a/patches/SLPS-25575_6E8687AE.pnach +++ b/patches/SLPS-25575_6E8687AE.pnach @@ -2,7 +2,7 @@ gametitle=Keroro Gunsou - MeroMero Battle Royale Z (NTSC-J] (SLPS-25575) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //16:9 patch=1,EE,E0025555,extended,00A97474 // diff --git a/patches/SLPS-25576_18338A0F.pnach b/patches/SLPS-25576_18338A0F.pnach index ce854a0d..9f1ed511 100644 --- a/patches/SLPS-25576_18338A0F.pnach +++ b/patches/SLPS-25576_18338A0F.pnach @@ -2,7 +2,7 @@ gametitle=One Piece Pirates' Carnival [NTSC-J] (SLPS-25576) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //16:9 patch=1,EE,001C93CC,word,3C023FE3 //3C023FAA vert diff --git a/patches/SLPS-25577_CFC64C8D.pnach b/patches/SLPS-25577_CFC64C8D.pnach index 9228419a..b51c008f 100644 --- a/patches/SLPS-25577_CFC64C8D.pnach +++ b/patches/SLPS-25577_CFC64C8D.pnach @@ -2,7 +2,7 @@ gametitle=Soul Calibur III [NTSC-J] (SLPS-25577) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen correction by nemesis2000 (pnach by Little Gaint) +author=nemesis2000 (pnach by Little Gaint) patch=1,EE,0012a120,word,3c013f40 //3c013f4d patch=1,EE,0012a124,word,34210000 //3421b9cc diff --git a/patches/SLPS-25578_F8664E20.pnach b/patches/SLPS-25578_F8664E20.pnach index ee382999..1ff9026e 100644 --- a/patches/SLPS-25578_F8664E20.pnach +++ b/patches/SLPS-25578_F8664E20.pnach @@ -2,7 +2,7 @@ gametitle=K-1 World Grand Prix 2005 (J)(SLPS-25578) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25585_CC1E5592.pnach b/patches/SLPS-25585_CC1E5592.pnach index 9a658ad6..11266825 100644 --- a/patches/SLPS-25585_CC1E5592.pnach +++ b/patches/SLPS-25585_CC1E5592.pnach @@ -2,7 +2,7 @@ gametitle=Monster Farm 5 - Circus Caravan [NTSC-J] (SLPS-25585) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Gaint +author=Little Giant patch=1,EE,204EFEEC,extended,3F19999A //3F4CCCCD hor patch=1,EE,20590D94,extended,43E00000 //43A00000 render fix diff --git a/patches/SLPS-25600_CED34955.pnach b/patches/SLPS-25600_CED34955.pnach index c5cdab5e..301ae3fb 100644 --- a/patches/SLPS-25600_CED34955.pnach +++ b/patches/SLPS-25600_CED34955.pnach @@ -2,7 +2,7 @@ gametitle=Samurai Champloo [NTSC-J] (SLPS-25600) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (pnach by Little Giant) +author=ElHecht (pnach by Little Giant) // 16:9 patch=1,EE,00140414,word,3c023fbd // 3c023f8e hor fov diff --git a/patches/SLPS-25601_5A1B2A9B.pnach b/patches/SLPS-25601_5A1B2A9B.pnach index 03750b3d..b4147377 100644 --- a/patches/SLPS-25601_5A1B2A9B.pnach +++ b/patches/SLPS-25601_5A1B2A9B.pnach @@ -2,7 +2,7 @@ gametitle=Ueki no Housoku - Taosu Zeroberuto Juudan!! (J)(SLPS-25601) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25604_C77C957B.pnach b/patches/SLPS-25604_C77C957B.pnach index 5be5ca15..2738107a 100644 --- a/patches/SLPS-25604_C77C957B.pnach +++ b/patches/SLPS-25604_C77C957B.pnach @@ -2,7 +2,7 @@ gametitle=Ar tonelico: Melody of Elemia (J) (SLPS-25604) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //3D scenes patch=1,EE,003424B4,word,3c013f40 //hor value diff --git a/patches/SLPS-25606_C988ECBB.pnach b/patches/SLPS-25606_C988ECBB.pnach index 13474a92..f218b05a 100644 --- a/patches/SLPS-25606_C988ECBB.pnach +++ b/patches/SLPS-25606_C988ECBB.pnach @@ -2,7 +2,7 @@ gametitle=Zettaizetsumei Toshi 2 - Itetsuita Kiokutachi [NTSC-J] (SLPS-25606) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //black borders's fix patch=1,EE,001CF198,word,00A52823 //00000000 diff --git a/patches/SLPS-25608_4334E17D.pnach b/patches/SLPS-25608_4334E17D.pnach index 52094b5d..a44ea4ed 100644 --- a/patches/SLPS-25608_4334E17D.pnach +++ b/patches/SLPS-25608_4334E17D.pnach @@ -2,7 +2,7 @@ gametitle=Makai Senki Disgaea 2 (J) (SLPS-256.08) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) patch=1,EE,00104dc4,word,3c013f40 patch=1,EE,00104dc8,word,44810000 diff --git a/patches/SLPS-25609_0CC85693.pnach b/patches/SLPS-25609_0CC85693.pnach index 0886b463..5a30023e 100644 --- a/patches/SLPS-25609_0CC85693.pnach +++ b/patches/SLPS-25609_0CC85693.pnach @@ -2,7 +2,7 @@ gametitle= King of Fighters - Maximum Impact 2 (Limited Edition) (J)(SLPS-25609) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25623_3ED7CFA1.pnach b/patches/SLPS-25623_3ED7CFA1.pnach index a50fbb3a..0612b0ba 100644 --- a/patches/SLPS-25623_3ED7CFA1.pnach +++ b/patches/SLPS-25623_3ED7CFA1.pnach @@ -2,7 +2,7 @@ gametitle=Another Century's Episode 2 (J)(SLPS-25623) [Widescreen 16:9] gsaspectratio=16:9 -comment=comment=Widescreen hack by Arapapa and Somebody who fixed A.C.E 3 +comment=author=Arapapa and Somebody who fixed A.C.E 3 //Widescreen hack 16:9 diff --git a/patches/SLPS-25627_E21D5682.pnach b/patches/SLPS-25627_E21D5682.pnach index 105df547..839b29ce 100644 --- a/patches/SLPS-25627_E21D5682.pnach +++ b/patches/SLPS-25627_E21D5682.pnach @@ -2,7 +2,7 @@ gametitle=Kidou Senshi Gundam - Climax U.C. (J)(SLPS-25627) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25628_2251767F.pnach b/patches/SLPS-25628_2251767F.pnach index 09253d56..3c0042dd 100644 --- a/patches/SLPS-25628_2251767F.pnach +++ b/patches/SLPS-25628_2251767F.pnach @@ -2,7 +2,7 @@ gametitle=IGPX - Immortal Grand Prix (J)(SLPS-25628) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25629_A04B52DB.pnach b/patches/SLPS-25629_A04B52DB.pnach index b8028cc8..1784c0ff 100644 --- a/patches/SLPS-25629_A04B52DB.pnach +++ b/patches/SLPS-25629_A04B52DB.pnach @@ -2,7 +2,7 @@ gametitle=Ace Combat Zero: The Belkan War (J) (SLPS_25629) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //widescreen fix patch=1,EE,003f9e50,word,43D638F3 diff --git a/patches/SLPS-25636_B643F02A.pnach b/patches/SLPS-25636_B643F02A.pnach index 09b47ea5..41f0882d 100644 --- a/patches/SLPS-25636_B643F02A.pnach +++ b/patches/SLPS-25636_B643F02A.pnach @@ -2,7 +2,7 @@ gametitle= King of Fighters - Maximum Impact - Maniax (J)(SLPS-25636) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25640_A707236E.pnach b/patches/SLPS-25640_A707236E.pnach index 2b81990e..2365bf75 100644 --- a/patches/SLPS-25640_A707236E.pnach +++ b/patches/SLPS-25640_A707236E.pnach @@ -2,7 +2,7 @@ gametitle=Xenosaga Episode III - Zarathustra wa Kaku Katariki (DEMO) [NTSC-J] [D [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Little Giant) +author=nemesis2000 (pnach by Little Giant) //gameplay patch=1,EE,2054E120,extended,3fc1f080 //original value 3f91745d diff --git a/patches/SLPS-25640_E0347841.pnach b/patches/SLPS-25640_E0347841.pnach index 754ba279..7067c835 100644 --- a/patches/SLPS-25640_E0347841.pnach +++ b/patches/SLPS-25640_E0347841.pnach @@ -2,7 +2,7 @@ gametitle=Xenosaga Episode III - Zarathustra wa Kaku Katariki [NTSC-J] [Disc1] ( [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Little Giant) +author=nemesis2000 (pnach by Little Giant) //gameplay patch=1,EE,2054e720,extended,3fc1f080 //original value 3f91745d diff --git a/patches/SLPS-25641_A707236E.pnach b/patches/SLPS-25641_A707236E.pnach index 2b81990e..2365bf75 100644 --- a/patches/SLPS-25641_A707236E.pnach +++ b/patches/SLPS-25641_A707236E.pnach @@ -2,7 +2,7 @@ gametitle=Xenosaga Episode III - Zarathustra wa Kaku Katariki (DEMO) [NTSC-J] [D [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Little Giant) +author=nemesis2000 (pnach by Little Giant) //gameplay patch=1,EE,2054E120,extended,3fc1f080 //original value 3f91745d diff --git a/patches/SLPS-25641_E0347841.pnach b/patches/SLPS-25641_E0347841.pnach index 754ba279..7067c835 100644 --- a/patches/SLPS-25641_E0347841.pnach +++ b/patches/SLPS-25641_E0347841.pnach @@ -2,7 +2,7 @@ gametitle=Xenosaga Episode III - Zarathustra wa Kaku Katariki [NTSC-J] [Disc1] ( [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Little Giant) +author=nemesis2000 (pnach by Little Giant) //gameplay patch=1,EE,2054e720,extended,3fc1f080 //original value 3f91745d diff --git a/patches/SLPS-25642_197E9907.pnach b/patches/SLPS-25642_197E9907.pnach index db93d82b..37633974 100644 --- a/patches/SLPS-25642_197E9907.pnach +++ b/patches/SLPS-25642_197E9907.pnach @@ -2,7 +2,7 @@ gametitle=Chou Dragon Ball Z (J)(SLPS-25642) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,002b0f04,word,3c023f10 //3c023f40 diff --git a/patches/SLPS-25649_673FB117.pnach b/patches/SLPS-25649_673FB117.pnach index 93eb57ec..6215b997 100644 --- a/patches/SLPS-25649_673FB117.pnach +++ b/patches/SLPS-25649_673FB117.pnach @@ -2,7 +2,7 @@ gametitle=Uchuu Keiji Tamashii - The Space Sheriff Spirits (J)(SLPS-25649) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25650_7D8D8BFA.pnach b/patches/SLPS-25650_7D8D8BFA.pnach index 0cf16a86..47f084d9 100644 --- a/patches/SLPS-25650_7D8D8BFA.pnach +++ b/patches/SLPS-25650_7D8D8BFA.pnach @@ -2,7 +2,7 @@ gametitle=Metal Slug (SLPS-25650) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00496bf4,word,46000003 patch=1,EE,00496bf8,word,7fb00010 diff --git a/patches/SLPS-25674_2113EA2E.pnach b/patches/SLPS-25674_2113EA2E.pnach index 428aae98..df05d5d8 100644 --- a/patches/SLPS-25674_2113EA2E.pnach +++ b/patches/SLPS-25674_2113EA2E.pnach @@ -2,7 +2,7 @@ gametitle=Metal Slug 6 (J)(SLPS-25674) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Esppiral +author=Esppiral patch=1,EE,00979744,word,3f400000 diff --git a/patches/SLPS-25676_6AFDBEC6.pnach b/patches/SLPS-25676_6AFDBEC6.pnach index 14fff190..93fa79ad 100644 --- a/patches/SLPS-25676_6AFDBEC6.pnach +++ b/patches/SLPS-25676_6AFDBEC6.pnach @@ -2,7 +2,7 @@ gametitle=Kinnikuman Muscle Grand Prix Max [NTSC-J] (SLPS_256.76) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Sergx12 +author=sergx12 //Gameplay 16:9 patch=1,EE,001A4274,word,3C014455 //3C014420 (Increases horiz. axis) diff --git a/patches/SLPS-25677_5A6C7AE6.pnach b/patches/SLPS-25677_5A6C7AE6.pnach index cee7dd99..16c6050a 100644 --- a/patches/SLPS-25677_5A6C7AE6.pnach +++ b/patches/SLPS-25677_5A6C7AE6.pnach @@ -2,7 +2,7 @@ gametitle=Blood+ One Night Kiss (J)(SLPS-25677) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25685_DE737FE2.pnach b/patches/SLPS-25685_DE737FE2.pnach index 5d8cd321..16497fdc 100644 --- a/patches/SLPS-25685_DE737FE2.pnach +++ b/patches/SLPS-25685_DE737FE2.pnach @@ -2,7 +2,7 @@ gametitle=Rurouni Kenshin - Enjou! Kyoto Rinne [NTSC-J] (SLPS-25685) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //16:9 patch=1,EE,00120c70,word,3c013f53 // 3c013f8c vert diff --git a/patches/SLPS-25687_0A340272.pnach b/patches/SLPS-25687_0A340272.pnach index d6db6866..ba8dd228 100644 --- a/patches/SLPS-25687_0A340272.pnach +++ b/patches/SLPS-25687_0A340272.pnach @@ -2,7 +2,7 @@ gametitle=Korobot Adventure (J)(SLPS-25687) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25691_2CF3EFF3.pnach b/patches/SLPS-25691_2CF3EFF3.pnach index 9219d3e2..48930e95 100644 --- a/patches/SLPS-25691_2CF3EFF3.pnach +++ b/patches/SLPS-25691_2CF3EFF3.pnach @@ -2,7 +2,7 @@ gametitle=Captain Tsubasa (NTSC-J)(SLPS-25691) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,00103f9c,word,3c013f40 //00000000 diff --git a/patches/SLPS-25695_11E3CEF6.pnach b/patches/SLPS-25695_11E3CEF6.pnach index 154db887..6d205b00 100644 --- a/patches/SLPS-25695_11E3CEF6.pnach +++ b/patches/SLPS-25695_11E3CEF6.pnach @@ -2,7 +2,7 @@ gametitle=Shinseiki GPX Cyber Formula - Road to the Infinity 3 (J)(SLPS-25695) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25701_EFFEF138.pnach b/patches/SLPS-25701_EFFEF138.pnach index 28aa5e5b..250d6b45 100644 --- a/patches/SLPS-25701_EFFEF138.pnach +++ b/patches/SLPS-25701_EFFEF138.pnach @@ -2,7 +2,7 @@ gametitle=Gallop Racer Inbreed (J)(SLPS-25701) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25703_9C4A9CD2.pnach b/patches/SLPS-25703_9C4A9CD2.pnach index ee634919..dfa64368 100644 --- a/patches/SLPS-25703_9C4A9CD2.pnach +++ b/patches/SLPS-25703_9C4A9CD2.pnach @@ -2,7 +2,7 @@ gametitle=Simple 2000 Series Vol. 111 - The Itadaki Raider (J)(SLPS-25703) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25710_A7E5CE23.pnach b/patches/SLPS-25710_A7E5CE23.pnach index c8779b56..6d3510ab 100644 --- a/patches/SLPS-25710_A7E5CE23.pnach +++ b/patches/SLPS-25710_A7E5CE23.pnach @@ -2,7 +2,7 @@ gametitle=K-1 World Grand Prix 2006 (J)(SLPS-25710) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25714_A91A6865.pnach b/patches/SLPS-25714_A91A6865.pnach index 7001dba8..21525158 100644 --- a/patches/SLPS-25714_A91A6865.pnach +++ b/patches/SLPS-25714_A91A6865.pnach @@ -2,7 +2,7 @@ gametitle=Naruto - Konoha Spirits (NTSC-J) (SLLPS_25714) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack (16:9) by ElHecht (NTSC-J by Arapapa) +author=ElHecht (NTSC-J by Arapapa) // 16:9 // 613f023c af474234 (search twice) diff --git a/patches/SLPS-25715_A90CD846.pnach b/patches/SLPS-25715_A90CD846.pnach index e6d63090..4757db09 100644 --- a/patches/SLPS-25715_A90CD846.pnach +++ b/patches/SLPS-25715_A90CD846.pnach @@ -2,7 +2,7 @@ gametitle=Tales of Destiny (J)(SLPS-25715) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0015b810,word,00000000 //e7ad0040 patch=1,EE,0015b818,word,3c013f40 //00000000 diff --git a/patches/SLPS-25729_D80F4965.pnach b/patches/SLPS-25729_D80F4965.pnach index 39bc9a9e..b2b4f107 100644 --- a/patches/SLPS-25729_D80F4965.pnach +++ b/patches/SLPS-25729_D80F4965.pnach @@ -2,7 +2,7 @@ gametitle=Kujibibi Unbalance (NTSC-J)(SLPS-25729) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25733_81BF0DFE.pnach b/patches/SLPS-25733_81BF0DFE.pnach index 2c7fecda..62f8fbed 100644 --- a/patches/SLPS-25733_81BF0DFE.pnach +++ b/patches/SLPS-25733_81BF0DFE.pnach @@ -2,7 +2,7 @@ gametitle=Super Robot Taisen OG - Original Generations (J)(SLPS-25733) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25733_B0E44B93.pnach b/patches/SLPS-25733_B0E44B93.pnach index 9a1a1556..6c8fe35d 100644 --- a/patches/SLPS-25733_B0E44B93.pnach +++ b/patches/SLPS-25733_B0E44B93.pnach @@ -2,7 +2,7 @@ gametitle=Super Robot Taisen OG Gaiden (J)(SLPS-25733) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25735_8B8B97C8.pnach b/patches/SLPS-25735_8B8B97C8.pnach index 616c5d5c..df8a7ef2 100644 --- a/patches/SLPS-25735_8B8B97C8.pnach +++ b/patches/SLPS-25735_8B8B97C8.pnach @@ -2,7 +2,7 @@ gametitle=Dragon Shadow Spell (J)(SLPS-25735) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25738_1AB273DA.pnach b/patches/SLPS-25738_1AB273DA.pnach index 1e58ba37..ec538f67 100644 --- a/patches/SLPS-25738_1AB273DA.pnach +++ b/patches/SLPS-25738_1AB273DA.pnach @@ -2,7 +2,7 @@ gametitle=Soul Nomad & the World Eaters [NTSC-J](SLPS-25739) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,00104d74,word,3c013f40 diff --git a/patches/SLPS-25740_D66FAB80.pnach b/patches/SLPS-25740_D66FAB80.pnach index 26a231fc..08267978 100644 --- a/patches/SLPS-25740_D66FAB80.pnach +++ b/patches/SLPS-25740_D66FAB80.pnach @@ -2,7 +2,7 @@ gametitle=Lupin Sansei - Lupin ni wa Shi o, Zenigata ni wa Koi o (SLPS-25740) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25743_4AB32DA8.pnach b/patches/SLPS-25743_4AB32DA8.pnach index 33090576..8b415293 100644 --- a/patches/SLPS-25743_4AB32DA8.pnach +++ b/patches/SLPS-25743_4AB32DA8.pnach @@ -2,7 +2,7 @@ gametitle=Aa Megami Sama (J)(SLPS-25743) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25747_246BD411.pnach b/patches/SLPS-25747_246BD411.pnach index 7c2d6aab..ccee093e 100644 --- a/patches/SLPS-25747_246BD411.pnach +++ b/patches/SLPS-25747_246BD411.pnach @@ -2,7 +2,7 @@ gametitle=Garouden Breakblow - Fist Or Twist (NTSC-J) (SLPS-25747) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,00177334,word,080bead3 // 46007bc7 diff --git a/patches/SLPS-25750_6667E5E4.pnach b/patches/SLPS-25750_6667E5E4.pnach index 538849c4..8a552ccb 100644 --- a/patches/SLPS-25750_6667E5E4.pnach +++ b/patches/SLPS-25750_6667E5E4.pnach @@ -2,7 +2,7 @@ gametitle=Super Robot Taisen - Scramble Commander the 2nd (J)(SLPS-25750) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25763_9AC21F92.pnach b/patches/SLPS-25763_9AC21F92.pnach index a4ecbe91..5022c807 100644 --- a/patches/SLPS-25763_9AC21F92.pnach +++ b/patches/SLPS-25763_9AC21F92.pnach @@ -2,7 +2,7 @@ gametitle=Shin Bokujou Monogatari - Pure Innocent Life (J)(SLPS-25763) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25764_46E615BE.pnach b/patches/SLPS-25764_46E615BE.pnach index 2e4b29eb..2bd7f4d4 100644 --- a/patches/SLPS-25764_46E615BE.pnach +++ b/patches/SLPS-25764_46E615BE.pnach @@ -2,7 +2,7 @@ gametitle=Busou Renkin: Yokosu Papillon Park e [NTSC-J] (SLPS-25764) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant patch=1,EE,202389F4,extended,3f400000 diff --git a/patches/SLPS-25771_101CFA06.pnach b/patches/SLPS-25771_101CFA06.pnach index 3df322fe..5ca7ac75 100644 --- a/patches/SLPS-25771_101CFA06.pnach +++ b/patches/SLPS-25771_101CFA06.pnach @@ -2,7 +2,7 @@ gametitle=Grim Grimoire (J)(SLPS-25771) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLPS-25784_B1B6E33D.pnach b/patches/SLPS-25784_B1B6E33D.pnach index 36a5dbe9..b27de661 100644 --- a/patches/SLPS-25784_B1B6E33D.pnach +++ b/patches/SLPS-25784_B1B6E33D.pnach @@ -2,7 +2,7 @@ gametitle=Another Century's Episode 3 - The Final (J)(SLPS-25784) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25806_39E23E49.pnach b/patches/SLPS-25806_39E23E49.pnach index d1a97b5d..7e4cd801 100644 --- a/patches/SLPS-25806_39E23E49.pnach +++ b/patches/SLPS-25806_39E23E49.pnach @@ -2,7 +2,7 @@ gametitle=Kateikyoushi Hitman Reborn! Dream Hyper Battle (J)(SLPS-25806) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25812_533FDBFF.pnach b/patches/SLPS-25812_533FDBFF.pnach index ca39fed4..763a5e37 100644 --- a/patches/SLPS-25812_533FDBFF.pnach +++ b/patches/SLPS-25812_533FDBFF.pnach @@ -2,7 +2,7 @@ gametitle=Tori no Hoshi: Aerial Planet [NTSC-J] (SLPS-25812) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Gaint +author=Little Giant patch=1,EE,207E219C,extended,3F533334 diff --git a/patches/SLPS-25814_BE7343FD.pnach b/patches/SLPS-25814_BE7343FD.pnach index 95e857d5..e90e2741 100644 --- a/patches/SLPS-25814_BE7343FD.pnach +++ b/patches/SLPS-25814_BE7343FD.pnach @@ -2,7 +2,7 @@ gametitle=Shinseiki GPX Cyber Formula - Road to the Infinity 4 (J)(SLPS-25814) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25815_F28D21F1.pnach b/patches/SLPS-25815_F28D21F1.pnach index 3e871992..d044f1ca 100644 --- a/patches/SLPS-25815_F28D21F1.pnach +++ b/patches/SLPS-25815_F28D21F1.pnach @@ -3,7 +3,7 @@ gametitle=Dragon Ball Z: Sparking! Meteor * NTSC-J * SLPS-25815 * F28D21F1 [Widescreen 16:9] gsaspectratio=16:9 -comment=16:9 Widescreen hack by RashFaustinho +author=RashFaustinho comment=based on sergx12's & 99skull's patches for the NTSC-U/NTSC-K versions patch=1,EE,002fe4c8,word,3FC71C76 // 3F955555 patch=1,EE,002fe590,word,43C71C71 // 43955555 diff --git a/patches/SLPS-25819_68CE6801.pnach b/patches/SLPS-25819_68CE6801.pnach index 5213c4ac..025d2cbf 100644 --- a/patches/SLPS-25819_68CE6801.pnach +++ b/patches/SLPS-25819_68CE6801.pnach @@ -2,7 +2,7 @@ gametitle=Ar tonelico II: Melody of Metafalica (JPN) (SLPS-25819) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (NTSC-J by Arapapa) +author=nemesis2000 (NTSC-J by Arapapa) //3D scenes patch=1,EE,002bab2c,word,3c013f40 // hor value diff --git a/patches/SLPS-25827_50AE9E9E.pnach b/patches/SLPS-25827_50AE9E9E.pnach index 3247160f..5154717b 100644 --- a/patches/SLPS-25827_50AE9E9E.pnach +++ b/patches/SLPS-25827_50AE9E9E.pnach @@ -2,7 +2,7 @@ gametitle=Soukou Kihei Votoms (NTSC-J)(SLPS-25827) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25829_EE84B8C5.pnach b/patches/SLPS-25829_EE84B8C5.pnach index d61d7c30..0aaeae51 100644 --- a/patches/SLPS-25829_EE84B8C5.pnach +++ b/patches/SLPS-25829_EE84B8C5.pnach @@ -2,7 +2,7 @@ gametitle=Another Century's Episode 2 [Special Vocal Version] (J)(SLPS-25829) [Widescreen 16:9] gsaspectratio=16:9 -comment=comment=Widescreen hack by Arapapa and Somebody who fixed A.C.E 3 +comment=author=Arapapa and Somebody who fixed A.C.E 3 //Widescreen hack 16:9 diff --git a/patches/SLPS-25832_BBDE6926.pnach b/patches/SLPS-25832_BBDE6926.pnach index 5f6b7664..55710be4 100644 --- a/patches/SLPS-25832_BBDE6926.pnach +++ b/patches/SLPS-25832_BBDE6926.pnach @@ -2,7 +2,7 @@ gametitle=SD Gundam G Generation Spirits (J)(SLPS-25832) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPS-25842_8409FD51.pnach b/patches/SLPS-25842_8409FD51.pnach index 893a5541..ec2ff7ff 100644 --- a/patches/SLPS-25842_8409FD51.pnach +++ b/patches/SLPS-25842_8409FD51.pnach @@ -2,7 +2,7 @@ gametitle=Tales of Destiny: Director's Cut (SLPS-25842) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0015DD04,word,3C013F20 patch=1,EE,0015DD08,word,34216D3A diff --git a/patches/SLPS-25854_F7786EE4.pnach b/patches/SLPS-25854_F7786EE4.pnach index 47bfabd4..a72afd93 100644 --- a/patches/SLPS-25854_F7786EE4.pnach +++ b/patches/SLPS-25854_F7786EE4.pnach @@ -2,7 +2,7 @@ gametitle=Poison Pink (J) (SLPS-25854) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25855_D0D71384.pnach b/patches/SLPS-25855_D0D71384.pnach index 6a7c19f7..6af3c486 100644 --- a/patches/SLPS-25855_D0D71384.pnach +++ b/patches/SLPS-25855_D0D71384.pnach @@ -2,7 +2,7 @@ gametitle=Battle of Sunrise (J)(SLPS-25855) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25881_D5FDEBDC.pnach b/patches/SLPS-25881_D5FDEBDC.pnach index c66fc96d..6626ee11 100644 --- a/patches/SLPS-25881_D5FDEBDC.pnach +++ b/patches/SLPS-25881_D5FDEBDC.pnach @@ -2,7 +2,7 @@ gametitle=Kinnikuman Muscle Grand Prix Max 2: Tokumori [NTSC-J] (SLPS_258.81) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001C5DEC,word,3C014455 //3C014420 (Increases horiz. axis) diff --git a/patches/SLPS-25900_FEEF37A0.pnach b/patches/SLPS-25900_FEEF37A0.pnach index 43e55d0c..05474d73 100644 --- a/patches/SLPS-25900_FEEF37A0.pnach +++ b/patches/SLPS-25900_FEEF37A0.pnach @@ -2,7 +2,7 @@ gametitle=Kidou Senshi Gundam 00 - Gundam Meisters (J)(SLPS-25900) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25912_DD02A95B.pnach b/patches/SLPS-25912_DD02A95B.pnach index 96538c7f..cdf72ce8 100644 --- a/patches/SLPS-25912_DD02A95B.pnach +++ b/patches/SLPS-25912_DD02A95B.pnach @@ -2,7 +2,7 @@ gametitle=Soul Eater - Battle Resonance [NTSC-J] (SLPS-25912) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant // 16:9 patch=1,EE,204aa348,word,4016DD95 // 3FE24C60 diff --git a/patches/SLPS-25917_06A7506A.pnach b/patches/SLPS-25917_06A7506A.pnach index 48fbd9b6..d4549f31 100644 --- a/patches/SLPS-25917_06A7506A.pnach +++ b/patches/SLPS-25917_06A7506A.pnach @@ -2,7 +2,7 @@ gametitle=Sacred Blaze (J)(SLPS-25917) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25932_CBB87BF9.pnach b/patches/SLPS-25932_CBB87BF9.pnach index 52d8f271..0f041994 100644 --- a/patches/SLPS-25932_CBB87BF9.pnach +++ b/patches/SLPS-25932_CBB87BF9.pnach @@ -2,7 +2,7 @@ gametitle=Evangelion - Jo (J)(SLPS-25932) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-25941_C4D0FACC.pnach b/patches/SLPS-25941_C4D0FACC.pnach index c973239f..8b530c36 100644 --- a/patches/SLPS-25941_C4D0FACC.pnach +++ b/patches/SLPS-25941_C4D0FACC.pnach @@ -2,7 +2,7 @@ gametitle=SD Gundam G Generation Wars (J)(SLPS-25941) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPS-25944_746B14AB.pnach b/patches/SLPS-25944_746B14AB.pnach index d4a6e4f3..b894b966 100644 --- a/patches/SLPS-25944_746B14AB.pnach +++ b/patches/SLPS-25944_746B14AB.pnach @@ -2,7 +2,7 @@ gametitle=Kamen Rider - Climax Heroes (J)(SLPS-25944) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLPS-25947_081CA57B.pnach b/patches/SLPS-25947_081CA57B.pnach index ccd784b1..a9b4e8cf 100644 --- a/patches/SLPS-25947_081CA57B.pnach +++ b/patches/SLPS-25947_081CA57B.pnach @@ -2,7 +2,7 @@ gametitle=Summon Night Gran-These - Horobi no Tsurugi to Yakusoku no Kishi (J)(S [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-27565_645495B7.pnach b/patches/SLPS-27565_645495B7.pnach index 07cbd1ef..283295eb 100644 --- a/patches/SLPS-27565_645495B7.pnach +++ b/patches/SLPS-27565_645495B7.pnach @@ -2,7 +2,7 @@ gametitle= King of Fighters - Maximum Impact Regulation A (J)(SLPS-27565) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-29004_C0E909E9.pnach b/patches/SLPS-29004_C0E909E9.pnach index a66aafe4..cab83bd0 100644 --- a/patches/SLPS-29004_C0E909E9.pnach +++ b/patches/SLPS-29004_C0E909E9.pnach @@ -2,7 +2,7 @@ gametitle=Lord of the Rings - Futatsu no Tou (J)(SLPS-29004) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLPS-56016_3C00FB1B.pnach b/patches/SLPS-56016_3C00FB1B.pnach index b05e9ae6..c9cec14b 100644 --- a/patches/SLPS-56016_3C00FB1B.pnach +++ b/patches/SLPS-56016_3C00FB1B.pnach @@ -2,7 +2,7 @@ gametitle=Axel Impact (K)(SLPS-56016) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLPS-65459_1384338F.pnach b/patches/SLPS-65459_1384338F.pnach index a705638c..bc41c248 100644 --- a/patches/SLPS-65459_1384338F.pnach +++ b/patches/SLPS-65459_1384338F.pnach @@ -2,7 +2,7 @@ gametitle=Bujingai [NTSC-J] (SLPS-65459) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant patch=1,EE,204AED80,extended,3F400000 // 3F800000 hor+ //patch=1,EE,205C8320,extended,3F400000 // 3F800000 zoom diff --git a/patches/SLPS-73103_D00037C4.pnach b/patches/SLPS-73103_D00037C4.pnach index e54516b0..0c099fa0 100644 --- a/patches/SLPS-73103_D00037C4.pnach +++ b/patches/SLPS-73103_D00037C4.pnach @@ -2,7 +2,7 @@ gametitle=Disgaea: Hour of Darkness [NTSC-J] (SLPS-20251) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Little Giant) +author=nemesis2000 (pnach by Little Giant) patch=1,EE,0014c39c,word,3c033f40 //3c033f80 patch=1,EE,0014c3a4,word,e7a000e4 //00000000 diff --git a/patches/SLPS-73415_D95EACB9.pnach b/patches/SLPS-73415_D95EACB9.pnach index 458b5d2d..1fea6e60 100644 --- a/patches/SLPS-73415_D95EACB9.pnach +++ b/patches/SLPS-73415_D95EACB9.pnach @@ -2,7 +2,7 @@ gametitle=Gallop Racer 6 - Revolution (PlayStation 2 the Best)(J)(SLPS-73415) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20002_06AD9CA0.pnach b/patches/SLUS-20002_06AD9CA0.pnach index 14044658..983b6057 100644 --- a/patches/SLUS-20002_06AD9CA0.pnach +++ b/patches/SLUS-20002_06AD9CA0.pnach @@ -2,7 +2,7 @@ gametitle=Ridge Racer 5 (SLUS_20002) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 //single player patch=1,EE,20332694,word,43C6C000 // 44048000 - both fov, bumper camera diff --git a/patches/SLUS-20004_DC03D71F.pnach b/patches/SLUS-20004_DC03D71F.pnach index f832efc1..2de14b4b 100644 --- a/patches/SLUS-20004_DC03D71F.pnach +++ b/patches/SLUS-20004_DC03D71F.pnach @@ -2,7 +2,7 @@ gametitle=Army Men - Air Attack 2 (NTSC-U)(SLUS-20004) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20005_F22A8886.pnach b/patches/SLUS-20005_F22A8886.pnach index b9c4fdd1..8b050a6b 100644 --- a/patches/SLUS-20005_F22A8886.pnach +++ b/patches/SLUS-20005_F22A8886.pnach @@ -2,7 +2,7 @@ gametitle=World Destruction League - Thunder Tanks (U)(SLUS-20005) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20006_43362CD2.pnach b/patches/SLUS-20006_43362CD2.pnach index 6c8d3006..d60efa87 100644 --- a/patches/SLUS-20006_43362CD2.pnach +++ b/patches/SLUS-20006_43362CD2.pnach @@ -2,7 +2,7 @@ gametitle=Warriors of Might and Magic (U)(SLUS-20006) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht and Arapapa +author=ElHecht and Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20007_70C924CC.pnach b/patches/SLUS-20007_70C924CC.pnach index 2d50979b..158c8eb4 100644 --- a/patches/SLUS-20007_70C924CC.pnach +++ b/patches/SLUS-20007_70C924CC.pnach @@ -1,8 +1,8 @@ -gametitle=WarJetz (U)(SLUS-20007) +gametitle=World Destruction League - War Jetz NTSC-U SLUS-20007 70C924CC [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -19,4 +19,7 @@ patch=1,EE,000c0008,word,449bf000 patch=1,EE,000c000c,word,461e0003 patch=1,EE,000c0010,word,080ad419 - +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0025FD04,word,00000000 //0C09E194 \ No newline at end of file diff --git a/patches/SLUS-20008_193623F8.pnach b/patches/SLUS-20008_193623F8.pnach index 29c6d5c5..fda78153 100644 --- a/patches/SLUS-20008_193623F8.pnach +++ b/patches/SLUS-20008_193623F8.pnach @@ -2,7 +2,7 @@ gametitle=All-Star Baseball 2002 (U)(SLUS-20008) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Y-fov diff --git a/patches/SLUS-20012_6AEABF4E.pnach b/patches/SLUS-20012_6AEABF4E.pnach new file mode 100644 index 00000000..3f9f3ae8 --- /dev/null +++ b/patches/SLUS-20012_6AEABF4E.pnach @@ -0,0 +1,6 @@ +gametitle=SuperCar Street Challenge NTSC-U SLUS-20012 80E9B7EF secundary CRC 6AEABF4E + +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0033FD0C,word,24020002 //24020001 \ No newline at end of file diff --git a/patches/SLUS-20012_80E9B7EF.pnach b/patches/SLUS-20012_80E9B7EF.pnach new file mode 100644 index 00000000..1aa80577 --- /dev/null +++ b/patches/SLUS-20012_80E9B7EF.pnach @@ -0,0 +1,6 @@ +gametitle=SuperCar Street Challenge NTSC-U SLUS-20012 80E9B7EF secundary CRC 6AEABF4E + +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,2043C2BC,extended,24020002 //24020001 main menu \ No newline at end of file diff --git a/patches/SLUS-20013_F77E2FB5.pnach b/patches/SLUS-20013_F77E2FB5.pnach index 2278f520..75febe9d 100644 --- a/patches/SLUS-20013_F77E2FB5.pnach +++ b/patches/SLUS-20013_F77E2FB5.pnach @@ -2,7 +2,7 @@ gametitle=Tony Hawks Pro Skater 3 (SLUS_20013) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 //(A) horizontal FOV - single player diff --git a/patches/SLUS-20015_C7B9F4F7.pnach b/patches/SLUS-20015_C7B9F4F7.pnach index 34961d75..99746987 100644 --- a/patches/SLUS-20015_C7B9F4F7.pnach +++ b/patches/SLUS-20015_C7B9F4F7.pnach @@ -2,7 +2,7 @@ gametitle=Eternal Ring (U)(SLUS-20015) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //X-Fov - ELF hack //803f013c 00a88144 0045013c diff --git a/patches/SLUS-20017_0958556B.pnach b/patches/SLUS-20017_0958556B.pnach index 5fdfe5e5..6062a376 100644 --- a/patches/SLUS-20017_0958556B.pnach +++ b/patches/SLUS-20017_0958556B.pnach @@ -2,7 +2,7 @@ gametitle=Maximo - Ghosts to Glory (SLUS_20017) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,0016eebc,word,3c023f40 //3c023f80 hor FOV patch=1,EE,001d7314,word,3feeeeee //3fb33333 render fix diff --git a/patches/SLUS-20028_E803FE7E.pnach b/patches/SLUS-20028_E803FE7E.pnach index 93f50784..20daa2b6 100644 --- a/patches/SLUS-20028_E803FE7E.pnach +++ b/patches/SLUS-20028_E803FE7E.pnach @@ -2,7 +2,7 @@ gametitle=The Operative - No One Lives Forever (U)(SLUS-20028) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20037_F802A575.pnach b/patches/SLUS-20037_F802A575.pnach index 99390077..e9e5b79f 100644 --- a/patches/SLUS-20037_F802A575.pnach +++ b/patches/SLUS-20037_F802A575.pnach @@ -2,7 +2,7 @@ gametitle=Run Like Hell (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00110838,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLUS-20039_3BD27CD0.pnach b/patches/SLUS-20039_3BD27CD0.pnach index b9167e81..46f4e1cf 100644 --- a/patches/SLUS-20039_3BD27CD0.pnach +++ b/patches/SLUS-20039_3BD27CD0.pnach @@ -2,7 +2,7 @@ gametitle=Top Gear Dare Devil (U)(SLUS-20039) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20041_B2A5B6F2.pnach b/patches/SLUS-20041_B2A5B6F2.pnach index 68fc05cf..830184c7 100644 --- a/patches/SLUS-20041_B2A5B6F2.pnach +++ b/patches/SLUS-20041_B2A5B6F2.pnach @@ -2,7 +2,7 @@ gametitle=ESPN International Track & Field (U)(SLUS20041) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20047_15030637.pnach b/patches/SLUS-20047_15030637.pnach index d560ee48..e2033611 100644 --- a/patches/SLUS-20047_15030637.pnach +++ b/patches/SLUS-20047_15030637.pnach @@ -2,7 +2,7 @@ gametitle=Gauntlet: Dark Legacy SLUS_212.82 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by pelvicthrustman +author=pelvicthrustman //Widescreen patch=1,EE,001AC1FC,word,3C013EC0 //00000000 diff --git a/patches/SLUS-20048_C4ECF541.pnach b/patches/SLUS-20048_C4ECF541.pnach index c5481521..3bdb5947 100644 --- a/patches/SLUS-20048_C4ECF541.pnach +++ b/patches/SLUS-20048_C4ECF541.pnach @@ -2,7 +2,7 @@ gametitle=Legion - Legend of Excalibur (U)(SLUS 20048) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20049_E07A0594.pnach b/patches/SLUS-20049_E07A0594.pnach index 20cdd070..51b4271e 100644 --- a/patches/SLUS-20049_E07A0594.pnach +++ b/patches/SLUS-20049_E07A0594.pnach @@ -2,7 +2,7 @@ gametitle=MLB SlugFest 2003 (U)(SLUS-20049) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20050_29B9FAD3.pnach b/patches/SLUS-20050_29B9FAD3.pnach index 43d23471..71f17487 100644 --- a/patches/SLUS-20050_29B9FAD3.pnach +++ b/patches/SLUS-20050_29B9FAD3.pnach @@ -2,7 +2,7 @@ gametitle=NBA Hoopz (U)(SLUS-20050) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20058_B9BD4B3B.pnach b/patches/SLUS-20058_B9BD4B3B.pnach index d8a3ef09..7749b6f6 100644 --- a/patches/SLUS-20058_B9BD4B3B.pnach +++ b/patches/SLUS-20058_B9BD4B3B.pnach @@ -2,7 +2,7 @@ gametitle=Moto GP (U)(SLUS-20058) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20062_5E115FB6.pnach b/patches/SLUS-20062_5E115FB6.pnach index 52b4a1a4..2330de76 100644 --- a/patches/SLUS-20062_5E115FB6.pnach +++ b/patches/SLUS-20062_5E115FB6.pnach @@ -2,7 +2,7 @@ gametitle=Grand Theft Auto III (SLUS-20062) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //widescreen fix patch=1,EE,00184A4C,word,3C013F9D @@ -22,4 +22,7 @@ description=Attempts to disable interlaced offset rendering. gsinterlacemode=1 patch=1,EE,2011299C,word,00000000 - +[60 FPS] +author=asasega +comment=Patches the game to run at 60 FPS (Might need 180% EE Overclock to be stable). +patch=1,EE,2027CEAC,extended,28420001 diff --git a/patches/SLUS-20071_23AF6876.pnach b/patches/SLUS-20071_23AF6876.pnach index 5ff9ae77..edfbb101 100644 --- a/patches/SLUS-20071_23AF6876.pnach +++ b/patches/SLUS-20071_23AF6876.pnach @@ -2,7 +2,7 @@ gametitle=DOA2: Hardcore (SLUS-20071) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0021b63c,word,3c014534 diff --git a/patches/SLUS-20072_FBC3BC36.pnach b/patches/SLUS-20072_FBC3BC36.pnach index b7a6d669..224511c0 100644 --- a/patches/SLUS-20072_FBC3BC36.pnach +++ b/patches/SLUS-20072_FBC3BC36.pnach @@ -2,7 +2,7 @@ gametitle=MX 2002 featuring Ricky Carmichael (U)(SLUS-20072) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20073_FBF28175.pnach b/patches/SLUS-20073_FBF28175.pnach index 0c32f5c0..3cba0272 100644 --- a/patches/SLUS-20073_FBF28175.pnach +++ b/patches/SLUS-20073_FBF28175.pnach @@ -2,7 +2,7 @@ gametitle=Red Faction (NTSC-U) (SLUS-20073) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002071c4,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLUS-20075_46D74751.pnach b/patches/SLUS-20075_46D74751.pnach index 168495f1..e0401efa 100644 --- a/patches/SLUS-20075_46D74751.pnach +++ b/patches/SLUS-20075_46D74751.pnach @@ -2,7 +2,7 @@ gametitle=Walt Disney's The Jungle Book - Rhythm N'Groove (U)(SLUS-20075) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20076_9CF6FA75.pnach b/patches/SLUS-20076_9CF6FA75.pnach index d0724be4..980af307 100644 --- a/patches/SLUS-20076_9CF6FA75.pnach +++ b/patches/SLUS-20076_9CF6FA75.pnach @@ -1,10 +1,9 @@ -gametitle=Disney's Tarzan - Untamed (U)(SLUS-20076). +gametitle=Disney's Tarzan - Untamed (U) (SLUS-20076) 9CF6FA75 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa - -//Widescreen hack 16:9 +author=Arapapa +description=Renders the game in 16:9 aspect ratio //Zoom //a80020c6 003f023c 00088244 @@ -21,3 +20,7 @@ patch=1,EE,000c000c,word,461e0842 patch=1,EE,000c0010,word,080db2b3 +[60 FPS] +author=PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,006AD8B8,word,00000000 //00000001 \ No newline at end of file diff --git a/patches/SLUS-20077_C573F3A2.pnach b/patches/SLUS-20077_C573F3A2.pnach index 81a94de9..59e9b33d 100644 --- a/patches/SLUS-20077_C573F3A2.pnach +++ b/patches/SLUS-20077_C573F3A2.pnach @@ -2,7 +2,7 @@ gametitle=Disney's Donald Duck - Goin' Quackers (U)(SLUS-20077) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20078_53CB5976.pnach b/patches/SLUS-20078_53CB5976.pnach index e427a90f..4c678e81 100644 --- a/patches/SLUS-20078_53CB5976.pnach +++ b/patches/SLUS-20078_53CB5976.pnach @@ -2,7 +2,7 @@ gametitle=Silent Scope (U)(SLUS-20078) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20080_D1E24531.pnach b/patches/SLUS-20080_D1E24531.pnach index abf94fce..fba3d420 100644 --- a/patches/SLUS-20080_D1E24531.pnach +++ b/patches/SLUS-20080_D1E24531.pnach @@ -2,7 +2,7 @@ gametitle=GunGriffon Blaze (U)(SLUS-20080] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20084_B0D6C2C2.pnach b/patches/SLUS-20084_B0D6C2C2.pnach index debe5c01..5c5b6f9d 100644 --- a/patches/SLUS-20084_B0D6C2C2.pnach +++ b/patches/SLUS-20084_B0D6C2C2.pnach @@ -2,7 +2,7 @@ gametitle=Soldier of Fortune - Gold Edition (U)(SLUS-20084) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20089_5F491DD1.pnach b/patches/SLUS-20089_5F491DD1.pnach index 52ab654f..9ee8f004 100644 --- a/patches/SLUS-20089_5F491DD1.pnach +++ b/patches/SLUS-20089_5F491DD1.pnach @@ -2,7 +2,7 @@ gametitle=ESPN Winter X Games Snowboarding (U)(SLUS-20089) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20090_B4A004F2.pnach b/patches/SLUS-20090_B4A004F2.pnach index 3aa99b7f..80a9027d 100644 --- a/patches/SLUS-20090_B4A004F2.pnach +++ b/patches/SLUS-20090_B4A004F2.pnach @@ -2,7 +2,7 @@ gametitle=TimeSplitters (SLUS-20090) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 and gamemasterplc (Font Fixes by gamemasterplc) +author=nemesis2000 and gamemasterplc (Font Fixes by gamemasterplc) patch=1,EE,20202634,extended,080E2665 //Jump to Code to Fix Button Width patch=1,EE,2020268C,extended,080E2678 //Jump to Code to Fix Button Skip Width patch=1,EE,20202690,extended,240200C0 //Button Skip Width Scale (192) diff --git a/patches/SLUS-20092_95062074.pnach b/patches/SLUS-20092_95062074.pnach index 3e885c16..b37dd934 100644 --- a/patches/SLUS-20092_95062074.pnach +++ b/patches/SLUS-20092_95062074.pnach @@ -2,7 +2,7 @@ gametitle=Surfing H3O (U)(SLUS-20092) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20100_3BA51A68.pnach b/patches/SLUS-20100_3BA51A68.pnach index 49665d0c..d0834670 100644 --- a/patches/SLUS-20100_3BA51A68.pnach +++ b/patches/SLUS-20100_3BA51A68.pnach @@ -2,7 +2,7 @@ gametitle=NHL 2001 (U)(SLUS-20100) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20102_823BFFD3.pnach b/patches/SLUS-20102_823BFFD3.pnach index 5e5227ed..add6ae96 100644 --- a/patches/SLUS-20102_823BFFD3.pnach +++ b/patches/SLUS-20102_823BFFD3.pnach @@ -2,7 +2,7 @@ gametitle=NBA Live 2001 (U)(SLUS-20102) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20103_E138094A.pnach b/patches/SLUS-20103_E138094A.pnach index 049a405d..b14e750e 100644 --- a/patches/SLUS-20103_E138094A.pnach +++ b/patches/SLUS-20103_E138094A.pnach @@ -2,7 +2,7 @@ gametitle=F1 Championship Season 2000 (U)(SLUS-20103) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20104_5232E8D8.pnach b/patches/SLUS-20104_5232E8D8.pnach index 131c9264..d6394647 100644 --- a/patches/SLUS-20104_5232E8D8.pnach +++ b/patches/SLUS-20104_5232E8D8.pnach @@ -2,7 +2,7 @@ gametitle=Tiger Woods PGA Tour 2001 (U)(SLUS-20104) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20105_F191AFBC.pnach b/patches/SLUS-20105_F191AFBC.pnach index 4efee8eb..79208e5e 100644 --- a/patches/SLUS-20105_F191AFBC.pnach +++ b/patches/SLUS-20105_F191AFBC.pnach @@ -1,7 +1,7 @@ [Widescreen 16:9] gsaspectratio=16:9 comment=MDK2: Armageddon (SLUS-20105) -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0017B418,word,3C0140AB diff --git a/patches/SLUS-20109_1259612B.pnach b/patches/SLUS-20109_1259612B.pnach index e63555f5..d4974d72 100644 --- a/patches/SLUS-20109_1259612B.pnach +++ b/patches/SLUS-20109_1259612B.pnach @@ -1,7 +1,6 @@ -gametitle=Rune - Viking Warlord (NTSC-U) SLUS-20109 3A09007C secondary crc 1259612B +gametitle=Rune - Viking Warlord (NTSC-U) SLUS-20109 1259612B GAME.ELF [60 FPS] author=PeterDelta -comment=Unlocked at 60 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,E001FFFD,extended,001305A8 -patch=1,EE,201305A8,extended,00000000 //1440FFFD \ No newline at end of file +description=Might need EE Overclock at 180%. +patch=1,EE,001305A4,extended,28420001 //28420002 \ No newline at end of file diff --git a/patches/SLUS-20109_3A09007C.pnach b/patches/SLUS-20109_3A09007C.pnach index 197c764d..88c9ce3d 100644 --- a/patches/SLUS-20109_3A09007C.pnach +++ b/patches/SLUS-20109_3A09007C.pnach @@ -1,6 +1,6 @@ -gametitle=Rune - Viking Warlord (NTSC-U) SLUS-20109 3A09007C secondary crc 1259612B +gametitle=Rune - Viking Warlord (NTSC-U) SLUS-20109 3A09007C //Corresponds to the main crc to activate the secondary crc 1259612B called GAME.ELF [60 FPS] author=PeterDelta -comment=Unlocked at 60 FPS. Might need enable 180% EE Overclock to be stable. \ No newline at end of file +description=Might need EE Overclock at 180%. \ No newline at end of file diff --git a/patches/SLUS-20128_E3BC4CEE.pnach b/patches/SLUS-20128_E3BC4CEE.pnach index 15fd8fc3..53bea63f 100644 --- a/patches/SLUS-20128_E3BC4CEE.pnach +++ b/patches/SLUS-20128_E3BC4CEE.pnach @@ -2,7 +2,7 @@ gametitle=ESPN MLS Extra Time (U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20130_72B3802A.pnach b/patches/SLUS-20130_72B3802A.pnach index eaf649c3..0210a971 100644 --- a/patches/SLUS-20130_72B3802A.pnach +++ b/patches/SLUS-20130_72B3802A.pnach @@ -2,7 +2,7 @@ gametitle=Street Fighter EX 3 (SLUS-201301) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by paul_met) +author=nemesis2000 (pnach by paul_met) patch=1,EE,002e34d4,word,3c013f40 patch=1,EE,002e34d8,word,44810000 patch=1,EE,002e34e0,word,4600c602 diff --git a/patches/SLUS-20131_38E20A00.pnach b/patches/SLUS-20131_38E20A00.pnach index ca51cc87..6170bfaf 100644 --- a/patches/SLUS-20131_38E20A00.pnach +++ b/patches/SLUS-20131_38E20A00.pnach @@ -2,7 +2,7 @@ gametitle=Dark Angel - Vampire Apocalypse (U)(SLUS-20131) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLUS-20132_FB307F03.pnach b/patches/SLUS-20132_FB307F03.pnach index 489313c9..a1ac73ba 100644 --- a/patches/SLUS-20132_FB307F03.pnach +++ b/patches/SLUS-20132_FB307F03.pnach @@ -2,7 +2,7 @@ gametitle=Army Men - Sarge's Heroes 2 (U)(SLUS-20132) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20133_0EAB545E.pnach b/patches/SLUS-20133_0EAB545E.pnach index 338f155e..600ba6d9 100644 --- a/patches/SLUS-20133_0EAB545E.pnach +++ b/patches/SLUS-20133_0EAB545E.pnach @@ -2,7 +2,7 @@ gametitle=High Heat Major League Baseball 2002 (U)(SLUS-20133) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20134_CD213E68.pnach b/patches/SLUS-20134_CD213E68.pnach index b53ada7d..7d81ad3e 100644 --- a/patches/SLUS-20134_CD213E68.pnach +++ b/patches/SLUS-20134_CD213E68.pnach @@ -2,7 +2,7 @@ gametitle=Sky Odyssey (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,20283488,word,3f400000 // 3f800000 hor fov diff --git a/patches/SLUS-20143_6CC36213.pnach b/patches/SLUS-20143_6CC36213.pnach index 56e1ca4f..f4d86e64 100644 --- a/patches/SLUS-20143_6CC36213.pnach +++ b/patches/SLUS-20143_6CC36213.pnach @@ -2,7 +2,7 @@ gametitle=ESPN NBA 2Night (U)(SLUS-20143) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20147_64DA78A3.pnach b/patches/SLUS-20147_64DA78A3.pnach index 5ba98223..bfd912dd 100644 --- a/patches/SLUS-20147_64DA78A3.pnach +++ b/patches/SLUS-20147_64DA78A3.pnach @@ -1,8 +1,11 @@ -gametitle=Aliens Versus Predator - Extinction (NTSC-U) [SLUS-20147] +gametitle=Aliens Versus Predator - Extinction NTSC-U SLUS-20147 64DA78A3 [Widescreen 16:9] gsaspectratio=16:9 comment=Widescreen Hack patch=1,EE,0017fc74,word,3c023f40 - +[60 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,00179110,word,47FFFFF1 //4501FFF1 \ No newline at end of file diff --git a/patches/SLUS-20149_2B58234D.pnach b/patches/SLUS-20149_2B58234D.pnach index dcc66cf8..5e495f58 100644 --- a/patches/SLUS-20149_2B58234D.pnach +++ b/patches/SLUS-20149_2B58234D.pnach @@ -2,7 +2,7 @@ gametitle=Tribes Aerial Assault [NTSC-U] (SLUS_201.49) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00181FE8,word,3C013F1E //3C013F00 Zoom diff --git a/patches/SLUS-20151_2F56CBC9.pnach b/patches/SLUS-20151_2F56CBC9.pnach index f118408d..32e52acf 100644 --- a/patches/SLUS-20151_2F56CBC9.pnach +++ b/patches/SLUS-20151_2F56CBC9.pnach @@ -2,7 +2,7 @@ gametitle=Klonoa 2:Lunatea's Veil (SLUS-20151) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by synce (NTSC-U pnach by flameofrecca) +author=synce (NTSC-U pnach by flameofrecca) patch=1,EE,0030536c,word,3c013f40 patch=1,EE,00305370,word,44810000 patch=1,EE,00305378,word,4600c602 diff --git a/patches/SLUS-20152_A32F7CD0.pnach b/patches/SLUS-20152_A32F7CD0.pnach index abda4b23..3215bf5b 100644 --- a/patches/SLUS-20152_A32F7CD0.pnach +++ b/patches/SLUS-20152_A32F7CD0.pnach @@ -2,7 +2,7 @@ gametitle=Ace Combat 04: Shattered Skies (SLUS-20152) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //widescreen fix patch=1,EE,0040DACC,word,441CF7AE diff --git a/patches/SLUS-20153_A8083AE6.pnach b/patches/SLUS-20153_A8083AE6.pnach index 9e824338..4532a9d2 100644 --- a/patches/SLUS-20153_A8083AE6.pnach +++ b/patches/SLUS-20153_A8083AE6.pnach @@ -2,7 +2,7 @@ gametitle=RC Revenge Pro (U)((SLUS-20153) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20159_CEC42835.pnach b/patches/SLUS-20159_CEC42835.pnach index 40d51586..dc167a2d 100644 --- a/patches/SLUS-20159_CEC42835.pnach +++ b/patches/SLUS-20159_CEC42835.pnach @@ -2,7 +2,7 @@ gametitle=Dave Mirra Freestyle BMX 2 (SLUS-20159) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by BloodRaynare +author=BloodRaynare // 16:9 patch=1,EE,00100c58,word,3c013f40 // 3c013f80 hor fov diff --git a/patches/SLUS-20162_CF736A9D.pnach b/patches/SLUS-20162_CF736A9D.pnach index 92d38b31..225c1278 100644 --- a/patches/SLUS-20162_CF736A9D.pnach +++ b/patches/SLUS-20162_CF736A9D.pnach @@ -2,7 +2,7 @@ gametitle=Aqua Aqua (U)(SLUS-20162) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLUS-20166_0414648B.pnach b/patches/SLUS-20166_0414648B.pnach index c91b7a43..aa23f487 100644 --- a/patches/SLUS-20166_0414648B.pnach +++ b/patches/SLUS-20166_0414648B.pnach @@ -2,7 +2,7 @@ gametitle=ESPN National Hockey Night (U)(SLUS-20166) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20169_D4DE7788.pnach b/patches/SLUS-20169_D4DE7788.pnach index 4912bdb7..98d41c50 100644 --- a/patches/SLUS-20169_D4DE7788.pnach +++ b/patches/SLUS-20169_D4DE7788.pnach @@ -2,7 +2,7 @@ gametitle=Ephemeral Fantasia [NTSC-J] (SLUS-20169) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //vert patch=1,EE,00231ff4,word,3c023fa2 diff --git a/patches/SLUS-20170_348CEAC4.pnach b/patches/SLUS-20170_348CEAC4.pnach index 0fdcf4a3..5eaef291 100644 --- a/patches/SLUS-20170_348CEAC4.pnach +++ b/patches/SLUS-20170_348CEAC4.pnach @@ -2,7 +2,7 @@ gametitle=The Adventures of Cookie & Cream (NTSC) SLUS_201.70 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by flameofrecca +author=flameofrecca //pnach must be loaded before level, else codes won't work patch=1,EE,00100278,word,3c013f40 //horizontal fov fix in-game camera only diff --git a/patches/SLUS-20171_A1C2092C.pnach b/patches/SLUS-20171_A1C2092C.pnach index 2a15a024..1b681dd2 100644 --- a/patches/SLUS-20171_A1C2092C.pnach +++ b/patches/SLUS-20171_A1C2092C.pnach @@ -2,7 +2,7 @@ gametitle=Motor Mayhem - Vehicular Combat League (U)(SLUS-20171) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20173_CE1DF671.pnach b/patches/SLUS-20173_CE1DF671.pnach index 3f664309..177c3556 100644 --- a/patches/SLUS-20173_CE1DF671.pnach +++ b/patches/SLUS-20173_CE1DF671.pnach @@ -2,7 +2,7 @@ gametitle=Unison - Rebels of Rhythm & Dance (U)(SLUS-20173) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20175_88CA8484.pnach b/patches/SLUS-20175_88CA8484.pnach index d7424ac5..cce51c0d 100644 --- a/patches/SLUS-20175_88CA8484.pnach +++ b/patches/SLUS-20175_88CA8484.pnach @@ -2,7 +2,7 @@ gametitle=Mobile Suit Gundam - Journey to Jaburo (U)(SLUS-20175) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20176_D813AF38.pnach b/patches/SLUS-20176_D813AF38.pnach index e75765b6..f6ef3f00 100644 --- a/patches/SLUS-20176_D813AF38.pnach +++ b/patches/SLUS-20176_D813AF38.pnach @@ -2,7 +2,7 @@ gametitle=NASCAR Heat 2002 (U)(SLUS-20176) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20184_24036809.pnach b/patches/SLUS-20184_24036809.pnach index 2397d3cf..e304b48d 100644 --- a/patches/SLUS-20184_24036809.pnach +++ b/patches/SLUS-20184_24036809.pnach @@ -2,67 +2,18 @@ gametitle=Resident Evil: Code: Veronica X (SLUS-20184) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) - -//gameplay -patch=1,EE,001322a0,word,3c023fc0 //vert fov - -patch=1,EE,00137860,word,00000000 - -patch=1,EE,0026c590,word,3c024370 -patch=1,EE,0026c594,word,44826800 -patch=1,EE,0026c598,word,2402401c //cutscenes both fov -patch=1,EE,0026c59c,word,3c01002e -patch=1,EE,0026c5a0,word,03e00008 -patch=1,EE,0026c5a4,word,a4222ab0 -patch=1,EE,0026c5a8,word,00000000 -patch=1,EE,0026c5ac,word,00000000 -patch=1,EE,0026c5b0,word,3c024370 -patch=1,EE,0026c5b4,word,44826800 -patch=1,EE,0026c5b8,word,24024040 //gameplay both fov -patch=1,EE,0026c5bc,word,3c01002e -patch=1,EE,0026c5c0,word,03e00008 -patch=1,EE,0026c5c4,word,a4222ab0 -patch=1,EE,0026c5c8,word,00000000 -patch=1,EE,0026c5cc,word,00000000 - -patch=1,EE,00171db4,word,0809b16c -patch=1,EE,00171db8,word,00000000 - -patch=1,EE,00171d08,word,0809b164 -patch=1,EE,00171d0c,word,00000000 - -patch=1,EE,002cfefc,word,3c013f80 -patch=1,EE,002cff00,word,44811000 - -//old - -//gameplay -//patch=1,EE,00132298,word,3c023f61 //hor value -//patch=1,EE,0013229c,word,34436893 - -//render fix -//patch=1,EE,00171DA8,word,3c0243d6 //partial render fix 1 -//patch=1,EE,00171CFC,word,3c0243d6 //partial render fix 2 - -//patch=1,EE,002e29e8,word,3c014466 //partial render fix 3 -//patch=1,EE,002e29ec,word,44810800 - -//patch=1,EE,002cfeec,word,3c013f97 //partial render fix 4 -//patch=1,EE,002cfef0,word,44811800 - -//FMV's fix -patch=1,EE,21E218C0,extended,01AA0280 -patch=1,EE,21E218C4,extended,000C0000 - -//font fix -patch=1,EE,002B9A50,word,3C013F40 -patch=1,EE,002B9A54,word,44816000 -patch=1,EE,002B9A58,word,460C6B02 -patch=1,EE,002B9A5c,word,3C010050 -patch=1,EE,002B9A60,word,E42C8140 -patch=1,EE,002B9A64,word,E42D8138 -patch=1,EE,002B9A68,word,03E00008 -patch=1,EE,002B9A6c,word,E42E8130 - - +author=Gabominated +description=Widescreen hack ported from PAL-M4 ver by ElHecht +patch=1,EE,01128700,word,3f400000 //3f800000 x-fov +patch=1,EE,01E218C0,word,01aa0280 //01400280 FMVs +patch=1,EE,01E218C4,word,000c0000 //00400000 + +[Door Transition Skip] +// https://gist.github.com/kapdap/91ff4e4a32d45b5a6ee6b9ef7b298895 +author=kapdap +patch=1,EE,00133D4C,word,00000000 // remove call to bhControlDoor +patch=1,EE,00133D54,word,00000000 // remove door animation completed check + +[Skip Startup logos and warning] +author=illusion +patch=1,EE,001324D4,word,34640008 \ No newline at end of file diff --git a/patches/SLUS-20187_AE381E74.pnach b/patches/SLUS-20187_AE381E74.pnach index 7a4bb146..a70159d4 100644 --- a/patches/SLUS-20187_AE381E74.pnach +++ b/patches/SLUS-20187_AE381E74.pnach @@ -2,7 +2,7 @@ gametitle= NBA Street (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack by VIRGIN KLM +author=VIRGIN KLM //Widescreen - 3D Elements patch=1,EE,00644C48,word,3F955555 // 3F6EEEEF diff --git a/patches/SLUS-20189_C1760287.pnach b/patches/SLUS-20189_C1760287.pnach index f120ff26..bbc8985d 100644 --- a/patches/SLUS-20189_C1760287.pnach +++ b/patches/SLUS-20189_C1760287.pnach @@ -2,7 +2,7 @@ gametitle= Tokyo Extreme Racer - Zero (NTSC) (SLUS-20189) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack by VIRGIN KLM +author=VIRGIN KLM // 16:9 - 3D Elements patch=1,EE,20748364,word,3F400000 diff --git a/patches/SLUS-20190_84EB1966.pnach b/patches/SLUS-20190_84EB1966.pnach index 9c01f469..e67f7040 100644 --- a/patches/SLUS-20190_84EB1966.pnach +++ b/patches/SLUS-20190_84EB1966.pnach @@ -2,7 +2,7 @@ gametitle=Monster Rancher 3 (U)(SLUS-20190) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20195_37878C74.pnach b/patches/SLUS-20195_37878C74.pnach index d5b9f1ed..bc15b97a 100644 --- a/patches/SLUS-20195_37878C74.pnach +++ b/patches/SLUS-20195_37878C74.pnach @@ -2,7 +2,7 @@ gametitle=Dragon Rage [NTSC-U] (SLUS_201.95) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001BFBCC,word,3C013EC6 //3C013F80 Zoom diff --git a/patches/SLUS-20195_37878C77.pnach b/patches/SLUS-20195_37878C77.pnach index d2d8ca87..8cee1e02 100644 --- a/patches/SLUS-20195_37878C77.pnach +++ b/patches/SLUS-20195_37878C77.pnach @@ -2,7 +2,7 @@ gametitle=Dragon Rage (U)(SLUS-20195) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20196_E4AB856D.pnach b/patches/SLUS-20196_E4AB856D.pnach index a5371496..6d13afde 100644 --- a/patches/SLUS-20196_E4AB856D.pnach +++ b/patches/SLUS-20196_E4AB856D.pnach @@ -2,7 +2,7 @@ gametitle=Soccer America - International Cup (U)(SLUS-20196) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20198_18720162.pnach b/patches/SLUS-20198_18720162.pnach index a0cfcf9d..b68582f0 100644 --- a/patches/SLUS-20198_18720162.pnach +++ b/patches/SLUS-20198_18720162.pnach @@ -2,7 +2,7 @@ gametitle=Fireblade (NTSC-U) [SLUS-20198] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,20559830,extended,3F400000 //3F800000 (Increases hor. axis) diff --git a/patches/SLUS-20202_F00293CA.pnach b/patches/SLUS-20202_F00293CA.pnach index 4e472d1a..c8d33a17 100644 --- a/patches/SLUS-20202_F00293CA.pnach +++ b/patches/SLUS-20202_F00293CA.pnach @@ -2,7 +2,7 @@ gametitle=Crazy Taxi (SLUS_20202) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 and gamemasterplc +author=No.47 and gamemasterplc patch=1,EE,20132520,extended,0806848E //Hook pf_size to Shrink Font patch=1,EE,20133880,extended,3C013F40 //X Size of Game Time Bar and Game Time Left diff --git a/patches/SLUS-20204_0EF2C216.pnach b/patches/SLUS-20204_0EF2C216.pnach index 803d1394..664c8248 100644 --- a/patches/SLUS-20204_0EF2C216.pnach +++ b/patches/SLUS-20204_0EF2C216.pnach @@ -2,7 +2,7 @@ gametitle=Smugglers Run 2 - Hostile Territory (SLUS_20204) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,2036EDB8,word,3FAAAAAA diff --git a/patches/SLUS-20205_5C06B9F3.pnach b/patches/SLUS-20205_5C06B9F3.pnach index aeb81442..6cb8cd40 100644 --- a/patches/SLUS-20205_5C06B9F3.pnach +++ b/patches/SLUS-20205_5C06B9F3.pnach @@ -2,7 +2,7 @@ gametitle=Casper - Spirit Dimensions (U)(SLUS-20205) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20206_49DC3D25.pnach b/patches/SLUS-20206_49DC3D25.pnach index 5f274da2..0181d207 100644 --- a/patches/SLUS-20206_49DC3D25.pnach +++ b/patches/SLUS-20206_49DC3D25.pnach @@ -2,7 +2,7 @@ gametitle=Army Men - RTS (U)(SLUS-20206) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20208_C9E72987.pnach b/patches/SLUS-20208_C9E72987.pnach index ccd0b52a..5535e056 100644 --- a/patches/SLUS-20208_C9E72987.pnach +++ b/patches/SLUS-20208_C9E72987.pnach @@ -2,7 +2,7 @@ gametitle=Sunny Garcia Surfing [NTSC-U] [SLUS-20208] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20216_79B8A95F.pnach b/patches/SLUS-20216_79B8A95F.pnach index 2a4eabed..8be93dbf 100644 --- a/patches/SLUS-20216_79B8A95F.pnach +++ b/patches/SLUS-20216_79B8A95F.pnach @@ -2,7 +2,7 @@ gametitle=Devil May Cry (SLUS-20216) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,0014e478,word,3c023f19 diff --git a/patches/SLUS-20217_2B2E1535.pnach b/patches/SLUS-20217_2B2E1535.pnach index 03df9010..0bb814a4 100644 --- a/patches/SLUS-20217_2B2E1535.pnach +++ b/patches/SLUS-20217_2B2E1535.pnach @@ -2,7 +2,7 @@ gametitle=Arctic Thunder (U)(SLUS-20217) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20218_D5B1137C.pnach b/patches/SLUS-20218_D5B1137C.pnach index 1b6ced75..c860b9ba 100644 --- a/patches/SLUS-20218_D5B1137C.pnach +++ b/patches/SLUS-20218_D5B1137C.pnach @@ -2,7 +2,7 @@ gametitle=Stunt GP [NTSC-U] [D5B1137C] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by LRukyk +author=LRukyk //Master Code patch=1,EE,902A3254,extended,0C0ACE0D diff --git a/patches/SLUS-20219_D5D560FF.pnach b/patches/SLUS-20219_D5D560FF.pnach index 6c476a82..3460af79 100644 --- a/patches/SLUS-20219_D5D560FF.pnach +++ b/patches/SLUS-20219_D5D560FF.pnach @@ -2,7 +2,11 @@ gametitle=Time Crisis 2 SLUS_202.19 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,003cd7fc,word,3f400000 - +[Sound Fix for FMV Scenes] +author=kozarovv +description=Sound fix for stuttering glitchy audio during FMV/cut-scenes +patch=1,EE,00154954,extended,10000009 +//Fix code was posted at PCSX2 wiki. Additional info given was "Skip 1200000 cycles loop - fix audio." diff --git a/patches/SLUS-20220_5EA6B8BE.pnach b/patches/SLUS-20220_5EA6B8BE.pnach index ed312dbf..20d4f42c 100644 --- a/patches/SLUS-20220_5EA6B8BE.pnach +++ b/patches/SLUS-20220_5EA6B8BE.pnach @@ -2,7 +2,7 @@ gametitle=Dead to Rights (U)(SLUS-20220) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20221_7FBCDA34.pnach b/patches/SLUS-20221_7FBCDA34.pnach index c875c0f3..a207019c 100644 --- a/patches/SLUS-20221_7FBCDA34.pnach +++ b/patches/SLUS-20221_7FBCDA34.pnach @@ -2,7 +2,7 @@ gametitle=Vampire Night (NTSC-U) (SLUS-20221) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht ported by PsxFan107 +author=ElHecht ported by PsxFan107 // 16:9 patch=1,EE,00212358,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLUS-20223_A6D116DB.pnach b/patches/SLUS-20223_A6D116DB.pnach index 27534ac3..1006b398 100644 --- a/patches/SLUS-20223_A6D116DB.pnach +++ b/patches/SLUS-20223_A6D116DB.pnach @@ -2,7 +2,7 @@ gametitle=Splashdown (U)(SLUS-20223) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Sergx12 and El_Patas +author=sergx12 and El_Patas //Gameplay 16:9 diff --git a/patches/SLUS-20225_03854A28.pnach b/patches/SLUS-20225_03854A28.pnach index afc497a0..66ee878b 100644 --- a/patches/SLUS-20225_03854A28.pnach +++ b/patches/SLUS-20225_03854A28.pnach @@ -2,7 +2,7 @@ gametitle=Gadget Racers (U)(SLUS-20225) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20226_5BD38469.pnach b/patches/SLUS-20226_5BD38469.pnach index 42d8473a..4ce521fd 100644 --- a/patches/SLUS-20226_5BD38469.pnach +++ b/patches/SLUS-20226_5BD38469.pnach @@ -2,7 +2,7 @@ gametitle=Batman - Vengeance (U)(SLUS-20226) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20227_9F70EE4F.pnach b/patches/SLUS-20227_9F70EE4F.pnach index ffd05324..dbdddddd 100644 --- a/patches/SLUS-20227_9F70EE4F.pnach +++ b/patches/SLUS-20227_9F70EE4F.pnach @@ -2,7 +2,7 @@ gametitle=Star Trek Voyager - Elite Force (U)(SLUS-20227) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20229_AE94FAF8.pnach b/patches/SLUS-20229_AE94FAF8.pnach index 44e073a1..eaa8c17c 100644 --- a/patches/SLUS-20229_AE94FAF8.pnach +++ b/patches/SLUS-20229_AE94FAF8.pnach @@ -2,7 +2,7 @@ gametitle=Jonny Moseley Mad Trix (U)(SLUS-20229) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20232_7A0494DD.pnach b/patches/SLUS-20232_7A0494DD.pnach index e69e47e0..fc35dade 100644 --- a/patches/SLUS-20232_7A0494DD.pnach +++ b/patches/SLUS-20232_7A0494DD.pnach @@ -2,7 +2,7 @@ gametitle=Thunder Strike - Operation Phoenix (U)(SLUS-20232) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20233_23FFE14B.pnach b/patches/SLUS-20233_23FFE14B.pnach index 5962ed2a..18f7efb6 100644 --- a/patches/SLUS-20233_23FFE14B.pnach +++ b/patches/SLUS-20233_23FFE14B.pnach @@ -2,7 +2,7 @@ gametitle=Mobile Suit Gundam - Zeonic Front (U)(SLUS-20233) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20234_FE0E9B39.pnach b/patches/SLUS-20234_FE0E9B39.pnach index 40dea549..5c3c635c 100644 --- a/patches/SLUS-20234_FE0E9B39.pnach +++ b/patches/SLUS-20234_FE0E9B39.pnach @@ -1,8 +1,8 @@ -gametitle=MXRider (U)(SLUS-20234) +gametitle=MX Rider NTSC-U SLUS-20234 FE0E9B39 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -10,4 +10,7 @@ comment=Widescreen hack by Arapapa //003f013c 00008144 8e3c013c (2nd) patch=1,EE,002ce4f4,word,3c013f20 //3c013f00 - +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00322C70,word,C6400030 //C6400034 \ No newline at end of file diff --git a/patches/SLUS-20237_C801FB9F.pnach b/patches/SLUS-20237_C801FB9F.pnach index 5ab1deb9..2a9cbd28 100644 --- a/patches/SLUS-20237_C801FB9F.pnach +++ b/patches/SLUS-20237_C801FB9F.pnach @@ -2,7 +2,7 @@ gametitle=ESPN Winter X-Games Skateboarding (U)(SLUS-20237) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20238_103B5706.pnach b/patches/SLUS-20238_103B5706.pnach index 2061f3f9..e8f31ecb 100644 --- a/patches/SLUS-20238_103B5706.pnach +++ b/patches/SLUS-20238_103B5706.pnach @@ -2,7 +2,7 @@ gametitle=Crash Bandicoot Wrath Of Cortex (SLUS_202.38) (Version 1.1) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by flameofrecca; ported by PsxFan107 +author=flameofrecca; ported by PsxFan107 patch=1,EE,001138B8,extended,3c013f11 //vertical fov patch=1,EE,001127A0,extended,3c013f2a //zoom value patch=1,EE,0011287C,extended,3c013f2a //render value diff --git a/patches/SLUS-20238_5188ABCA.pnach b/patches/SLUS-20238_5188ABCA.pnach index 7f6fd6bb..d7af266b 100644 --- a/patches/SLUS-20238_5188ABCA.pnach +++ b/patches/SLUS-20238_5188ABCA.pnach @@ -2,7 +2,7 @@ gametitle=Crash Bandicoot Wrath of Cortex (SLUS-20238) (Version 1.0) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by flameofrecca +author=flameofrecca patch=1,EE,00113500,word,3c013f11 //vertical fov patch=1,EE,0011207c,word,3c013f2a //zoom value patch=1,EE,001124c8,word,3c013f2a //render value diff --git a/patches/SLUS-20239_EAB0862D.pnach b/patches/SLUS-20239_EAB0862D.pnach index e7a58eeb..ea0177b4 100644 --- a/patches/SLUS-20239_EAB0862D.pnach +++ b/patches/SLUS-20239_EAB0862D.pnach @@ -1,19 +1,16 @@ gametitle=Driven (U)(SLUS-20239) -[Widescreen 16:9] -gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa - -//Widescreen hack 16:9 +//[Widescreen 16:9] +//gsaspectratio=16:9 +//author=Arapapa +//Missing render fix //X-Fov //43000146 0400048e 03000246 -patch=1,EE,001c01a8,word,08030000 - -patch=1,EE,000c0000,word,46010043 -patch=1,EE,000c0004,word,3c013f40 -patch=1,EE,000c0008,word,4481f000 -patch=1,EE,000c000c,word,461e0842 -patch=1,EE,000c0010,word,0807006b - +//patch=1,EE,001c01a8,word,08030000 +//patch=1,EE,000c0000,word,46010043 +//patch=1,EE,000c0004,word,3c013f40 +//patch=1,EE,000c0008,word,4481f000 +//patch=1,EE,000c000c,word,461e0842 +//patch=1,EE,000c0010,word,0807006b \ No newline at end of file diff --git a/patches/SLUS-20240_7DBA914D.pnach b/patches/SLUS-20240_7DBA914D.pnach index 8c944018..54e8d697 100644 --- a/patches/SLUS-20240_7DBA914D.pnach +++ b/patches/SLUS-20240_7DBA914D.pnach @@ -2,7 +2,7 @@ gametitle=Conflict Zone - Modern War Strategy (U)(SLUS-20240) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20242_4876A0E7.pnach b/patches/SLUS-20242_4876A0E7.pnach index b9b521df..5f7e5201 100644 --- a/patches/SLUS-20242_4876A0E7.pnach +++ b/patches/SLUS-20242_4876A0E7.pnach @@ -2,7 +2,7 @@ gametitle=Legends of Wrestling (U)(SLUS-20242) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20244_99218C61.pnach b/patches/SLUS-20244_99218C61.pnach index d918ff94..d230f5ab 100644 --- a/patches/SLUS-20244_99218C61.pnach +++ b/patches/SLUS-20244_99218C61.pnach @@ -2,7 +2,7 @@ gametitle=Robotech - Battlecry (U)(SLUS-20244) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20246_15149318.pnach b/patches/SLUS-20246_15149318.pnach index 3e936269..66973c4b 100644 --- a/patches/SLUS-20246_15149318.pnach +++ b/patches/SLUS-20246_15149318.pnach @@ -2,7 +2,7 @@ gametitle=Capcom vs SNK 2 (NTSC) (SLUS-20246) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by gamemasterplc +author=gamemasterplc // removed because causes the image to be shifted to the right diff --git a/patches/SLUS-20250_76CBC428.pnach b/patches/SLUS-20250_76CBC428.pnach index 12a6b47d..b9d25757 100644 --- a/patches/SLUS-20250_76CBC428.pnach +++ b/patches/SLUS-20250_76CBC428.pnach @@ -2,7 +2,7 @@ gametitle=Stuntman (U)(SLUS-20250) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa and FlatOut +author=Arapapa and FlatOut //Gameplay 16:9 diff --git a/patches/SLUS-20252_1F051E41.pnach b/patches/SLUS-20252_1F051E41.pnach index 4d76d79a..125566c3 100644 --- a/patches/SLUS-20252_1F051E41.pnach +++ b/patches/SLUS-20252_1F051E41.pnach @@ -2,7 +2,7 @@ gametitle=UFC: Throwdown [NTSC-U] (SLUS_202.52) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001A75CC,word,3C013CBB //3C013C8E Zoom diff --git a/patches/SLUS-20257_9206FE2A.pnach b/patches/SLUS-20257_9206FE2A.pnach index ed4f0f2d..c6b56ebc 100644 --- a/patches/SLUS-20257_9206FE2A.pnach +++ b/patches/SLUS-20257_9206FE2A.pnach @@ -2,7 +2,7 @@ gametitle=Frogger - The Great Quest (U)(SLUS-20257) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20261_162CDF86.pnach b/patches/SLUS-20261_162CDF86.pnach index 4af7dfb7..dc0b2209 100644 --- a/patches/SLUS-20261_162CDF86.pnach +++ b/patches/SLUS-20261_162CDF86.pnach @@ -2,7 +2,7 @@ gametitle=ESPN NBA 2Night 2002 (U)(SLUS-20261) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20262_3E29A8FD.pnach b/patches/SLUS-20262_3E29A8FD.pnach index a07cd9cf..412115a9 100644 --- a/patches/SLUS-20262_3E29A8FD.pnach +++ b/patches/SLUS-20262_3E29A8FD.pnach @@ -2,7 +2,7 @@ gametitle=Rugby (USA) [SLUS-20262] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20264_2870C248.pnach b/patches/SLUS-20264_2870C248.pnach index 6f816c87..138051bb 100644 --- a/patches/SLUS-20264_2870C248.pnach +++ b/patches/SLUS-20264_2870C248.pnach @@ -2,7 +2,7 @@ gametitle=F1 2001 (U)(SLUS-20264) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20271_6CD016D5.pnach b/patches/SLUS-20271_6CD016D5.pnach index ec535ea5..032f0d58 100644 --- a/patches/SLUS-20271_6CD016D5.pnach +++ b/patches/SLUS-20271_6CD016D5.pnach @@ -2,11 +2,11 @@ gametitle=Shifters SLUS_202.71 6CD016D5 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,204c4ed0,extended,3F81DE4A patch=1,EE,204c4f50,extended,3F81DE4A [60 FPS] author=PeterDelta -comment=Unlocked at 60 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,004C4E9C,word,00000001 //00000002 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,004C4E9C,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLUS-20274_9B87ACF8.pnach b/patches/SLUS-20274_9B87ACF8.pnach index 3fe1b47d..0f7ca9d1 100644 --- a/patches/SLUS-20274_9B87ACF8.pnach +++ b/patches/SLUS-20274_9B87ACF8.pnach @@ -2,7 +2,7 @@ gametitle=City Crisis (U)(SLUS-20274) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20278_12BCE532.pnach b/patches/SLUS-20278_12BCE532.pnach index 5c9eac77..1d2bd797 100644 --- a/patches/SLUS-20278_12BCE532.pnach +++ b/patches/SLUS-20278_12BCE532.pnach @@ -2,7 +2,7 @@ gametitle=Yanya Caballista - City Skater (U)(SLUS-20278) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen Hack 16:9 diff --git a/patches/SLUS-20280_73C38087.pnach b/patches/SLUS-20280_73C38087.pnach index 79bd5072..6d09669e 100644 --- a/patches/SLUS-20280_73C38087.pnach +++ b/patches/SLUS-20280_73C38087.pnach @@ -2,7 +2,7 @@ gametitle=FIFA Soccer 2002 (U)(SLUS-20280) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20281_533584A7.pnach b/patches/SLUS-20281_533584A7.pnach index 667f4021..93149c33 100644 --- a/patches/SLUS-20281_533584A7.pnach +++ b/patches/SLUS-20281_533584A7.pnach @@ -2,7 +2,7 @@ gametitle=NHL 2002 (U)(SLUS-20281) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20282_4E11E5CC.pnach b/patches/SLUS-20282_4E11E5CC.pnach index dd744e17..4fe2b4ca 100644 --- a/patches/SLUS-20282_4E11E5CC.pnach +++ b/patches/SLUS-20282_4E11E5CC.pnach @@ -2,7 +2,7 @@ gametitle=Victorious Boxers - Ippo's Road to Glory (U)(SLUS-20282) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20285_586EA828.pnach b/patches/SLUS-20285_586EA828.pnach index 0e2bf23e..ca7d4834 100644 --- a/patches/SLUS-20285_586EA828.pnach +++ b/patches/SLUS-20285_586EA828.pnach @@ -2,7 +2,7 @@ gametitle=Moto GP 2 (U)(SLUS-20285) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20286_AD3294F9.pnach b/patches/SLUS-20286_AD3294F9.pnach index b0b1e3ae..ba52c526 100644 --- a/patches/SLUS-20286_AD3294F9.pnach +++ b/patches/SLUS-20286_AD3294F9.pnach @@ -2,7 +2,7 @@ gametitle=Smash Court Tennis - Pro Tournament (U)(SLUS-20286) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20291_92624842.pnach b/patches/SLUS-20291_92624842.pnach index e348d99e..cda62236 100644 --- a/patches/SLUS-20291_92624842.pnach +++ b/patches/SLUS-20291_92624842.pnach @@ -2,7 +2,7 @@ gametitle=Big Mutha Truckers (U)(SLUS-20291) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20292_9D57694E.pnach b/patches/SLUS-20292_9D57694E.pnach index d909b80c..fb470602 100644 --- a/patches/SLUS-20292_9D57694E.pnach +++ b/patches/SLUS-20292_9D57694E.pnach @@ -6,4 +6,11 @@ comment=Widescreen Hack patch=1,EE,0017cf94,extended,3c013f40 patch=1,EE,001c1f30,extended,3c013f40 +[No-Interlacing] +author=NineKain +description=Attempts to disable interlaced offset rendering. +gsinterlacemode=1 +//Remove Interlacing +patch=1,EE,00207d14,word,00000000 +patch=1,EE,00207d9c,word,00000000 diff --git a/patches/SLUS-20296_5D8B63C1.pnach b/patches/SLUS-20296_5D8B63C1.pnach index 9e05a9ca..7d73992d 100644 --- a/patches/SLUS-20296_5D8B63C1.pnach +++ b/patches/SLUS-20296_5D8B63C1.pnach @@ -2,7 +2,7 @@ gametitle=Kao the Kangaroo Round 2 (U)(SLUS-20296) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20297_5F4DB1DD.pnach b/patches/SLUS-20297_5F4DB1DD.pnach index 054ad142..611b09c8 100644 --- a/patches/SLUS-20297_5F4DB1DD.pnach +++ b/patches/SLUS-20297_5F4DB1DD.pnach @@ -2,7 +2,7 @@ gametitle=Return to Castle Wolfenstein: Operation Resurrection (SLUS-20297) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0012f928,word,3c0142ab //ver fov 1 patch=1,EE,0012f92c,word,3421e328 diff --git a/patches/SLUS-20298_2DB5A0F4.pnach b/patches/SLUS-20298_2DB5A0F4.pnach index a2acf418..b046d740 100644 --- a/patches/SLUS-20298_2DB5A0F4.pnach +++ b/patches/SLUS-20298_2DB5A0F4.pnach @@ -2,7 +2,7 @@ gametitle=High Heat - Major League Baseball 2003 (U)(SLUS-20298) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20299_AD955489.pnach b/patches/SLUS-20299_AD955489.pnach index f6c84986..f368f12d 100644 --- a/patches/SLUS-20299_AD955489.pnach +++ b/patches/SLUS-20299_AD955489.pnach @@ -2,7 +2,7 @@ gametitle=Street Hoops (U)(SLUS-20299) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20300_F26B83E0.pnach b/patches/SLUS-20300_F26B83E0.pnach index c90f0809..5dae562d 100644 --- a/patches/SLUS-20300_F26B83E0.pnach +++ b/patches/SLUS-20300_F26B83E0.pnach @@ -2,7 +2,7 @@ gametitle=Dark Summit (U)(SLUS-20300) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // Widescreen hack 16:9 diff --git a/patches/SLUS-20302_D0B9C45F.pnach b/patches/SLUS-20302_D0B9C45F.pnach index b3eb89ce..4e89b118 100644 --- a/patches/SLUS-20302_D0B9C45F.pnach +++ b/patches/SLUS-20302_D0B9C45F.pnach @@ -2,7 +2,7 @@ gametitle=XG3 - Extreme G Racing (SLUS_20302) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,2022CF04,word,3FE38E38 patch=1,EE,2022D014,word,42AC0000 diff --git a/patches/SLUS-20303_78B0222C.pnach b/patches/SLUS-20303_78B0222C.pnach index 985b7226..88153426 100644 --- a/patches/SLUS-20303_78B0222C.pnach +++ b/patches/SLUS-20303_78B0222C.pnach @@ -2,7 +2,7 @@ gametitle=NBA Live 2002 (U)(SLUS-20303) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLUS-20310_57BF965B.pnach b/patches/SLUS-20310_57BF965B.pnach index ba63d0c9..770c0243 100644 --- a/patches/SLUS-20310_57BF965B.pnach +++ b/patches/SLUS-20310_57BF965B.pnach @@ -2,7 +2,7 @@ gametitle=Gravity Games Bike - Street. Vert. Dirt. (U)(SLUS-20310) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20311_E0A54502.pnach b/patches/SLUS-20311_E0A54502.pnach index ee8d2a16..4e4bbcf2 100644 --- a/patches/SLUS-20311_E0A54502.pnach +++ b/patches/SLUS-20311_E0A54502.pnach @@ -2,7 +2,7 @@ gametitle=All-Star Baseball 2003 (U)(SLUS-20311) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Y-fov diff --git a/patches/SLUS-20312_BB3D833A.pnach b/patches/SLUS-20312_BB3D833A.pnach index 9cfa2293..51696b59 100644 --- a/patches/SLUS-20312_BB3D833A.pnach +++ b/patches/SLUS-20312_BB3D833A.pnach @@ -2,7 +2,7 @@ gametitle=Final Fantasy X (SLUS-20312) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,001a51cc,word,3c013f19 patch=1,EE,001a51d0,word,3421999a patch=1,EE,0011973c,word,3c014440 diff --git a/patches/SLUS-20313_888B3E8F.pnach b/patches/SLUS-20313_888B3E8F.pnach index 7e960f8c..61fbd61b 100644 --- a/patches/SLUS-20313_888B3E8F.pnach +++ b/patches/SLUS-20313_888B3E8F.pnach @@ -2,7 +2,7 @@ gametitle=Wave Rally (U)(SLUS-20313) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20314_12532F1C.pnach b/patches/SLUS-20314_12532F1C.pnach index 054a7817..73bded79 100644 --- a/patches/SLUS-20314_12532F1C.pnach +++ b/patches/SLUS-20314_12532F1C.pnach @@ -2,7 +2,7 @@ gametitle=TimeSplitters 2 (SLUS_20314) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,20598A08,word,3FC71C71 patch=1,EE,205995DC,word,3FC71C71 patch=1,EE,20599664,word,3FC71C71 diff --git a/patches/SLUS-20316_612ED854.pnach b/patches/SLUS-20316_612ED854.pnach index dc64a584..758074ed 100644 --- a/patches/SLUS-20316_612ED854.pnach +++ b/patches/SLUS-20316_612ED854.pnach @@ -2,7 +2,7 @@ gametitle=WWF SmackDown! - Just Bring It (NTSC) (SLUS-20316) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by GTAZAZO98 +author=GTAZAZO98 // 16:9 patch=1,EE,0010319c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLUS-20318_36E02E91.pnach b/patches/SLUS-20318_36E02E91.pnach index b42ab611..6bc13e2c 100644 --- a/patches/SLUS-20318_36E02E91.pnach +++ b/patches/SLUS-20318_36E02E91.pnach @@ -2,7 +2,7 @@ gametitle=Kings Field: The Ancient City SLUS_203.18 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by pelvicthrustman +author=pelvicthrustman patch=1,EE,0022d8e4,word,3c013f40 //00000000 patch=1,EE,0022d8e8,word,44810000 //00000000 diff --git a/patches/SLUS-20320_B03280F6.pnach b/patches/SLUS-20320_B03280F6.pnach index e38961a3..10ff914a 100644 --- a/patches/SLUS-20320_B03280F6.pnach +++ b/patches/SLUS-20320_B03280F6.pnach @@ -2,7 +2,7 @@ gametitle=ESPN International Winter Sports 2002 (U)(SLUS-20320) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20321_0FF28F8B.pnach b/patches/SLUS-20321_0FF28F8B.pnach index 10291fc1..e5bf4f0a 100644 --- a/patches/SLUS-20321_0FF28F8B.pnach +++ b/patches/SLUS-20321_0FF28F8B.pnach @@ -2,7 +2,7 @@ gametitle=ESPN Winter X-Games Snowboarding 2002 (U)(SLUS-20321) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20323_EA131B57.pnach b/patches/SLUS-20323_EA131B57.pnach index a94215dc..ea3e7415 100644 --- a/patches/SLUS-20323_EA131B57.pnach +++ b/patches/SLUS-20323_EA131B57.pnach @@ -2,7 +2,7 @@ gametitle=Virtua Fighter 4 (U)(SLUS-20323) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // Widescreen 16:9 diff --git a/patches/SLUS-20324_EC3E8E86.pnach b/patches/SLUS-20324_EC3E8E86.pnach index 2307946c..90880688 100644 --- a/patches/SLUS-20324_EC3E8E86.pnach +++ b/patches/SLUS-20324_EC3E8E86.pnach @@ -2,7 +2,7 @@ gametitle=Paris-Dakar Rally (U)(SLUS-20324) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,001ab57c,word,3c033f10 //3c033f40 Menu diff --git a/patches/SLUS-20328_833FE0A4.pnach b/patches/SLUS-20328_833FE0A4.pnach index b46b5671..9537397a 100644 --- a/patches/SLUS-20328_833FE0A4.pnach +++ b/patches/SLUS-20328_833FE0A4.pnach @@ -2,7 +2,7 @@ gametitle=Tekken 4 (SLUS-20328) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 //ee patch patch=1,EE,002917E4,word,24020001 diff --git a/patches/SLUS-20333_296E2C81.pnach b/patches/SLUS-20333_296E2C81.pnach index 9f72855f..4ff8f199 100644 --- a/patches/SLUS-20333_296E2C81.pnach +++ b/patches/SLUS-20333_296E2C81.pnach @@ -2,7 +2,7 @@ gametitle=Turok - Evolution (U)(SLUS-20333) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20334_EC474179.pnach b/patches/SLUS-20334_EC474179.pnach index aca85b0d..e720ae30 100644 --- a/patches/SLUS-20334_EC474179.pnach +++ b/patches/SLUS-20334_EC474179.pnach @@ -2,7 +2,7 @@ gametitle=Kelly Slater's Pro Surfer [NTSC-U] (SLUS_203.34) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Sergx12 +author=sergx12 //Gameplay 16:9 patch=1,EE,0029F198,word,3C01435F //3C014334 Zoom diff --git a/patches/SLUS-20335_A37C0344.pnach b/patches/SLUS-20335_A37C0344.pnach index 4f88fb4a..67a12431 100644 --- a/patches/SLUS-20335_A37C0344.pnach +++ b/patches/SLUS-20335_A37C0344.pnach @@ -1,4 +1,4 @@ -gametitle=Matt Hoffman's Pro BMX 2 SLUS_203.35 +gametitle=Mat Hoffman's Pro BMX 2 NTSC-U SLUS-20335 A37C0344 [Widescreen 16:9] gsaspectratio=16:9 @@ -7,4 +7,9 @@ patch=1,EE,001c5744,word,3c023fab patch=1,EE,0024d588,word,3c023c2e patch=1,EE,0036c108,word,3c033fc0 - +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,2061F29C,extended,00000002 +patch=1,EE,E0010001,extended,003FF570 +patch=1,EE,2061F29C,extended,00000001 \ No newline at end of file diff --git a/patches/SLUS-20336_015CB6F4.pnach b/patches/SLUS-20336_015CB6F4.pnach index 89a4e2ae..7e19d3d7 100644 --- a/patches/SLUS-20336_015CB6F4.pnach +++ b/patches/SLUS-20336_015CB6F4.pnach @@ -2,7 +2,7 @@ gametitle=Spider-Man - The Movie (U)(SLUS-20336) //[Widescreen 16:9] //gsaspectratio=16:9 -//comment=Widescreen Hack by Arapapa +//author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20341_6D7F918D.pnach b/patches/SLUS-20341_6D7F918D.pnach index a16d604f..cf76350f 100644 --- a/patches/SLUS-20341_6D7F918D.pnach +++ b/patches/SLUS-20341_6D7F918D.pnach @@ -2,7 +2,7 @@ gametitle=Woody Woodpecker (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20342_39BA5EF3.pnach b/patches/SLUS-20342_39BA5EF3.pnach index 66d8c725..ebc91f1e 100644 --- a/patches/SLUS-20342_39BA5EF3.pnach +++ b/patches/SLUS-20342_39BA5EF3.pnach @@ -2,7 +2,7 @@ gametitle=Top Angler - Real Bass Fishing (U)(SLUS-20342) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20344_A33748AA.pnach b/patches/SLUS-20344_A33748AA.pnach index 0d31d7db..83f56291 100644 --- a/patches/SLUS-20344_A33748AA.pnach +++ b/patches/SLUS-20344_A33748AA.pnach @@ -2,7 +2,7 @@ gametitle=Rez (SLUS_20344) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,2027E8C4,word,3F400000 diff --git a/patches/SLUS-20345_61737929.pnach b/patches/SLUS-20345_61737929.pnach index 039e2d36..dbf9a1d4 100644 --- a/patches/SLUS-20345_61737929.pnach +++ b/patches/SLUS-20345_61737929.pnach @@ -2,7 +2,7 @@ gametitle=Mike Tyson Heavyweight Boxing (U)(SLUS-20345) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20349_10B1F370.pnach b/patches/SLUS-20349_10B1F370.pnach index b12fc879..797e3e79 100644 --- a/patches/SLUS-20349_10B1F370.pnach +++ b/patches/SLUS-20349_10B1F370.pnach @@ -2,7 +2,7 @@ gametitle=Scooby-Doo! Night of 100 Frights (U)(SLUS-20349) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20355_F243A4C9.pnach b/patches/SLUS-20355_F243A4C9.pnach new file mode 100644 index 00000000..826eb53d --- /dev/null +++ b/patches/SLUS-20355_F243A4C9.pnach @@ -0,0 +1,7 @@ +gametitle=Tom & Jerry's War of the Wiskers (NTSC-U) + +[Widescreen 16:9] +gsaspectratio=16:9 +author=CRASHARKI +description=Run the game at 16:9 Widescreen Aspect Ratio from the start. +patch=1,EE,2021CF4C,word,00000001 //00000000 \ No newline at end of file diff --git a/patches/SLUS-20356_66B7B74E.pnach b/patches/SLUS-20356_66B7B74E.pnach index 95851f0a..30a74a03 100644 --- a/patches/SLUS-20356_66B7B74E.pnach +++ b/patches/SLUS-20356_66B7B74E.pnach @@ -1,8 +1,8 @@ -gametitle=Transworld Surf [NTSC-U] [SLUS-20356] +gametitle=TransWorld Surf NTSC-U SLUS-20356 66B7B74E [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -11,4 +11,11 @@ comment=Widescreen hack by Arapapa patch=1,EE,00183368,word,3c013fe2 //3c013faa patch=1,EE,0018336c,word,3421fc93 //34213d71 - +[60 FPS] +author=Gabominated +description=Might need EE Overclock (180%). +patch=1,EE,1027c4cc,extended,00000001 //00000002 +patch=1,EE,2027F358,extended,3c888889 //3d088889 +patch=1,EE,E0020001,extended,003A2224 +patch=1,EE,1027c4cc,extended,00000002 +patch=1,EE,2027F358,extended,3d088889 \ No newline at end of file diff --git a/patches/SLUS-20360_6D0E5F2D.pnach b/patches/SLUS-20360_6D0E5F2D.pnach index fb6ffdb8..1031984d 100644 --- a/patches/SLUS-20360_6D0E5F2D.pnach +++ b/patches/SLUS-20360_6D0E5F2D.pnach @@ -1,4 +1,4 @@ -gametitle=Blade 2 SLUS_203.60 +gametitle=Blade II NTSC-U SLUS-20360 6D0E5F2D [Widescreen 16:9] gsaspectratio=16:9 @@ -6,4 +6,10 @@ comment=Widescreen Hack patch=1,EE,0018B6B8,word,3C033F40 patch=1,EE,0017e7d4,word,3c033f40 - +[60 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,0018B2D8,word,1040000D //1440FFFD +patch=1,EE,001fd47c,word,3c033c88 //3c033d08 +patch=1,EE,001a8fe8,word,3c023c88 //3c023d08 +patch=1,EE,001BA110,word,24420002 //24420001 \ No newline at end of file diff --git a/patches/SLUS-20361_90CEC039.pnach b/patches/SLUS-20361_90CEC039.pnach index b2ab3ebd..97a81aac 100644 --- a/patches/SLUS-20361_90CEC039.pnach +++ b/patches/SLUS-20361_90CEC039.pnach @@ -2,7 +2,7 @@ gametitle=Rally Fusion - Race of Champions (U)(SLUS-20361) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20364_50C6B393.pnach b/patches/SLUS-20364_50C6B393.pnach index a5ba3fb0..d62782e7 100644 --- a/patches/SLUS-20364_50C6B393.pnach +++ b/patches/SLUS-20364_50C6B393.pnach @@ -2,7 +2,7 @@ gametitle=Tiger Woods PGA Tour 2002 (NTSC-U) (SLUS-20364) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by VIRGIN KLM +author=VIRGIN KLM //Widescreen hack 16:9 diff --git a/patches/SLUS-20368_E9348A11.pnach b/patches/SLUS-20368_E9348A11.pnach index 7b83c1b2..03529178 100644 --- a/patches/SLUS-20368_E9348A11.pnach +++ b/patches/SLUS-20368_E9348A11.pnach @@ -2,7 +2,7 @@ gametitle=Medal of Honor: Frontline (SLUS-20368) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,001455b8,word,0c052def patch=1,EE,001455d8,word,0c052def diff --git a/patches/SLUS-20369_36FEEE3A.pnach b/patches/SLUS-20369_36FEEE3A.pnach index f225a472..7106c870 100644 --- a/patches/SLUS-20369_36FEEE3A.pnach +++ b/patches/SLUS-20369_36FEEE3A.pnach @@ -2,7 +2,7 @@ gametitle=Knockout Kings 2002 (U)(SLUS-20369) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20371_3F0DC9DC.pnach b/patches/SLUS-20371_3F0DC9DC.pnach new file mode 100644 index 00000000..5a08c961 --- /dev/null +++ b/patches/SLUS-20371_3F0DC9DC.pnach @@ -0,0 +1,14 @@ +gametitle=The Thing SLUS-20371 3F0DC9DC + +[Widescreen 16:9] +gsaspectratio=16:9 +author=El_Patas +comment=Widescreen Hack +//Gameplay 16:9 +patch=1,EE,0016EC34,word,3C023FE3 //3C023FAA (Increases hor. axis) +patch=1,EE,0016EC38,word,34428E38 //3442AAAB + +[60 FPS] +author=asasega +description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,20968CA8,word,00000001 //00000002 diff --git a/patches/SLUS-20373_69CF7BDF.pnach b/patches/SLUS-20373_69CF7BDF.pnach index f4899f40..f6fc912c 100644 --- a/patches/SLUS-20373_69CF7BDF.pnach +++ b/patches/SLUS-20373_69CF7BDF.pnach @@ -1,16 +1,24 @@ -gametitle=Men in Black II - Alien Escape (U)(SLUS-20373) +gametitle=Men in Black II - Alien Escape NTSC-U SLUS-20373 69CF7BDF -[Widescreen 16:9] -gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +//[Widescreen 16:9] +//gsaspectratio=16:9 +//author=Arapapa //Widescreen 16:9 //X-Fov -patch=1,EE,003a9c2c,word,3c02bf40 //3c02bf80 +//patch=1,EE,003a9c2c,word,3c02bf40 //3c02bf80 //Background effect fix -patch=1,EE,001a6fac,word,3c033f2b //3c033f00 -patch=1,EE,001a7018,word,3c033f2b //3c033f00 - +//patch=1,EE,001a6fac,word,3c033f2b //3c033f00 +//patch=1,EE,001a7018,word,3c033f2b //3c033f00 +//causes glitches in textures +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,003CB5C0,word,24420002 //24420001 +patch=1,EE,008E1F34,word,3C898889 //3d088889 +patch=1,EE,00288cc8,word,3c023f40 //3c023f80 +patch=1,EE,00288CB0,word,3c02BF40 //3c023f80 +patch=1,EE,002F77A4,word,3C023F40 //3C023F80 \ No newline at end of file diff --git a/patches/SLUS-20374_5B9ACF79.pnach b/patches/SLUS-20374_5B9ACF79.pnach index b4997c6f..8bcfbada 100644 --- a/patches/SLUS-20374_5B9ACF79.pnach +++ b/patches/SLUS-20374_5B9ACF79.pnach @@ -2,7 +2,7 @@ gametitle=Hitman 2 - Silent Assassin (NTSC-U) (SLUS-20374) (v2.01) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00313f7c,word,3c013f10 // 3c013f40 ver fov diff --git a/patches/SLUS-20376_D2E4255A.pnach b/patches/SLUS-20376_D2E4255A.pnach index 17e376d4..4b36acb2 100644 --- a/patches/SLUS-20376_D2E4255A.pnach +++ b/patches/SLUS-20376_D2E4255A.pnach @@ -2,7 +2,7 @@ gametitle=Mad Maestro! (U)(SLUS-20376) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20377_46FFB836.pnach b/patches/SLUS-20377_46FFB836.pnach index 9761f694..6e97c022 100644 --- a/patches/SLUS-20377_46FFB836.pnach +++ b/patches/SLUS-20377_46FFB836.pnach @@ -2,7 +2,7 @@ gametitle=Metropolismania (U)(SLUS-20377) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20379_29BA2F04.pnach b/patches/SLUS-20379_29BA2F04.pnach index 7838af5d..016364c1 100644 --- a/patches/SLUS-20379_29BA2F04.pnach +++ b/patches/SLUS-20379_29BA2F04.pnach @@ -1,6 +1,15 @@ gametitle=Dark Angel - James Cameron's (NSTC-U) SLUS-20379 29BA2F04 +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,0024EAA4,word,3C013F30 +patch=1,EE,00349120,word,3C013F1A +patch=1,EE,0027EE78,word,3C013FE3 +patch=1,EE,00289188,word,3C013F22 + [60 FPS] author=PeterDelta -comment=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,0025A404,word,00000000 //1040FFFA \ No newline at end of file +description=Might need EE Overclock (130%). +patch=1,EE,0027F154,word,10400012 \ No newline at end of file diff --git a/patches/SLUS-20380_A99B8FE7.pnach b/patches/SLUS-20380_A99B8FE7.pnach index fd258f3e..cabe367a 100644 --- a/patches/SLUS-20380_A99B8FE7.pnach +++ b/patches/SLUS-20380_A99B8FE7.pnach @@ -1,8 +1,8 @@ -gametitle=Jurassic Park - Operation Genesis (U)(SLUS20380) +gametitle=Jurassic Park - Operation Genesis NTSC-U SLUS-20380 A99B8FE7 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -14,4 +14,7 @@ patch=1,EE,0055b2a0,word,3ff3aaab //3eaaaaab //c0ec6e3f 0ad7a33f patch=1,EE,0055d07c,word,3F9F4880 //3f6eecc0 - +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00565D0C,word,00000001 \ No newline at end of file diff --git a/patches/SLUS-20381_0CD3C2F6.pnach b/patches/SLUS-20381_0CD3C2F6.pnach index 4605c62b..d2e4da1b 100644 --- a/patches/SLUS-20381_0CD3C2F6.pnach +++ b/patches/SLUS-20381_0CD3C2F6.pnach @@ -1,8 +1,8 @@ -gametitle=MX SuperFly (U)(SLUS-20381) +gametitle=MX SuperFly NTSC-U SLUS-20381 0CD3C2F6 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -16,4 +16,8 @@ patch=1,EE,000c0008,word,4481f000 patch=1,EE,000c000c,word,461e4202 patch=1,EE,000c0010,word,080aa1b1 - +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00179DDC,word,AC108440 //AC208440 +patch=1,EE,003EA4A0,word,3c888889 //3d088889 \ No newline at end of file diff --git a/patches/SLUS-20387_5F3DD929.pnach b/patches/SLUS-20387_5F3DD929.pnach index 03ea53f9..836ec62c 100644 --- a/patches/SLUS-20387_5F3DD929.pnach +++ b/patches/SLUS-20387_5F3DD929.pnach @@ -2,7 +2,7 @@ gametitle=Suikoden III (SLUS-20387) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,016c21c0,word,460d6502 patch=1,EE,016c21bc,word,460d6d42 diff --git a/patches/SLUS-20388_339A0B8C.pnach b/patches/SLUS-20388_339A0B8C.pnach index 7b759b31..8a8a3244 100644 --- a/patches/SLUS-20388_339A0B8C.pnach +++ b/patches/SLUS-20388_339A0B8C.pnach @@ -1,34 +1,39 @@ +gametitle=Fatal Frame * NTSC-U * SLUS-20388 * 339A0B8C +// Project Zero + [Widescreen 16:9] gsaspectratio=16:9 -comment=Fatal Frame (SLUS-20388) -//gameplay +// gameplay patch=1,EE,001885c4,word,3c013f40 -//cutscenes (port of pgert's value for pal version) +// cutscenes (port of pgert's value for PAL version) patch=1,EE,00183f4c,word,3c013f40 -//FMV's fix +// FMV fix patch=1,EE,00180b80,word,24027100 patch=1,EE,00180b90,word,24027100 patch=1,EE,00180b98,word,24091e00 -//Lens Flare's fix +// Lens Flare's fix patch=1,EE,00136FF4,word,3C013F2B patch=1,EE,001359B0,word,3C014270 patch=1,EE,00135A94,word,3C0140F0 patch=1,EE,00135A5C,word,3C014110 patch=1,EE,00135A18,word,3C014190 -//Remove effects -//patch=1,EE,2034A8FC,word,00000000 //blurry bloom -//patch=1,EE,2034AD7C,word,00000000 //dark filter -//patch=1,EE,2034AC0C,word,00000000 //post process and noise +// ========== + +[Disable Blurry Bloom effect] +patch=1,EE,2034A8FC,word,00000000 +[Disable Dark Filter effect] +patch=1,EE,2034AD7C,word,00000000 + +[Disable Post-Process and Noise effect] +patch=1,EE,2034AC0C,word,00000000 [No-Interlacing] -description=Attempts to disable interlaced offset rendering. gsinterlacemode=1 +description=Attempts to disable interlaced offset rendering. patch=1,EE,2023188C,word,00000000 - - diff --git a/patches/SLUS-20390_735DA2F2.pnach b/patches/SLUS-20390_735DA2F2.pnach index 4e1bb559..6a7462a4 100644 --- a/patches/SLUS-20390_735DA2F2.pnach +++ b/patches/SLUS-20390_735DA2F2.pnach @@ -2,7 +2,7 @@ gametitle=Risk - Global Domination (U)(SLUS-20390) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20391_DFA59850.pnach b/patches/SLUS-20391_DFA59850.pnach index d6cdb920..30fac367 100644 --- a/patches/SLUS-20391_DFA59850.pnach +++ b/patches/SLUS-20391_DFA59850.pnach @@ -2,7 +2,7 @@ gametitle=The Terminator - Dawn of Fate (U)(SLUS-20391) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20392_298ABB7D.pnach b/patches/SLUS-20392_298ABB7D.pnach index 4dcec62f..e6912338 100644 --- a/patches/SLUS-20392_298ABB7D.pnach +++ b/patches/SLUS-20392_298ABB7D.pnach @@ -2,7 +2,7 @@ gametitle=Antz Extreme Racing (U)(SLUS-20392) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLUS-20393_5848889C.pnach b/patches/SLUS-20393_5848889C.pnach index 97ba90ff..144fb896 100644 --- a/patches/SLUS-20393_5848889C.pnach +++ b/patches/SLUS-20393_5848889C.pnach @@ -2,7 +2,7 @@ gametitle=Onimusha 2 [NTSC-U] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen correction by nemesis2000 (pnach by Little Giant) +author=nemesis2000 (pnach by Little Giant) //gameplay patch=1,EE,2010285c,word,3c013f40 patch=1,EE,20102860,word,44810000 diff --git a/patches/SLUS-20395_A05A58EB.pnach b/patches/SLUS-20395_A05A58EB.pnach index 05340aa0..038ce137 100644 --- a/patches/SLUS-20395_A05A58EB.pnach +++ b/patches/SLUS-20395_A05A58EB.pnach @@ -2,7 +2,7 @@ gametitle=Global Touring Challenge - Africa (U)(SLUS-20395) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-U by Arapapa) +author=ElHecht (NTSC-U by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLUS-20397_767E383D.pnach b/patches/SLUS-20397_767E383D.pnach index 7a57c428..711b5291 100644 --- a/patches/SLUS-20397_767E383D.pnach +++ b/patches/SLUS-20397_767E383D.pnach @@ -1,16 +1,14 @@ gametitle=Tenchu - Wrath of Heaven SLUS_203.97 -[Widescreen 16:9] -gsaspectratio=16:9 -comment=Widescreen Hack -patch=1,EE,2163aea4,extended,3F400000 //(gameplay) -patch=1,EE,00155168,word,3C024455 //3C024422 (render fix) -patch=1,EE,001553D0,word,3C024455 //3C024422 (render fix) - +//[Widescreen 16:9] +//gsaspectratio=16:9 +//comment=Widescreen Hack +//Disabled due to breaking blur and fog rendering in game. +//patch=1,EE,2163aea4,extended,3F400000 //(gameplay) +//patch=1,EE,00155168,word,3C024455 //3C024422 (render fix) +//patch=1,EE,001553D0,word,3C024455 //3C024422 (render fix) [No-Interlacing] description=Attempts to disable interlaced offset rendering. gsinterlacemode=1 -patch=1,EE,202467E8,word,24027900 - - +patch=1,EE,202467E8,word,24027900 \ No newline at end of file diff --git a/patches/SLUS-20398_4C168567.pnach b/patches/SLUS-20398_4C168567.pnach index aab852b7..b147184a 100644 --- a/patches/SLUS-20398_4C168567.pnach +++ b/patches/SLUS-20398_4C168567.pnach @@ -2,7 +2,7 @@ gametitle=Road Trip (U)(SLUS-20398) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20400_B82A0B91.pnach b/patches/SLUS-20400_B82A0B91.pnach index bd9c60fa..dd75a805 100644 --- a/patches/SLUS-20400_B82A0B91.pnach +++ b/patches/SLUS-20400_B82A0B91.pnach @@ -2,7 +2,7 @@ gametitle=Mission Impossible - Operation Surma (U)(SLUS-20400) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by Arapapa +author=Arapapa // 16:9 (0000803f 00000000 00000000 00000000 00000080) patch=1,EE,20657E60,word,3F400000 // 3F800000 diff --git a/patches/SLUS-20407_06157251.pnach b/patches/SLUS-20407_06157251.pnach index 1b498d57..777d59bd 100644 --- a/patches/SLUS-20407_06157251.pnach +++ b/patches/SLUS-20407_06157251.pnach @@ -2,7 +2,7 @@ gametitle=Way of the Samurai (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00100024,word,3c1b3f40 // 00000000 hor fov diff --git a/patches/SLUS-20408_394F402E.pnach b/patches/SLUS-20408_394F402E.pnach index bedce14b..6d7c17a9 100644 --- a/patches/SLUS-20408_394F402E.pnach +++ b/patches/SLUS-20408_394F402E.pnach @@ -2,7 +2,7 @@ gametitle=Pitfall - The Lost Expedition (U)(SLUS-20408) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20412_E7273BFA.pnach b/patches/SLUS-20412_E7273BFA.pnach index fab1ba51..6bf6d890 100644 --- a/patches/SLUS-20412_E7273BFA.pnach +++ b/patches/SLUS-20412_E7273BFA.pnach @@ -2,7 +2,7 @@ gametitle=Hot Wheels - Velocity X (U)(SLUS-20412) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20413_60AD8FA7.pnach b/patches/SLUS-20413_60AD8FA7.pnach index 926d06b3..a1c25e35 100644 --- a/patches/SLUS-20413_60AD8FA7.pnach +++ b/patches/SLUS-20413_60AD8FA7.pnach @@ -2,7 +2,7 @@ gametitle=Shadow Man - 2econd Coming (U)(SLUS-20413) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20415_2999BCF9.pnach b/patches/SLUS-20415_2999BCF9.pnach index b09b7211..6e1b7a0f 100644 --- a/patches/SLUS-20415_2999BCF9.pnach +++ b/patches/SLUS-20415_2999BCF9.pnach @@ -2,7 +2,7 @@ gametitle=BMX XXX (SLUS-20415) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by BloodRaynare +author=BloodRaynare // 16:9 patch=1,EE,00101074,word,3c013f40 // 3c013f80 hor fov diff --git a/patches/SLUS-20422_3EA649FB.pnach b/patches/SLUS-20422_3EA649FB.pnach index f8c9d42f..a875cc34 100644 --- a/patches/SLUS-20422_3EA649FB.pnach +++ b/patches/SLUS-20422_3EA649FB.pnach @@ -2,7 +2,7 @@ gametitle=Hulk (U)(SLUS-20422) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20423_059F35E8.pnach b/patches/SLUS-20423_059F35E8.pnach index f92fc638..60f20c22 100644 --- a/patches/SLUS-20423_059F35E8.pnach +++ b/patches/SLUS-20423_059F35E8.pnach @@ -2,7 +2,7 @@ gametitle=Mortal Kombat: Deadly Alliance (SLUS-20423) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,001809f8,word,3c023fe3 patch=1,EE,001809fc,word,34428e38 patch=1,EE,001a8114,word,3c023f40 diff --git a/patches/SLUS-20424_39A8356E.pnach b/patches/SLUS-20424_39A8356E.pnach index a3bfdc62..41c17447 100644 --- a/patches/SLUS-20424_39A8356E.pnach +++ b/patches/SLUS-20424_39A8356E.pnach @@ -2,7 +2,7 @@ gametitle=The Scorpion King - Rise of the Akkadian (U)(SLUS-20424) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLUS-20425_5D2C6E36.pnach b/patches/SLUS-20425_5D2C6E36.pnach index b2be42bf..3293b70e 100644 --- a/patches/SLUS-20425_5D2C6E36.pnach +++ b/patches/SLUS-20425_5D2C6E36.pnach @@ -1,13 +1,11 @@ -gametitle=SpongeBob Squarepants - Revenge of the Flying Dutchman (U)(SLUS-20425) +//gametitle=SpongeBob Squarepants - Revenge of the Flying Dutchman (U)(SLUS-20425) -[Widescreen 16:9] -gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +//[Widescreen 16:9] +//gsaspectratio=16:9 +//author=Arapapa. Disabled as it causes misaligned effects. //Widescreen hack 16:9 //X-Fov //803f023c 1000bfff 00188244 -patch=1,EE,00301a24,word,3c023f40 //3c023f80 - - +//patch=1,EE,00301a24,word,3c023f40 //3c023f80 \ No newline at end of file diff --git a/patches/SLUS-20431_DDE57BDF.pnach b/patches/SLUS-20431_DDE57BDF.pnach index 1259d9dd..c46ceac3 100644 --- a/patches/SLUS-20431_DDE57BDF.pnach +++ b/patches/SLUS-20431_DDE57BDF.pnach @@ -2,7 +2,7 @@ gametitle=Wreckless - The Yakuza Missions (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00146dc4,word,3c013f40 //3c013f80 diff --git a/patches/SLUS-20433_6E762B3C.pnach b/patches/SLUS-20433_6E762B3C.pnach index 436ab0c4..203d113d 100644 --- a/patches/SLUS-20433_6E762B3C.pnach +++ b/patches/SLUS-20433_6E762B3C.pnach @@ -2,7 +2,7 @@ gametitle=SWAT - Global Strike Team (U)(SLUS-20433) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20438_8EA2C9FB.pnach b/patches/SLUS-20438_8EA2C9FB.pnach index fcc2b3ef..1cd42526 100644 --- a/patches/SLUS-20438_8EA2C9FB.pnach +++ b/patches/SLUS-20438_8EA2C9FB.pnach @@ -2,7 +2,7 @@ gametitle=NHL Hitz 2003 (SLUS_20438) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,2071FB08,word,3F248B44 patch=1,EE,2071FC18,word,3F2AE148 diff --git a/patches/SLUS-20442_8E7FF6F8.pnach b/patches/SLUS-20442_8E7FF6F8.pnach index 6987f7ee..3f61ea4f 100644 --- a/patches/SLUS-20442_8E7FF6F8.pnach +++ b/patches/SLUS-20442_8E7FF6F8.pnach @@ -2,7 +2,7 @@ gametitle=Red Faction II (NTSC-U) (SLUS-20442) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0018be60,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLUS-20446_954C0106.pnach b/patches/SLUS-20446_954C0106.pnach index 99aed826..33f1c0dc 100644 --- a/patches/SLUS-20446_954C0106.pnach +++ b/patches/SLUS-20446_954C0106.pnach @@ -2,7 +2,7 @@ gametitle=Agassi Tennis Generation (U)(SLUS-20446) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLUS-20454_2A968F81.pnach b/patches/SLUS-20454_2A968F81.pnach index ac7801d7..bc71f754 100644 --- a/patches/SLUS-20454_2A968F81.pnach +++ b/patches/SLUS-20454_2A968F81.pnach @@ -2,7 +2,7 @@ gametitle=Enter the Matrix (SLUS-20454) Ver. 2.0 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //built-in widescreen patch=1,EE,001ccdc8,word,a2740bcc diff --git a/patches/SLUS-20455_8FF059A1.pnach b/patches/SLUS-20455_8FF059A1.pnach index 55c562fa..9716a920 100644 --- a/patches/SLUS-20455_8FF059A1.pnach +++ b/patches/SLUS-20455_8FF059A1.pnach @@ -2,7 +2,7 @@ gametitle=F1 2002 (U)(SLUS-20455) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20458_FF60D3ED.pnach b/patches/SLUS-20458_FF60D3ED.pnach index 8b59ae84..cc2c5805 100644 --- a/patches/SLUS-20458_FF60D3ED.pnach +++ b/patches/SLUS-20458_FF60D3ED.pnach @@ -2,7 +2,7 @@ gametitle=Dr. Muto (U)(SLUS-20458) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0010045c,word,3c013fcc // 3c013f91 hor fov gameplay diff --git a/patches/SLUS-20459_BFCC3E7E.pnach b/patches/SLUS-20459_BFCC3E7E.pnach index 7cba21b9..f6476800 100644 --- a/patches/SLUS-20459_BFCC3E7E.pnach +++ b/patches/SLUS-20459_BFCC3E7E.pnach @@ -2,7 +2,7 @@ gametitle=Shinobi (SLUS-20459) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,00234a50,word,3c023f40 diff --git a/patches/SLUS-20462_4C2D1E6D.pnach b/patches/SLUS-20462_4C2D1E6D.pnach index dc6a3b96..efc29dce 100644 --- a/patches/SLUS-20462_4C2D1E6D.pnach +++ b/patches/SLUS-20462_4C2D1E6D.pnach @@ -2,7 +2,7 @@ gametitle=WipeOut Fusion (SLUS_20462) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 //built-in ws switches patch=1,EE,2028E990,word,00000001 //shows ws "on" under options diff --git a/patches/SLUS-20463_57D3A71B.pnach b/patches/SLUS-20463_57D3A71B.pnach index 0677b756..4ef2402d 100644 --- a/patches/SLUS-20463_57D3A71B.pnach +++ b/patches/SLUS-20463_57D3A71B.pnach @@ -2,7 +2,7 @@ gametitle=Dropship - United Peace Force (U)(SLUS-20463) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20464_09745632.pnach b/patches/SLUS-20464_09745632.pnach index 5ae7d677..ccd06e4f 100644 --- a/patches/SLUS-20464_09745632.pnach +++ b/patches/SLUS-20464_09745632.pnach @@ -2,7 +2,7 @@ gametitle=Fugitive Hunter - War on Terror (U)(SLUS-20464) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20465_7CDC2C16.pnach b/patches/SLUS-20465_7CDC2C16.pnach index 7abd3f73..30bd858e 100644 --- a/patches/SLUS-20465_7CDC2C16.pnach +++ b/patches/SLUS-20465_7CDC2C16.pnach @@ -2,7 +2,7 @@ gametitle=Alter Echo (U)(SLUS-20465) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Devina and Arapapa +author=Devina and Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20468_470FDAAD.pnach b/patches/SLUS-20468_470FDAAD.pnach index b6ae79bf..b3ffec22 100644 --- a/patches/SLUS-20468_470FDAAD.pnach +++ b/patches/SLUS-20468_470FDAAD.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Tactics (U)(SLUS-20468) [Widescreen 16:9] gsaspectratio=16:9 -comment=widescreen 16:9 hack by 99skull (NTSC-U by Arapapa) +author=99skull (NTSC-U by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLUS-20469_6D1276AB.pnach b/patches/SLUS-20469_6D1276AB.pnach index 47d82cbf..05584921 100644 --- a/patches/SLUS-20469_6D1276AB.pnach +++ b/patches/SLUS-20469_6D1276AB.pnach @@ -2,7 +2,7 @@ gametitle=Xenosaga Episode I: Der Wille zur Macht (SLUS-20469) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,204D88CC,extended,4182e8ba // original value 41445d17 diff --git a/patches/SLUS-20471_3E2A42FA.pnach b/patches/SLUS-20471_3E2A42FA.pnach index c84da3ff..cecaa59e 100644 --- a/patches/SLUS-20471_3E2A42FA.pnach +++ b/patches/SLUS-20471_3E2A42FA.pnach @@ -2,7 +2,7 @@ gametitle=Rygar - The Legendary Adventure (SLUS_20471) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,203E559C,word,3F19999A patch=1,EE,203F57CC,word,43D55555 diff --git a/patches/SLUS-20474_49A00204.pnach b/patches/SLUS-20474_49A00204.pnach index f925190b..716c063e 100644 --- a/patches/SLUS-20474_49A00204.pnach +++ b/patches/SLUS-20474_49A00204.pnach @@ -2,7 +2,7 @@ gametitle=NFL Blitz 20-03 (U)(SLUS-20474) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20478_8938E1F5.pnach b/patches/SLUS-20478_8938E1F5.pnach index 45b3decd..30386b52 100644 --- a/patches/SLUS-20478_8938E1F5.pnach +++ b/patches/SLUS-20478_8938E1F5.pnach @@ -2,7 +2,7 @@ gametitle=Disney's PK - Out of the Shadows (U)(SLUS-20478) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20483_B0AE1898.pnach b/patches/SLUS-20483_B0AE1898.pnach index d7936bbb..f57737cd 100644 --- a/patches/SLUS-20483_B0AE1898.pnach +++ b/patches/SLUS-20483_B0AE1898.pnach @@ -2,7 +2,7 @@ gametitle=WWE Smackdown! Shut Your Mouth (U)(SLUS-20483) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-U by Arapapa) +author=ElHecht (NTSC-U by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLUS-20484_08995DEE.pnach b/patches/SLUS-20484_08995DEE.pnach index 350eaa56..470e4e98 100644 --- a/patches/SLUS-20484_08995DEE.pnach +++ b/patches/SLUS-20484_08995DEE.pnach @@ -2,7 +2,7 @@ gametitle=Devil May Cry 2 (Disc 1) (Dante Disc) (SLUS-20484) / Devil May Cry 2 ( [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0017e08c,word,3c013f1a //hor aspect value patch=1,EE,0017e094,word,44810000 diff --git a/patches/SLUS-20485_3FBF0EA6.pnach b/patches/SLUS-20485_3FBF0EA6.pnach index fa097ed3..d5f1bca8 100644 --- a/patches/SLUS-20485_3FBF0EA6.pnach +++ b/patches/SLUS-20485_3FBF0EA6.pnach @@ -1,7 +1,7 @@ [Widescreen 16:9] gsaspectratio=16:9 comment=Dino Stalker (SLUS-20485) -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,202AF944,extended,3f199999 patch=1,EE,202AF984,extended,3f199999 patch=1,EE,202AF9c4,extended,3f199999 diff --git a/patches/SLUS-20486_4D228733.pnach b/patches/SLUS-20486_4D228733.pnach index d5640acb..4a914e10 100644 --- a/patches/SLUS-20486_4D228733.pnach +++ b/patches/SLUS-20486_4D228733.pnach @@ -2,7 +2,7 @@ gametitle=Marvel vs. Capcom 2: New Age of Heroes (SLUS204.86;1) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by nemesis2000 CRC by Acem (pnach by nemesis2000) +author=nemesis2000 CRC by Acem (pnach by nemesis2000) patch=1,EE,00414284,word,3C023FAA patch=1,EE,003DDB10,word,AC83003C diff --git a/patches/SLUS-20486_69B2071C.pnach b/patches/SLUS-20486_69B2071C.pnach index 961562a4..a06c7f2c 100644 --- a/patches/SLUS-20486_69B2071C.pnach +++ b/patches/SLUS-20486_69B2071C.pnach @@ -2,7 +2,7 @@ gametitle=Marvel vs. Capcom 2: New Age of Heroes (SLUS-20486) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00414284,word,3C023FAA patch=1,EE,003DDB10,word,AC83003C diff --git a/patches/SLUS-20487_3EDA6DE7.pnach b/patches/SLUS-20487_3EDA6DE7.pnach index 557d7a91..9ede01ea 100644 --- a/patches/SLUS-20487_3EDA6DE7.pnach +++ b/patches/SLUS-20487_3EDA6DE7.pnach @@ -2,7 +2,7 @@ gametitle=Mega Man X7 (SLUS-20487) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0014d3e4,word,3c0244a8 diff --git a/patches/SLUS-20489_43E749A2.pnach b/patches/SLUS-20489_43E749A2.pnach index 0ec08109..4d38cbec 100644 --- a/patches/SLUS-20489_43E749A2.pnach +++ b/patches/SLUS-20489_43E749A2.pnach @@ -2,7 +2,7 @@ gametitle=Whirl Tour (U)(SLUS-20489) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20491_E349C1D4.pnach b/patches/SLUS-20491_E349C1D4.pnach index 98882cb3..9b07ad6a 100644 --- a/patches/SLUS-20491_E349C1D4.pnach +++ b/patches/SLUS-20491_E349C1D4.pnach @@ -9,7 +9,7 @@ gsaspectratio=16:9 // ========== comment= RTX - Red Rock * SLES-51069 * PAL-M5 * E349C1D4 -comment=- Widescreen hack by pgert. +author=pgert comment=- Might not work with all BIOS types & configurations. patch=1,EE,205F1840,extended,3F400000 // 3F800000 - X-axis - 16:9 // patch=1,EE,205F1840,extended,3F555555 // - 16:10 diff --git a/patches/SLUS-20494_946C6967.pnach b/patches/SLUS-20494_946C6967.pnach new file mode 100644 index 00000000..df880b01 --- /dev/null +++ b/patches/SLUS-20494_946C6967.pnach @@ -0,0 +1,6 @@ +gametitle=Freestyle Metal X NTSC-U SLUS-20494 946C6967 + +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,003E6554,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLUS-20495_19DE198E.pnach b/patches/SLUS-20495_19DE198E.pnach index 7e436d55..5521cefa 100644 --- a/patches/SLUS-20495_19DE198E.pnach +++ b/patches/SLUS-20495_19DE198E.pnach @@ -2,7 +2,7 @@ gametitle=Battle Engine Aquila (U)(SLUS-20495) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20499_588CC41B.pnach b/patches/SLUS-20499_588CC41B.pnach index a4d91878..9e3751d9 100644 --- a/patches/SLUS-20499_588CC41B.pnach +++ b/patches/SLUS-20499_588CC41B.pnach @@ -2,7 +2,7 @@ gametitle=Breath of Fire: Dragon Quarter (SLUS-20499) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0012dd1c,word,3c024307 //hor val patch=1,EE,0012de68,word,3c034074 //render fix diff --git a/patches/SLUS-20506_D2CA77B8.pnach b/patches/SLUS-20506_D2CA77B8.pnach index 611051de..3db3bf35 100644 --- a/patches/SLUS-20506_D2CA77B8.pnach +++ b/patches/SLUS-20506_D2CA77B8.pnach @@ -2,7 +2,7 @@ gametitle=Black & Bruised (U)(SLUS-20506) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20507_6E5692B9.pnach b/patches/SLUS-20507_6E5692B9.pnach index 8fec14e6..2e7e5402 100644 --- a/patches/SLUS-20507_6E5692B9.pnach +++ b/patches/SLUS-20507_6E5692B9.pnach @@ -2,7 +2,7 @@ gametitle=Legends of Wrestling II (U)(SLUS-20507) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20509_F9DCF583.pnach b/patches/SLUS-20509_F9DCF583.pnach index d136137f..f85d5f04 100644 --- a/patches/SLUS-20509_F9DCF583.pnach +++ b/patches/SLUS-20509_F9DCF583.pnach @@ -2,7 +2,7 @@ gametitle=Sega Soccer Slam (U)(SLUS-20509) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20513_4507B732.pnach b/patches/SLUS-20513_4507B732.pnach index dc09e899..fd903c17 100644 --- a/patches/SLUS-20513_4507B732.pnach +++ b/patches/SLUS-20513_4507B732.pnach @@ -2,7 +2,7 @@ gametitle=NBA Starting Five (U)(SLUS-20513) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20514_5CA5427D.pnach b/patches/SLUS-20514_5CA5427D.pnach index e7acab8e..2dfa4323 100644 --- a/patches/SLUS-20514_5CA5427D.pnach +++ b/patches/SLUS-20514_5CA5427D.pnach @@ -2,7 +2,7 @@ gametitle=Silent Scope 3 (U)(SLUS-20514) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20520_CF56CD9C.pnach b/patches/SLUS-20520_CF56CD9C.pnach index c4138500..f95a83d7 100644 --- a/patches/SLUS-20520_CF56CD9C.pnach +++ b/patches/SLUS-20520_CF56CD9C.pnach @@ -2,7 +2,7 @@ gametitle=The Lord of the Rings - The Fellowship of the Ring (NTSC-U) (SLUS-2052 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001473e0,word,08100078 // e6000228 diff --git a/patches/SLUS-20523_71BE05FA.pnach b/patches/SLUS-20523_71BE05FA.pnach index 417473f0..ddc46f91 100644 --- a/patches/SLUS-20523_71BE05FA.pnach +++ b/patches/SLUS-20523_71BE05FA.pnach @@ -2,7 +2,7 @@ gametitle=Crouching Tiger Hidden Dragon (U)(SLUS-20523) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20527_660ECEDE.pnach b/patches/SLUS-20527_660ECEDE.pnach index 7d1e34f1..0ea19f83 100644 --- a/patches/SLUS-20527_660ECEDE.pnach +++ b/patches/SLUS-20527_660ECEDE.pnach @@ -2,7 +2,7 @@ gametitle=Butt-Ugly Martians - Zoom or Doom! (U)(SLUS-20527) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20528_66026B1B.pnach b/patches/SLUS-20528_66026B1B.pnach index 5924caf6..8f3ec253 100644 --- a/patches/SLUS-20528_66026B1B.pnach +++ b/patches/SLUS-20528_66026B1B.pnach @@ -2,7 +2,7 @@ gametitle=Zapper (U)(SLUS-20528) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20531_6A6173DA.pnach b/patches/SLUS-20531_6A6173DA.pnach index daccc68d..ce76aa82 100644 --- a/patches/SLUS-20531_6A6173DA.pnach +++ b/patches/SLUS-20531_6A6173DA.pnach @@ -2,7 +2,7 @@ gametitle=NHL 2003 (U)(SLUS-20531) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20533_DDAC3815.pnach b/patches/SLUS-20533_DDAC3815.pnach index 1a559e30..36f3d93b 100644 --- a/patches/SLUS-20533_DDAC3815.pnach +++ b/patches/SLUS-20533_DDAC3815.pnach @@ -2,7 +2,7 @@ gametitle=Shox (U)(SLUS-20533) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20534_05D4EEB3.pnach b/patches/SLUS-20534_05D4EEB3.pnach index 6fe0704e..9db8b7d8 100644 --- a/patches/SLUS-20534_05D4EEB3.pnach +++ b/patches/SLUS-20534_05D4EEB3.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's Big Game Hunter (U)(SLUS-20534) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20536_0BBDBE84.pnach b/patches/SLUS-20536_0BBDBE84.pnach index f773c54a..b368815a 100644 --- a/patches/SLUS-20536_0BBDBE84.pnach +++ b/patches/SLUS-20536_0BBDBE84.pnach @@ -2,7 +2,7 @@ gametitle=NBA Live 2003 (U)(SLUS-20536). [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLUS-20539_6E9D2844.pnach b/patches/SLUS-20539_6E9D2844.pnach index 5d9b1458..6311d9fb 100644 --- a/patches/SLUS-20539_6E9D2844.pnach +++ b/patches/SLUS-20539_6E9D2844.pnach @@ -2,7 +2,7 @@ gametitle=Fallout - Brotherhood of Steel (U)(SLUS-20539) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20540_536D9565.pnach b/patches/SLUS-20540_536D9565.pnach index 4dcf54d0..e65fc0e8 100644 --- a/patches/SLUS-20540_536D9565.pnach +++ b/patches/SLUS-20540_536D9565.pnach @@ -2,7 +2,7 @@ gametitle=Evolution Skateboarding (U)(SLUS-20540) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20543_696F7462.pnach b/patches/SLUS-20543_696F7462.pnach index 8dab2466..cc1e6372 100644 --- a/patches/SLUS-20543_696F7462.pnach +++ b/patches/SLUS-20543_696F7462.pnach @@ -2,7 +2,7 @@ gametitle=The Document of Metal Gear Solid 2 (U)(SLUS-20543) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Esppiral (NTSC-U by Arapapa) +author=Esppiral (NTSC-U by Arapapa) //3D Model view fix //803f013c00b08144380047b4 diff --git a/patches/SLUS-20548_421EB501.pnach b/patches/SLUS-20548_421EB501.pnach index 66cc2820..8ff9d4b5 100644 --- a/patches/SLUS-20548_421EB501.pnach +++ b/patches/SLUS-20548_421EB501.pnach @@ -2,7 +2,7 @@ gametitle=Sub Rebellion (U)(SLUS-20548) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20552_20B19E49.pnach b/patches/SLUS-20552_20B19E49.pnach index 8ec5e18f..d989bc63 100644 --- a/patches/SLUS-20552_20B19E49.pnach +++ b/patches/SLUS-20552_20B19E49.pnach @@ -2,7 +2,7 @@ gametitle=Grand Theft Auto: Vice City (SLUS-20552) / Ver 1.40 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //widescreen fix patch=1,EE,001325BC,word,3C013F9D @@ -15,4 +15,7 @@ patch=1,EE,002434EC,word,0C04C96F // 0c04c970 patch=1,EE,0026FE1C,word,0C04C972 // 0c04c970 patch=1,EE,002703F4,word,0C04C972 // 0c04c970 - +[60 FPS] +author=asasega +comment=Patches the game to run at 60 FPS (Might need 180% EE Overclock to be stable). +patch=1,EE,20272204,extended,28420001 diff --git a/patches/SLUS-20552_248E6126.pnach b/patches/SLUS-20552_248E6126.pnach index dd43d707..133bb1ed 100644 --- a/patches/SLUS-20552_248E6126.pnach +++ b/patches/SLUS-20552_248E6126.pnach @@ -14,4 +14,7 @@ patch=1,EE,002485dc,word,0C04C92f //0c04c930 patch=1,EE,0027579c,word,0C04C932 //0c04c930 patch=1,EE,00275d6c,word,0C04C932 //0c04c930 - +[60 FPS] +author=Snake356 +comment=Patches the game to run at 60 FPS (Might need 180% EE Overclock to be stable). +patch=1,EE,20277B8C,extended,28420001 diff --git a/patches/SLUS-20552_9E312BAF.pnach b/patches/SLUS-20552_9E312BAF.pnach index f68b7222..9622e123 100644 --- a/patches/SLUS-20552_9E312BAF.pnach +++ b/patches/SLUS-20552_9E312BAF.pnach @@ -14,4 +14,7 @@ patch=1,EE,0024846c,word,0c04c8cf //0c04c8d0 patch=1,EE,0027541c,word,0c04c8d2 //0c04c8d0 patch=1,EE,002759ec,word,0c04c8d2 //0c04c8d0 - +[60 FPS] +author=Snake356 +comment=Patches the game to run at 60 FPS (Might need 180% EE Overclock to be stable). +patch=1,EE,2027780C,extended,28420001 diff --git a/patches/SLUS-20553_D1DFF756.pnach b/patches/SLUS-20553_D1DFF756.pnach index 4390e298..ddeba685 100644 --- a/patches/SLUS-20553_D1DFF756.pnach +++ b/patches/SLUS-20553_D1DFF756.pnach @@ -2,7 +2,7 @@ gametitle=Fisherman's Challenge (U)(SLUS 20553) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20555_EA3B2269.pnach b/patches/SLUS-20555_EA3B2269.pnach index 961fa271..84c2d795 100644 --- a/patches/SLUS-20555_EA3B2269.pnach +++ b/patches/SLUS-20555_EA3B2269.pnach @@ -2,7 +2,7 @@ gametitle=Reel Fishing III (U)(SLUS-20555) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20556_D10945CE.pnach b/patches/SLUS-20556_D10945CE.pnach index ddb86c6a..c983efb6 100644 --- a/patches/SLUS-20556_D10945CE.pnach +++ b/patches/SLUS-20556_D10945CE.pnach @@ -1,8 +1,8 @@ -gametitle=Reign of Fire (U)(SLUS_205.56) +gametitle=Reign of Fire NTSC-U SLUS-20556 D10945CE [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -12,4 +12,8 @@ patch=1,EE,00135320,word,3c023fab //3c023f80 //Zoom patch=1,EE,001352b8,word,3c023f24 //3c023f00 - +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00264E70,word,00000001 //00000002 +patch=1,EE,001409b4,word,2402003c //2402001e \ No newline at end of file diff --git a/patches/SLUS-20559_2DBC5095.pnach b/patches/SLUS-20559_2DBC5095.pnach index 43924b18..f33b5bc8 100644 --- a/patches/SLUS-20559_2DBC5095.pnach +++ b/patches/SLUS-20559_2DBC5095.pnach @@ -2,7 +2,7 @@ gametitle=Rocky (U)(SLUS-20559) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20568_683845A3.pnach b/patches/SLUS-20568_683845A3.pnach index b2ee94c7..ad567189 100644 --- a/patches/SLUS-20568_683845A3.pnach +++ b/patches/SLUS-20568_683845A3.pnach @@ -2,7 +2,7 @@ gametitle=Hard Hitter Tennis (U)(SLUS-20568) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20569_3A38CD1A.pnach b/patches/SLUS-20569_3A38CD1A.pnach index 0843de90..dbb7b349 100644 --- a/patches/SLUS-20569_3A38CD1A.pnach +++ b/patches/SLUS-20569_3A38CD1A.pnach @@ -2,7 +2,7 @@ gametitle=All-Star Baseball 2004 (U)(SLUS-20569) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20572_E14ADB65.pnach b/patches/SLUS-20572_E14ADB65.pnach index 99dd1af4..47b9e1cc 100644 --- a/patches/SLUS-20572_E14ADB65.pnach +++ b/patches/SLUS-20572_E14ADB65.pnach @@ -2,7 +2,7 @@ gametitle=Tiger Woods PGA Tour 2003 (NTSC-U) (SLUS-20572) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by VIRGIN KLM +author=VIRGIN KLM //Widescreen hack 16:9 diff --git a/patches/SLUS-20573_A4B3D285.pnach b/patches/SLUS-20573_A4B3D285.pnach index 2aca0b72..7fe078cf 100644 --- a/patches/SLUS-20573_A4B3D285.pnach +++ b/patches/SLUS-20573_A4B3D285.pnach @@ -2,7 +2,7 @@ gametitle=The Sims (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,00326108,word,08030000 //4618b603 diff --git a/patches/SLUS-20575_BC910F04.pnach b/patches/SLUS-20575_BC910F04.pnach index 50047ad7..dbc862e3 100644 --- a/patches/SLUS-20575_BC910F04.pnach +++ b/patches/SLUS-20575_BC910F04.pnach @@ -2,7 +2,7 @@ //[Widescreen 16:9] //gsaspectratio=16:9 -//comment=Widescreen hack by by Arapapa +//author=Arapapa //Disabled as it causes SPS. //Widescreen hack 16:9 diff --git a/patches/SLUS-20582_B9EA7505.pnach b/patches/SLUS-20582_B9EA7505.pnach index 66b92138..c8314ba1 100644 --- a/patches/SLUS-20582_B9EA7505.pnach +++ b/patches/SLUS-20582_B9EA7505.pnach @@ -2,7 +2,7 @@ gametitle=Street Racing Syndicate (U)(SLUS-20582) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20585_6ABE0187.pnach b/patches/SLUS-20585_6ABE0187.pnach index 99ae7483..6e040cf5 100644 --- a/patches/SLUS-20585_6ABE0187.pnach +++ b/patches/SLUS-20585_6ABE0187.pnach @@ -2,7 +2,7 @@ gametitle=The Powerpuff Girls - Relish Rampage (USA) [SLUS-20585] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20586_807FD7CA.pnach b/patches/SLUS-20586_807FD7CA.pnach index f73dd563..fb73dfa9 100644 --- a/patches/SLUS-20586_807FD7CA.pnach +++ b/patches/SLUS-20586_807FD7CA.pnach @@ -2,7 +2,7 @@ gametitle=IHRA Drag Racing 2 (U)(SLUS-20586) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20591_2FF8E31F.pnach b/patches/SLUS-20591_2FF8E31F.pnach index 539c62a6..3c255e99 100644 --- a/patches/SLUS-20591_2FF8E31F.pnach +++ b/patches/SLUS-20591_2FF8E31F.pnach @@ -14,4 +14,9 @@ patch=1,EE,0034de50,word,3f400000 //3f800000 patch=1,EE,0034deb0,word,3f400000 //3f800000 patch=1,EE,00355640,word,3f400000 //3f800000 - +[No-Interlacing] +author=Josh_7774 +description=Attempts to disable interlaced offset rendering. +gsinterlacemode=1 +//Disable Interlacing Instruction +patch=1,EE,20155814,extended,00000000 diff --git a/patches/SLUS-20595_B59EF006.pnach b/patches/SLUS-20595_B59EF006.pnach index fe4b875b..dc7617e9 100644 --- a/patches/SLUS-20595_B59EF006.pnach +++ b/patches/SLUS-20595_B59EF006.pnach @@ -2,7 +2,7 @@ gametitle=Area 51 (NTSC-U) (SLUS-20595) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,003922d8,word,3c193f40 // 00000000 hor fov @@ -19,4 +19,9 @@ patch=1,EE,003929ac,word,461eab83 // 00000000 renderfix calculation //patch=1,EE,003929c0,word,461ebb03 // 00000000 renderfix calculation //patch=1,EE,003929ac,word,461eab83 // 00000000 renderfix calculation - +[60 FPS] +author=asasega & Gabominated +description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,20382680,extended,28620001 //28620002 +patch=1,EE,E0010001,extended,0059FE28 +patch=1,EE,20382680,extended,28620002 diff --git a/patches/SLUS-20598_BCE9B7BB.pnach b/patches/SLUS-20598_BCE9B7BB.pnach index 2f10e490..cd1fdda3 100644 --- a/patches/SLUS-20598_BCE9B7BB.pnach +++ b/patches/SLUS-20598_BCE9B7BB.pnach @@ -2,7 +2,7 @@ gametitle=Everblue 2 [NTSC-U] (SLUS_205.98) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00229278,word,3C033F06 //3C033F33 (Increases hor. axis) diff --git a/patches/SLUS-20602_0AF91FC6.pnach b/patches/SLUS-20602_0AF91FC6.pnach index 739514b8..d3b11c82 100644 --- a/patches/SLUS-20602_0AF91FC6.pnach +++ b/patches/SLUS-20602_0AF91FC6.pnach @@ -2,7 +2,7 @@ gametitle=High Heat Major League Baseball 2004 (U)(SLUS-20602) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20603_A8CE7DF2.pnach b/patches/SLUS-20603_A8CE7DF2.pnach index 8ffe533e..9029f649 100644 --- a/patches/SLUS-20603_A8CE7DF2.pnach +++ b/patches/SLUS-20603_A8CE7DF2.pnach @@ -2,7 +2,7 @@ gametitle=Mary-Kate & Ashley - Sweet Sixteen - Licensed to Drive (U) [SLUS-20603 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20606_71B6ADB9.pnach b/patches/SLUS-20606_71B6ADB9.pnach index 8c4a1bf0..fb648fcd 100644 --- a/patches/SLUS-20606_71B6ADB9.pnach +++ b/patches/SLUS-20606_71B6ADB9.pnach @@ -2,7 +2,7 @@ gametitle=Seek and Destroy (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas // 16:9 patch=1,EE,001bc24c,word,3C013F40 //00000000 hor fov diff --git a/patches/SLUS-20613_3E571E95.pnach b/patches/SLUS-20613_3E571E95.pnach index 780025ee..ea7edae7 100644 --- a/patches/SLUS-20613_3E571E95.pnach +++ b/patches/SLUS-20613_3E571E95.pnach @@ -2,7 +2,7 @@ gametitle=Tom Clancy's Ghost Recon (SLUS-20613) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //sp patch=1,EE,003a7ef4,word,3c023f40 diff --git a/patches/SLUS-20616_C9DEF513.pnach b/patches/SLUS-20616_C9DEF513.pnach index 7da56437..713096b7 100644 --- a/patches/SLUS-20616_C9DEF513.pnach +++ b/patches/SLUS-20616_C9DEF513.pnach @@ -2,7 +2,7 @@ gametitle=Virtua Fighter 4 - Evolution (U)(SLUS-20616) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,003aaa74,word,3c194455 // 3c034420 hor fov diff --git a/patches/SLUS-20617_C22D5152.pnach b/patches/SLUS-20617_C22D5152.pnach index 23ae5675..93f85977 100644 --- a/patches/SLUS-20617_C22D5152.pnach +++ b/patches/SLUS-20617_C22D5152.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 3: Xtreme Legends (U)(SLUS-20617) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht (NTSC-U by Arapapa) +author=ElHecht (NTSC-U by Arapapa) //Widescreen 16:9 diff --git a/patches/SLUS-20618_C774219F.pnach b/patches/SLUS-20618_C774219F.pnach index fae0d5c5..883eca9f 100644 --- a/patches/SLUS-20618_C774219F.pnach +++ b/patches/SLUS-20618_C774219F.pnach @@ -2,7 +2,7 @@ gametitle=MLB SlugFest 2004 (U)(SLUS-20618) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20619_455398AB.pnach b/patches/SLUS-20619_455398AB.pnach index e84136f6..4c5575cd 100644 --- a/patches/SLUS-20619_455398AB.pnach +++ b/patches/SLUS-20619_455398AB.pnach @@ -2,7 +2,7 @@ gametitle=Starsky & Hutch (U)(SLUS-20619) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20620_1E4F42FF.pnach b/patches/SLUS-20620_1E4F42FF.pnach new file mode 100644 index 00000000..34866c54 --- /dev/null +++ b/patches/SLUS-20620_1E4F42FF.pnach @@ -0,0 +1,8 @@ +gametitle=Smash Cars NTSC-U SLUS-20620 1E4F42FF + +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,201B0E7C,extended,2C410002 //2C410002 +patch=1,EE,E0010001,extended,00394C30 +patch=1,EE,101B0E7C,extended,2C410001 \ No newline at end of file diff --git a/patches/SLUS-20621_A6356EA6.pnach b/patches/SLUS-20621_A6356EA6.pnach index c88b801e..26c14e89 100644 --- a/patches/SLUS-20621_A6356EA6.pnach +++ b/patches/SLUS-20621_A6356EA6.pnach @@ -2,7 +2,7 @@ gametitle=Seven Samurai 20XX (U) (SLUS_206.21) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht (pnach by Arapapa) +author=ElHecht (pnach by Arapapa) // 16:9 patch=1,EE,001bcdd4,word,3c094455 // 00000000 hor fov diff --git a/patches/SLUS-20622_2498951B.pnach b/patches/SLUS-20622_2498951B.pnach index 015b52bd..6f54943d 100644 --- a/patches/SLUS-20622_2498951B.pnach +++ b/patches/SLUS-20622_2498951B.pnach @@ -2,7 +2,7 @@ gametitle=Silent Hill 3 (SLUS-20622) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,001b4a64,word,3c023f28 //hor val / ntsc mode diff --git a/patches/SLUS-20624_FC99EC8C.pnach b/patches/SLUS-20624_FC99EC8C.pnach index 370febd5..5d734e64 100644 --- a/patches/SLUS-20624_FC99EC8C.pnach +++ b/patches/SLUS-20624_FC99EC8C.pnach @@ -2,7 +2,7 @@ gametitle=The Simpsons - Hit & Run (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 ver patch=1,EE,00138a88,word,00000000 // 10400005 diff --git a/patches/SLUS-20625_46B7FEC5.pnach b/patches/SLUS-20625_46B7FEC5.pnach index a9c8c57f..c94be950 100644 --- a/patches/SLUS-20625_46B7FEC5.pnach +++ b/patches/SLUS-20625_46B7FEC5.pnach @@ -2,7 +2,7 @@ gametitle=MotoGP 3 (U)(SLUS-20625) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20627_08995DEE.pnach b/patches/SLUS-20627_08995DEE.pnach index 350eaa56..470e4e98 100644 --- a/patches/SLUS-20627_08995DEE.pnach +++ b/patches/SLUS-20627_08995DEE.pnach @@ -2,7 +2,7 @@ gametitle=Devil May Cry 2 (Disc 1) (Dante Disc) (SLUS-20484) / Devil May Cry 2 ( [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0017e08c,word,3c013f1a //hor aspect value patch=1,EE,0017e094,word,44810000 diff --git a/patches/SLUS-20628_1E70F18D.pnach b/patches/SLUS-20628_1E70F18D.pnach index 680b8b93..62b707c8 100644 --- a/patches/SLUS-20628_1E70F18D.pnach +++ b/patches/SLUS-20628_1E70F18D.pnach @@ -2,7 +2,7 @@ gametitle=Disney-Pixar Finding Nemo (U)(SLUS-20628) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20631_52922787.pnach b/patches/SLUS-20631_52922787.pnach index aba27bce..c787c5b4 100644 --- a/patches/SLUS-20631_52922787.pnach +++ b/patches/SLUS-20631_52922787.pnach @@ -2,7 +2,7 @@ gametitle=NFL Blitz Pro (U)(SLUS-20631) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20632_56B36513.pnach b/patches/SLUS-20632_56B36513.pnach index 2f9d6724..ecc5704f 100644 --- a/patches/SLUS-20632_56B36513.pnach +++ b/patches/SLUS-20632_56B36513.pnach @@ -3,7 +3,7 @@ gametitle=XGRA - Extreme G Racing Association (U)(SLUS-20632) 56B36513 [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio //003f013c 00088144 b00644c6 Zoom patch=1,EE,0019d554,word,3c013ec0 //3c013f00 //00000000 00000000 83b50046 00000000 00000000 Y-Fov @@ -14,8 +14,6 @@ patch=1,EE,0019d580,word,4481f000 patch=1,EE,0019d584,word,461ebdc2 [60 FPS] -author=PeterDelta -comment=Unlocked at 60 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,002052C4,word,1040FFFA -patch=1,EE,E0010000,extended,01FFE32C -patch=1,EE,202052C4,extended,00000000 \ No newline at end of file +author=Gabominated +description=Might need EE Overclock at 130%. +patch=1,EE,001A78B4,word,14400004 //10400004 \ No newline at end of file diff --git a/patches/SLUS-20634_4C73FB6B.pnach b/patches/SLUS-20634_4C73FB6B.pnach index ddd23541..56e01e30 100644 --- a/patches/SLUS-20634_4C73FB6B.pnach +++ b/patches/SLUS-20634_4C73FB6B.pnach @@ -2,7 +2,7 @@ gametitle=Summer Heat - Beach Volleyball (SLUS_20634) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,001b08a4,word,3c01464F //3c014622 - both FOV diff --git a/patches/SLUS-20635_EB933C4B.pnach b/patches/SLUS-20635_EB933C4B.pnach index e907960a..b4c13831 100644 --- a/patches/SLUS-20635_EB933C4B.pnach +++ b/patches/SLUS-20635_EB933C4B.pnach @@ -2,7 +2,7 @@ gametitle=Muppets Party Cruise (U)(SLUS-20635) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20638_600709E2.pnach b/patches/SLUS-20638_600709E2.pnach index 064876e0..0aea9a3d 100644 --- a/patches/SLUS-20638_600709E2.pnach +++ b/patches/SLUS-20638_600709E2.pnach @@ -2,7 +2,7 @@ gametitle=Backyard Wrestling - Don't Try This at Home (U)(SLUS-20638) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20641_B36EE21E.pnach b/patches/SLUS-20641_B36EE21E.pnach new file mode 100644 index 00000000..e21dbcc0 --- /dev/null +++ b/patches/SLUS-20641_B36EE21E.pnach @@ -0,0 +1,6 @@ +gametitle=IndyCar Series NTSC-U SLUS-20641 B36EE21E + +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,2025EA3C,extended,00000000 \ No newline at end of file diff --git a/patches/SLUS-20642_6D76177B.pnach b/patches/SLUS-20642_6D76177B.pnach index 4b61638c..f13d44bc 100644 --- a/patches/SLUS-20642_6D76177B.pnach +++ b/patches/SLUS-20642_6D76177B.pnach @@ -2,7 +2,7 @@ gametitle=Auto Modellista (SLUS-20642) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,0039b80c,word,3fe38e38 diff --git a/patches/SLUS-20646_5744D227.pnach b/patches/SLUS-20646_5744D227.pnach index b7a276d2..8f3244ce 100644 --- a/patches/SLUS-20646_5744D227.pnach +++ b/patches/SLUS-20646_5744D227.pnach @@ -2,7 +2,7 @@ gametitle=Mark Davis Pro Bass Challenge (U)(SLUS-20646) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20647_E498DD6E.pnach b/patches/SLUS-20647_E498DD6E.pnach index a5ada7ad..08788650 100644 --- a/patches/SLUS-20647_E498DD6E.pnach +++ b/patches/SLUS-20647_E498DD6E.pnach @@ -2,7 +2,7 @@ gametitle=Wallace & Gromit in Project Zoo (U)(SLUS-20647) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20649_8F943CF3.pnach b/patches/SLUS-20649_8F943CF3.pnach index a96e81da..9cc78d42 100644 --- a/patches/SLUS-20649_8F943CF3.pnach +++ b/patches/SLUS-20649_8F943CF3.pnach @@ -2,7 +2,7 @@ gametitle=Crash Nitro Kart (SLUS-20649) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0058bcf8,word,3c023f17 diff --git a/patches/SLUS-20650_55493524.pnach b/patches/SLUS-20650_55493524.pnach index e44233b9..3a49ab7b 100644 --- a/patches/SLUS-20650_55493524.pnach +++ b/patches/SLUS-20650_55493524.pnach @@ -2,7 +2,7 @@ gametitle=MVP Baseball 2003 (NTSC-U)(SLUS-20650) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20651_92AEE337.pnach b/patches/SLUS-20651_92AEE337.pnach index 04e734b3..751417ef 100644 --- a/patches/SLUS-20651_92AEE337.pnach +++ b/patches/SLUS-20651_92AEE337.pnach @@ -2,7 +2,7 @@ description=Renders the game in 16:9 aspect ratio, instead of 4:3. gsaspectratio=16:9 gametitle = NBA Street Vol.2 (NTSC-U) -comment = Widescreen Hack by Ko81e24wy +author=Ko81e24wy // Widescreen 16:9 patch=1,EE,208D6AA0,extended,3F400000 diff --git a/patches/SLUS-20652_A1B095EC.pnach b/patches/SLUS-20652_A1B095EC.pnach index e814046f..71f90a0a 100644 --- a/patches/SLUS-20652_A1B095EC.pnach +++ b/patches/SLUS-20652_A1B095EC.pnach @@ -2,7 +2,7 @@ gametitle=Tom Clancy's Splinter Cell (SLUS_20652) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,001cf514,word,8f828ff8 patch=1,EE,001cf518,word,14400005 diff --git a/patches/SLUS-20653_6C89132B.pnach b/patches/SLUS-20653_6C89132B.pnach index 7ec8fba0..9660f85b 100644 --- a/patches/SLUS-20653_6C89132B.pnach +++ b/patches/SLUS-20653_6C89132B.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 4 (SLUS-20653) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00136f30,word,3c0243d6 patch=1,EE,00183dc0,word,3c023f2b diff --git a/patches/SLUS-20655_2D29C32F.pnach b/patches/SLUS-20655_2D29C32F.pnach index 23b5f566..a534788d 100644 --- a/patches/SLUS-20655_2D29C32F.pnach +++ b/patches/SLUS-20655_2D29C32F.pnach @@ -1,18 +1,18 @@ -gametitle=Hobbit, The (U)(SLUS-20655) +gametitle=Hobbit, The (U) (SLUS-20655) 2D29C32F [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa - -//Widescreen hack 16:9 - -//Zoom -patch=1,EE,002f9434,word,3c013ec0 //3c013f00 - -//Y-Fov -patch=1,EE,00389b30,word,3c013ec0 //3c013f00 - -//Render fix -patch=1,EE,00389c44,word,3c013f40 //3c013f00 - +author=Arapapa & PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00389B30,word,3C013ED5 //3C013F00 Y-Fov +patch=1,EE,00389C44,word,3C013F49 //3C013F00 Render fix +patch=1,EE,003887C8,word,3C013F1D +[60 FPS] +author=PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,004033DC,extended,00000001 +patch=1,EE,E0010000,extended,003E7410 +patch=1,EE,004033DC,extended,00000002 +patch=1,EE,E0010001,extended,00471A34 +patch=1,EE,004033DC,extended,00000002 \ No newline at end of file diff --git a/patches/SLUS-20659_004B2E96.pnach b/patches/SLUS-20659_004B2E96.pnach index 999fa4cd..68ac2ab8 100644 --- a/patches/SLUS-20659_004B2E96.pnach +++ b/patches/SLUS-20659_004B2E96.pnach @@ -2,7 +2,7 @@ gametitle=Disney Presents Piglet's Big Game (U)(SLUS-20659) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20661_813D240D.pnach b/patches/SLUS-20661_813D240D.pnach index 1ee113f2..5c99aa4a 100644 --- a/patches/SLUS-20661_813D240D.pnach +++ b/patches/SLUS-20661_813D240D.pnach @@ -2,7 +2,7 @@ gametitle=The Fairly OddParents! Breakin' Da Rules (U)(SLUS-20661) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20663_E1D9B618.pnach b/patches/SLUS-20663_E1D9B618.pnach index 6b5a0d59..af8b7ab9 100644 --- a/patches/SLUS-20663_E1D9B618.pnach +++ b/patches/SLUS-20663_E1D9B618.pnach @@ -2,7 +2,7 @@ gametitle=Naval Ops - Warship Gunner (U)(SLUS-20663) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20664_54D2D5DA.pnach b/patches/SLUS-20664_54D2D5DA.pnach index f24a727b..20140744 100644 --- a/patches/SLUS-20664_54D2D5DA.pnach +++ b/patches/SLUS-20664_54D2D5DA.pnach @@ -2,7 +2,7 @@ gametitle=Barbie Horse Adventures - Wild Horse Rescue (U)(SLUS-20664) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20665_658D8BB8.pnach b/patches/SLUS-20665_658D8BB8.pnach index 00fc91fb..6c1fff00 100644 --- a/patches/SLUS-20665_658D8BB8.pnach +++ b/patches/SLUS-20665_658D8BB8.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's Deer Hunt - 2004 Season (U)(SLUS-20665) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Zoom diff --git a/patches/SLUS-20666_4D2CAC9D.pnach b/patches/SLUS-20666_4D2CAC9D.pnach index 44693f1d..623e8ccd 100644 --- a/patches/SLUS-20666_4D2CAC9D.pnach +++ b/patches/SLUS-20666_4D2CAC9D.pnach @@ -2,7 +2,7 @@ gametitle=Disgaea: Hour of Darkness (SLUS-20666) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0014d6ac,word,3c033f40 patch=1,EE,0014d6b4,word,e7a000dc patch=1,EE,0014d6b8,word,46000003 diff --git a/patches/SLUS-20670_D600925B.pnach b/patches/SLUS-20670_D600925B.pnach index 5cbf68e0..66f0c363 100644 --- a/patches/SLUS-20670_D600925B.pnach +++ b/patches/SLUS-20670_D600925B.pnach @@ -1,21 +1,20 @@ -gametitle=The Great Escape (U)(SLUS-20670) +//gametitle=The Great Escape (U)(SLUS-20670) -[Widescreen 16:9] -gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +//[Widescreen 16:9] +//gsaspectratio=16:9 +//author=Arapapa +// Disabled due causing issues with objects and black bars appearing at the edges of the screen. //Widescreen hack 16:9 //Zoom -patch=1,EE,002b89cc,word,3c013b01 //3c013acc -patch=1,EE,002b89d0,word,34210000 //3421cccd +//patch=1,EE,002b89cc,word,3c013b01 //3c013acc +//patch=1,EE,002b89d0,word,34210000 //3421cccd //Y-Fov -patch=1,EE,002b8a54,word,3c013b35 //3c013b08 -patch=1,EE,002b8a58,word,3421fe54 //34218889 +//patch=1,EE,002b8a54,word,3c013b35 //3c013b08 +//patch=1,EE,002b8a58,word,3421fe54 //34218889 //Render fix -patch=1,EE,002ca178,word,3c013d00 //3c013c8e -patch=1,EE,002ca17c,word,34210000 //3421fa36 - - +//patch=1,EE,002ca178,word,3c013d00 //3c013c8e +//patch=1,EE,002ca17c,word,34210000 //3421fa36 \ No newline at end of file diff --git a/patches/SLUS-20671_B67F4F9E.pnach b/patches/SLUS-20671_B67F4F9E.pnach index 3987b16f..48da5880 100644 --- a/patches/SLUS-20671_B67F4F9E.pnach +++ b/patches/SLUS-20671_B67F4F9E.pnach @@ -2,7 +2,7 @@ gametitle=Mafia [NTSC-U] (SLUS_206.71) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas, Render fixes by arapapa +author=El_Patas, Render fixes by arapapa //Gameplay 16:9 patch=1,EE,20FF8D64,extended,3FAB0000 //3F800000 Vertical axis diff --git a/patches/SLUS-20672_48FE0C71.pnach b/patches/SLUS-20672_48FE0C71.pnach index 86db59c0..1ce55002 100644 --- a/patches/SLUS-20672_48FE0C71.pnach +++ b/patches/SLUS-20672_48FE0C71.pnach @@ -2,7 +2,7 @@ gametitle=Final Fantasy X-2 (SLUS-20672) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,001b4f74,word,3c013f19 patch=1,EE,001b4f78,word,3421999a patch=1,EE,0012369c,word,3c014440 diff --git a/patches/SLUS-20673_E3ADDC73.pnach b/patches/SLUS-20673_E3ADDC73.pnach index 2a0bc962..ad1536b6 100644 --- a/patches/SLUS-20673_E3ADDC73.pnach +++ b/patches/SLUS-20673_E3ADDC73.pnach @@ -2,10 +2,13 @@ gametitle=Alias (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa // 16:9 patch=1,EE,00248178,word,3c013ec0 // 3c013f00 hor fov patch=1,EE,001f3c30,word,3c013f40 // 3c013f80 renderfix - +[60 FPS] +author=asasega & Gabominated +description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,2024BEF0,extended,14400039 //10400039 diff --git a/patches/SLUS-20674_2D52131D.pnach b/patches/SLUS-20674_2D52131D.pnach index 268b89ca..0e5cabbe 100644 --- a/patches/SLUS-20674_2D52131D.pnach +++ b/patches/SLUS-20674_2D52131D.pnach @@ -2,7 +2,7 @@ gametitle=Cyber Troopers Virtual-On Marz (U)(SLUS-20674) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20676_87D87E3F.pnach b/patches/SLUS-20676_87D87E3F.pnach index 17762c8d..c446ce12 100644 --- a/patches/SLUS-20676_87D87E3F.pnach +++ b/patches/SLUS-20676_87D87E3F.pnach @@ -2,7 +2,7 @@ gametitle=Lowrider (U)(SLUS-20676) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20678_82BD9123.pnach b/patches/SLUS-20678_82BD9123.pnach index 3d81c519..bae40a8b 100644 --- a/patches/SLUS-20678_82BD9123.pnach +++ b/patches/SLUS-20678_82BD9123.pnach @@ -2,7 +2,7 @@ gametitle=Unlimited Saga (U)(SLUS-20678) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 battles //00000000 00000000 43ad1346 00000000 00000000 diff --git a/patches/SLUS-20680_FD7EEE96.pnach b/patches/SLUS-20680_FD7EEE96.pnach index 9c09057e..a862b037 100644 --- a/patches/SLUS-20680_FD7EEE96.pnach +++ b/patches/SLUS-20680_FD7EEE96.pnach @@ -2,7 +2,7 @@ gametitle=Nickelodeon SpongeBob SquarePants in: Battle for Bikini Bottom (SLUS-2 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,0035ce30,word,0c045286 diff --git a/patches/SLUS-20681_32E9B04D.pnach b/patches/SLUS-20681_32E9B04D.pnach index 94169d57..175757c2 100644 --- a/patches/SLUS-20681_32E9B04D.pnach +++ b/patches/SLUS-20681_32E9B04D.pnach @@ -2,7 +2,7 @@ gametitle=The Haunted Mansion (U)(SLUS-20681) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20683_90E92030.pnach b/patches/SLUS-20683_90E92030.pnach index 98b3e979..f20cceeb 100644 --- a/patches/SLUS-20683_90E92030.pnach +++ b/patches/SLUS-20683_90E92030.pnach @@ -2,7 +2,7 @@ gametitle=Lupin the 3rd: Treasure of the Sorcerer King [NTSC-U] (SLUS_206.83) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,002504E4,word,3C013F40 //00000000 (Increases hor. axis) diff --git a/patches/SLUS-20687_EBD245D0.pnach b/patches/SLUS-20687_EBD245D0.pnach new file mode 100644 index 00000000..a3eac250 --- /dev/null +++ b/patches/SLUS-20687_EBD245D0.pnach @@ -0,0 +1,8 @@ +gametitle=RoadKill NTSC-U SLUS-20687 EBD245D0 + +[60 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,002F23F4,word,28630001 //28630002 +patch=1,EE,004C94B8,word,3C088889 //3C888889 +patch=1,EE,004C94C4,word,3c888889 //3D088889 \ No newline at end of file diff --git a/patches/SLUS-20688_9C71B59E.pnach b/patches/SLUS-20688_9C71B59E.pnach index d8cd1f39..da8f248f 100644 --- a/patches/SLUS-20688_9C71B59E.pnach +++ b/patches/SLUS-20688_9C71B59E.pnach @@ -2,7 +2,7 @@ gametitle=Psi-Ops: The Mindgate Conspiracy (SLUS-20688) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Nemesis2000 +author=nemesis2000 patch=1,EE,0046DC3C,word,241102AA @@ -12,4 +12,10 @@ patch=1,EE,00469938,word,2411012A [60 FPS] author=Gabominated comment=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,2017AB28,extended,00000000 //1640FFE5 fps1 \ No newline at end of file +patch=1,EE,2017AB28,extended,00000000 //1640FFE5 fps1 + +[No-interlacing] +gsinterlacemode=1 +author=Gabominated +description=Force progressive mode. +patch=1,EE,00566524,word,3c051000 \ No newline at end of file diff --git a/patches/SLUS-20689_2BE460DF.pnach b/patches/SLUS-20689_2BE460DF.pnach index 1b8099bb..b5e8873d 100644 --- a/patches/SLUS-20689_2BE460DF.pnach +++ b/patches/SLUS-20689_2BE460DF.pnach @@ -2,7 +2,7 @@ gametitle=Conflict - Desert Storm II - Back to Baghdad (U)(SLUS-20689) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20691_A6B59CA2.pnach b/patches/SLUS-20691_A6B59CA2.pnach index c0473e99..88fb3b52 100644 --- a/patches/SLUS-20691_A6B59CA2.pnach +++ b/patches/SLUS-20691_A6B59CA2.pnach @@ -2,7 +2,7 @@ gametitle=NHL Hitz Pro (SLUS_20691) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,203F4724,word,3F248B44 diff --git a/patches/SLUS-20693_2C1173B0.pnach b/patches/SLUS-20693_2C1173B0.pnach index 3a667ae0..3fd30d4c 100644 --- a/patches/SLUS-20693_2C1173B0.pnach +++ b/patches/SLUS-20693_2C1173B0.pnach @@ -3,10 +3,10 @@ gametitle=F1 Career Challenge (PAL & NTSC-U)(SLUS-20693 & SLES-51584) [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,00328744,word,01010101 -[50 FPS] +[60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0033DF50,extended,00000001 \ No newline at end of file diff --git a/patches/SLUS-20694_6BF11378.pnach b/patches/SLUS-20694_6BF11378.pnach index cbc0e34a..3257a183 100644 --- a/patches/SLUS-20694_6BF11378.pnach +++ b/patches/SLUS-20694_6BF11378.pnach @@ -2,7 +2,7 @@ gametitle=Onimusha 3: Demon Siege (SLUS-20694) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen correction by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 //gameplay diff --git a/patches/SLUS-20695_F3B0734E.pnach b/patches/SLUS-20695_F3B0734E.pnach index 0d0a04c5..24aee64e 100644 --- a/patches/SLUS-20695_F3B0734E.pnach +++ b/patches/SLUS-20695_F3B0734E.pnach @@ -2,7 +2,7 @@ gametitle=Chaos Legion (SLUS-20695) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00242f4c,word,3c013f40 patch=1,EE,00242f5c,word,4481d800 patch=1,EE,00242f60,word,460fdec2 diff --git a/patches/SLUS-20696_FCC09959.pnach b/patches/SLUS-20696_FCC09959.pnach index 3442df71..10de13a3 100644 --- a/patches/SLUS-20696_FCC09959.pnach +++ b/patches/SLUS-20696_FCC09959.pnach @@ -2,7 +2,7 @@ gametitle=Jimmy Neutron - Jet Fusion (U)(SLUS-20696) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20698_C2C630E5.pnach b/patches/SLUS-20698_C2C630E5.pnach index 79229c3a..b94e1715 100644 --- a/patches/SLUS-20698_C2C630E5.pnach +++ b/patches/SLUS-20698_C2C630E5.pnach @@ -2,7 +2,7 @@ gametitle=SD Gundam Force - Showdown! (U)(SLUS-20698) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20701_8F6A1960.pnach b/patches/SLUS-20701_8F6A1960.pnach index 544e95b2..63937c00 100644 --- a/patches/SLUS-20701_8F6A1960.pnach +++ b/patches/SLUS-20701_8F6A1960.pnach @@ -11,7 +11,7 @@ patch=1,EE,0027e938,word,4481f000 patch=1,EE,0027e93c,word,461e0842 patch=1,EE,0027e940,word,08065e29 -[50 FPS] +[60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,0049AAB8,word,0000003C \ No newline at end of file diff --git a/patches/SLUS-20703_3EC45D14.pnach b/patches/SLUS-20703_3EC45D14.pnach index 9f33c728..b91bbd54 100644 --- a/patches/SLUS-20703_3EC45D14.pnach +++ b/patches/SLUS-20703_3EC45D14.pnach @@ -2,7 +2,7 @@ gametitle=AirForce Delta Strike (U)(SLUS-20703) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20704_A54D5444.pnach b/patches/SLUS-20704_A54D5444.pnach index 03dfe7ed..4bd6a20e 100644 --- a/patches/SLUS-20704_A54D5444.pnach +++ b/patches/SLUS-20704_A54D5444.pnach @@ -2,7 +2,7 @@ gametitle=Backyard Basketball (U)(SLUS-20704) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20706_ECC849C5.pnach b/patches/SLUS-20706_ECC849C5.pnach index 773302e2..79376246 100644 --- a/patches/SLUS-20706_ECC849C5.pnach +++ b/patches/SLUS-20706_ECC849C5.pnach @@ -2,7 +2,7 @@ gametitle=Kill Switch (U)(SLUS-20706) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20707_B7E7D66F.pnach b/patches/SLUS-20707_B7E7D66F.pnach index 0766c8b8..59abe406 100644 --- a/patches/SLUS-20707_B7E7D66F.pnach +++ b/patches/SLUS-20707_B7E7D66F.pnach @@ -1,6 +1,20 @@ gametitle=Spawn - Armageddon (NTSC-U) SLUS-20707 B7E7D66F +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Enable native widescreen +patch=1,EE,E0020005,extended,00370440 +patch=1,EE,002D1200,extended,00000001 +patch=1,EE,00333CE4,extended,00000001 +patch=1,EE,00121C6C,extended,3C013F01 //3C013F00 fix border + +[Remove Blackbars] +author=PeterDelta +description=Removes black bars in cutscenes +patch=1,EE,0031F3F4,extended,00000001 + [60 FPS] author=asasega -comment=Unlocked at 60 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock (130%). patch=1,EE,202EEEC8,extended,00000001 \ No newline at end of file diff --git a/patches/SLUS-20710_CE7451A4.pnach b/patches/SLUS-20710_CE7451A4.pnach index 254f419a..e6891cd0 100644 --- a/patches/SLUS-20710_CE7451A4.pnach +++ b/patches/SLUS-20710_CE7451A4.pnach @@ -2,7 +2,7 @@ gametitle= Onimusha - Blade Warriors (NTSC-U) (SLUS-20710) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack by VIRGIN KLM +author=VIRGIN KLM //Widescreen patch=1,EE,204F7040,word,3F400000 // 3F800000 diff --git a/patches/SLUS-20712_CDA95971.pnach b/patches/SLUS-20712_CDA95971.pnach index 082d4998..9a838148 100644 --- a/patches/SLUS-20712_CDA95971.pnach +++ b/patches/SLUS-20712_CDA95971.pnach @@ -2,7 +2,7 @@ gametitle=Gradius V (U)(SLUS-20712) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20715_0712E8FA.pnach b/patches/SLUS-20715_0712E8FA.pnach index c72235bc..f1057bf9 100644 --- a/patches/SLUS-20715_0712E8FA.pnach +++ b/patches/SLUS-20715_0712E8FA.pnach @@ -2,7 +2,7 @@ gametitle=Combat Elite - WWII Paratroopers (U)(SLUS-20715) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20718_78FF4E3B.pnach b/patches/SLUS-20718_78FF4E3B.pnach index 81701825..866d07ac 100644 --- a/patches/SLUS-20718_78FF4E3B.pnach +++ b/patches/SLUS-20718_78FF4E3B.pnach @@ -2,7 +2,7 @@ gametitle=Sonic Heroes (SLUS-20718) [Widescreen 16:9] gsaspectratio=16:9 -comment=16:9 Hack by Brandondorf9999 +author=Brandondorf9999 //--- patch=1,EE,000C0000,word,3C023F40 diff --git a/patches/SLUS-20722_8CF7CBC0.pnach b/patches/SLUS-20722_8CF7CBC0.pnach index 777dfd48..c4515bbf 100644 --- a/patches/SLUS-20722_8CF7CBC0.pnach +++ b/patches/SLUS-20722_8CF7CBC0.pnach @@ -2,7 +2,7 @@ gametitle=Maximo vs Army of Zin (SLUS_20722) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,202C43D0,word,3FE58BF0 //3FAC28F6 hor FOV patch=1,EE,202CFB54,word,3FEEEEEE //3FB33333 render fix diff --git a/patches/SLUS-20723_77E3CBB4.pnach b/patches/SLUS-20723_77E3CBB4.pnach index d9fdcdb8..e038f35e 100644 --- a/patches/SLUS-20723_77E3CBB4.pnach +++ b/patches/SLUS-20723_77E3CBB4.pnach @@ -2,7 +2,7 @@ gametitle=Robin Hood - Defender of the Crown (U)(SLUS-20723) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Devina and Arapapa +author=Devina and Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20724_35092D61.pnach b/patches/SLUS-20724_35092D61.pnach index 96c9ca1b..17fd5743 100644 --- a/patches/SLUS-20724_35092D61.pnach +++ b/patches/SLUS-20724_35092D61.pnach @@ -2,7 +2,7 @@ gametitle=Firefighter F.D. 18 (U)(SLUS-25724) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20725_30AE5278.pnach b/patches/SLUS-20725_30AE5278.pnach index 9a7140b9..7abcf461 100644 --- a/patches/SLUS-20725_30AE5278.pnach +++ b/patches/SLUS-20725_30AE5278.pnach @@ -3,7 +3,7 @@ gametitle=Call of Duty: Finest Hour (SLUS-20725) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0024b3c4,word,00000000 diff --git a/patches/SLUS-20734_9F53F96D.pnach b/patches/SLUS-20734_9F53F96D.pnach index 8b4ad8b0..bc81086d 100644 --- a/patches/SLUS-20734_9F53F96D.pnach +++ b/patches/SLUS-20734_9F53F96D.pnach @@ -2,7 +2,7 @@ gametitle=Frogger's Adventures - The Rescue (U)(SLUS-20734) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20735_F523DBC9.pnach b/patches/SLUS-20735_F523DBC9.pnach index 3331024b..20b29695 100644 --- a/patches/SLUS-20735_F523DBC9.pnach +++ b/patches/SLUS-20735_F523DBC9.pnach @@ -2,7 +2,7 @@ gametitle=Lethal Skies II [NTSC-U] (SLUS_207.35) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001262DC,word,3C0143C0 //3C014400 Zoom diff --git a/patches/SLUS-20736_744175F0.pnach b/patches/SLUS-20736_744175F0.pnach index 108d7011..4d610d51 100644 --- a/patches/SLUS-20736_744175F0.pnach +++ b/patches/SLUS-20736_744175F0.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's Dangerous Hunts (U)(SLUS-20736) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Zoom diff --git a/patches/SLUS-20737_F803C7BC.pnach b/patches/SLUS-20737_F803C7BC.pnach index 8b55a9f4..28df6c9d 100644 --- a/patches/SLUS-20737_F803C7BC.pnach +++ b/patches/SLUS-20737_F803C7BC.pnach @@ -2,7 +2,7 @@ gametitle=Hot Wheels - World Race (U)(SLUS-20737) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20738_901ECEFC.pnach b/patches/SLUS-20738_901ECEFC.pnach index 284de5c9..5aba926d 100644 --- a/patches/SLUS-20738_901ECEFC.pnach +++ b/patches/SLUS-20738_901ECEFC.pnach @@ -1,8 +1,9 @@ -gametitle=Van Helsing (SLUS-20738) +gametitle=Van Helsing NTSC-U SLUS-20738 901ECEFC [Widescreen 16:9] gsaspectratio=16:9 -comment=Wide screen patch 16:9 by paul_met -patch=1,EE,202E7FA0,extended,3FE38E38 // 3FAAAAAA - - +author=paul_met & Gabominated +description=Widescreen hack +patch=1,EE,002E7FA0,word,3FE38E39 //3FAAAAAA +patch=1,EE,002E7FA4,word,C2D55554 //00000000 +patch=1,EE,002E7FA8,word,443AAAAB //44200000 \ No newline at end of file diff --git a/patches/SLUS-20741_00D5D3E4.pnach b/patches/SLUS-20741_00D5D3E4.pnach index 780f294a..8de46fa3 100644 --- a/patches/SLUS-20741_00D5D3E4.pnach +++ b/patches/SLUS-20741_00D5D3E4.pnach @@ -2,7 +2,7 @@ gametitle=Mojo! (U)(SLUS-20741) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20742_25E1B231.pnach b/patches/SLUS-20742_25E1B231.pnach index 4deae855..859a2d79 100644 --- a/patches/SLUS-20742_25E1B231.pnach +++ b/patches/SLUS-20742_25E1B231.pnach @@ -2,7 +2,7 @@ gametitle=Chulip (U)(SLUS-20742) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -13,4 +13,9 @@ patch=1,EE,00100fa0,word,3c013f40 //3c013f80 //Memory hack //patch=1,EE,201EDC40,extended,43C00000 // 44000000 - +[No-Interlacing] +author=NineKain +description=Attempts to disable interlaced offset rendering. +gsinterlacemode=1 +//Remove Interlacing +patch=1,EE,201878D4,extended,30420000 diff --git a/patches/SLUS-20743_7F6EB3D0.pnach b/patches/SLUS-20743_7F6EB3D0.pnach index fecc17b2..d8ae8f5b 100644 --- a/patches/SLUS-20743_7F6EB3D0.pnach +++ b/patches/SLUS-20743_7F6EB3D0.pnach @@ -3,7 +3,7 @@ gametitle=Prince of Persia: The Sands of Time (SLUS-20743) [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -comment=Widescreen hack +description=Renders the game in 16:9 aspect ratio //gameplay patch=1,EE,004b5114,word,3c033f40 @@ -29,7 +29,14 @@ patch=1,EE,001d8c88,word,3464dddd patch=1,EE,00253110,word,00000000 patch=1,EE,002bd92c,word,00000000 + [60 FPS] author=asasega comment=Unlocked at 60 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,0066D044,word,00000001 \ No newline at end of file +patch=1,EE,0066D044,word,00000001 + + +[Remove Blur/Bloom] +author=fobes +description=Removes the post-processing blur/bloom effect +patch=1,EE,004A95D4,word,00000000 diff --git a/patches/SLUS-20751_6848699B.pnach b/patches/SLUS-20751_6848699B.pnach index 10c80bad..3d63d587 100644 --- a/patches/SLUS-20751_6848699B.pnach +++ b/patches/SLUS-20751_6848699B.pnach @@ -2,7 +2,7 @@ gametitle=James Bond 007: Everything or Nothing (SLUS-20751) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,00315D28,word,24020001 diff --git a/patches/SLUS-20753_F22C1E3B.pnach b/patches/SLUS-20753_F22C1E3B.pnach index b24d9232..7330d71b 100644 --- a/patches/SLUS-20753_F22C1E3B.pnach +++ b/patches/SLUS-20753_F22C1E3B.pnach @@ -2,7 +2,7 @@ gametitle=Medal of Honor: Rising Sun (SLUS-20753) / Medal of Honor: Rising Sun [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,003a3910,word,3f100000 diff --git a/patches/SLUS-20755_09F914F1.pnach b/patches/SLUS-20755_09F914F1.pnach index b7de374c..18b65b00 100644 --- a/patches/SLUS-20755_09F914F1.pnach +++ b/patches/SLUS-20755_09F914F1.pnach @@ -2,7 +2,7 @@ gametitle=NBA Live 2004 (U)(SLUS-20755) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLUS-20761_5EF0678E.pnach b/patches/SLUS-20761_5EF0678E.pnach index 8bec0647..74708923 100644 --- a/patches/SLUS-20761_5EF0678E.pnach +++ b/patches/SLUS-20761_5EF0678E.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Tactics 2 (U)(SLUS-20761) [Widescreen 16:9] gsaspectratio=16:9 -comment=widescreen 16:9 hack by 99skull (NTSC-U by Arapapa) +author=99skull (NTSC-U by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLUS-20762_47197D6B.pnach b/patches/SLUS-20762_47197D6B.pnach index e674f7b7..ffe0072d 100644 --- a/patches/SLUS-20762_47197D6B.pnach +++ b/patches/SLUS-20762_47197D6B.pnach @@ -2,7 +2,7 @@ gametitle=Secret Weapons Over Normandy (U)(SLUS-20762) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20766_1C6C1DB6.pnach b/patches/SLUS-20766_1C6C1DB6.pnach index add7c41d..45b783d2 100644 --- a/patches/SLUS-20766_1C6C1DB6.pnach +++ b/patches/SLUS-20766_1C6C1DB6.pnach @@ -1,47 +1,27 @@ -gametitle=Fatal Frame II - Crimson Butterfly (NTSC-U) SLUS-20766 1C6C1DB6 (Undub) +gametitle=Fatal Frame II: Crimson Butterfly (Undub) * SLUS-20766 * NTSC-U * 1C6C1DB6 +// same serial-code as 9A51B627 - the regular version. +// Project Zero II: Crimson Butterfly +// Zero2Undub: https://github.com/wagrenier/Zero2Undub + +// This game might have some problems with the Cinematics, +// regardless of resolution or patches, however this pnach is not the cause of that. [Widescreen 16:9] gsaspectratio=16:9 -// ========== -// pgert@180217 -// http://forums.pcsx2.net/Thread-PCSX2-Widescreen-Game-Patches?pid=240786#pid240786 -// ========== -comment=Patches the game to run at 16:9 Widescreen Aspect Ratio. -comment=- This game might have some problems with the Cinematics, -comment=- regardless of resolution or patches; this pnach is not causing that. -comment=- * * * * * -comment=- Widescreen & HD pnach by pgert. -comment=- Patches primarily by nemesis2000. -// ========== -// This game has a sound-distortion when using the Spu2-X plug-in. -// Therefore (as a suggestion) use this special version of the plug-in: -// "https://forums.pcsx2.net/attachment.php?aid=65729". -// ========== +author=nemesis2000 -// ========== patch=1,EE,0033760C,word,3F400000 // 3F800000 - X-axis of GamePlay (including Cutscenes) - 16:9 -// patch=1,EE,0033760C,word,3F555555 // - 16:10 -// patch=1,EE,0033760C,word,3F638E39 // - 15:10 -// ========== -patch=1,EE,0020C1BC,word,00000000 // 0C0832A2 - corrects the Cutscene focus. -// patch=1,EE,0019EDD4,word,10000012 // 54400012 - disable Dither - optional hack. -// ========== -// Optional: Puts the Y-axis value to that of 50Hz-mode (PAL). -// patch=1,EE,00337610,word,3F800000 // 3F600000 - Y-axis of GamePlay (including Cutscenes). -// ========== +patch=1,EE,0020C1BC,word,00000000 // 0C0832A2 - corrects the Cutscenes focus + // Flashlight Widescreen hack by nemesis2000. patch=1,EE,0013A19C,word,0C053DCB // 0C053DCC patch=1,EE,0013A224,word,0C053DCB // 0C053DCC patch=1,EE,0013A28C,word,0C053DCB // 0C053DCC patch=1,EE,0013A304,word,0C053DCB // 0C053DCC patch=1,EE,0014F72C,word,3C013F40 // 00000000 - 16:9 -// patch=1,EE,0014F72C,word,3C013F55 // - 16:10 -// patch=1,EE,0014F72C,word,3C013F64 // - 15:10 patch=1,EE,0014F79C,word,44810800 // 00000000 patch=1,EE,0014F7A0,word,46016302 // 00000000 -// ========== -// ========== // Cinematics hacks by nemesis2000. patch=1,EE,001E5834,word,01C02820 // 3C050003 patch=1,EE,001E5838,word,E4830030 // 34A50003 @@ -55,18 +35,100 @@ patch=1,EE,001E59A8,word,DFBF0008 // DFB00000 patch=1,EE,001E59AC,word,27BD0010 // 03E00008 patch=1,EE,001E59B0,word,03E00008 // 27BD0010 patch=1,EE,001E59B4,word,DFB00000 // 00000000 -// ========== + // FMV-values. patch=1,EE,001E598C,word,3C013F40 // 0C0795E0 - width (1.0f = 640). - 16:9 patch=1,EE,0033B228,word,0000006A // 00000000 - x-pos = (640-640*ratio)/(2*ratio) Hex. - 16:9 -// patch=1,EE,001E598C,word,3C013F55 // - 16:10 -// patch=1,EE,0033B228,word,00000040 // -// patch=1,EE,001E598C,word,3C013F64 // - 15:10 -// patch=1,EE,0033B228,word,00000028 // + +// ========== + +[Widescreen/16:10] +gsaspectratio=Stretch +author=nemesis2000 & pgert +patch=1,EE,0033760C,word,3F555555 // - 16:10 +patch=1,EE,0020C1BC,word,00000000 + +// Flashlight Widescreen hack by nemesis2000. +patch=1,EE,0013A19C,word,0C053DCB +patch=1,EE,0013A224,word,0C053DCB +patch=1,EE,0013A28C,word,0C053DCB +patch=1,EE,0013A304,word,0C053DCB +patch=1,EE,0014F72C,word,3C013F55 // - 16:10 +patch=1,EE,0014F79C,word,44810800 +patch=1,EE,0014F7A0,word,46016302 + +// Cinematics hacks by nemesis2000. +patch=1,EE,001E5834,word,01C02820 +patch=1,EE,001E5838,word,E4830030 +patch=1,EE,001E5990,word,0C0795E0 +patch=1,EE,001E5994,word,44811800 +patch=1,EE,001E5998,word,8F84BE5C +patch=1,EE,001E599C,word,0C079EFE +patch=1,EE,001E59A0,word,0040802D +patch=1,EE,001E59A4,word,0200102D +patch=1,EE,001E59A8,word,DFBF0008 +patch=1,EE,001E59AC,word,27BD0010 +patch=1,EE,001E59B0,word,03E00008 +patch=1,EE,001E59B4,word,DFB00000 + +// FMV-values. +patch=1,EE,001E598C,word,3C013F55 // - 16:10 +patch=1,EE,0033B228,word,00000040 // + // ========== +[Widescreen/15:10] +gsaspectratio=Stretch +author=nemesis2000 & pgert + +patch=1,EE,0033760C,word,3F638E39 // - 15:10 +patch=1,EE,0020C1BC,word,00000000 + +// Flashlight Widescreen hack by nemesis2000. +patch=1,EE,0013A19C,word,0C053DCB +patch=1,EE,0013A224,word,0C053DCB +patch=1,EE,0013A28C,word,0C053DCB +patch=1,EE,0013A304,word,0C053DCB +patch=1,EE,0014F72C,word,3C013F64 // - 15:10 +patch=1,EE,0014F79C,word,44810800 +patch=1,EE,0014F7A0,word,46016302 + +// Cinematics hacks by nemesis2000. +patch=1,EE,001E5834,word,01C02820 +patch=1,EE,001E5838,word,E4830030 +patch=1,EE,001E5990,word,0C0795E0 +patch=1,EE,001E5994,word,44811800 +patch=1,EE,001E5998,word,8F84BE5C +patch=1,EE,001E599C,word,0C079EFE +patch=1,EE,001E59A0,word,0040802D +patch=1,EE,001E59A4,word,0200102D +patch=1,EE,001E59A8,word,DFBF0008 +patch=1,EE,001E59AC,word,27BD0010 +patch=1,EE,001E59B0,word,03E00008 +patch=1,EE,001E59B4,word,DFB00000 + +// FMV-values. +patch=1,EE,001E598C,word,3C013F64 // - 15:10 +patch=1,EE,0033B228,word,00000028 // + // ========== -// Notes (by pgert). + +[Disable Dither effect] +patch=1,EE,0019EDD4,word,10000012 // 54400012 + +[Y-axis adjustment] +author=pgert +description=Puts the Y-axis value to that of 50 Hz-mode (PAL). +patch=1,EE,00337610,word,3F800000 // 3F600000 - Y-axis of GamePlay (including Cutscenes). + +[60 FPS] +author=asasega +comment=Everything is double speed - Might need EE overclocking to be stable. +patch=1,EE,2021B7E4,word,10000007 +patch=1,EE,201F798C,word,2C42003C // gametime fix + +// ========== +// Patches by pgert // ========== // patch=1,EE,0018A05C,word,3C013EE8 // 3C013F00 - GamePlay Zoom. // ========== @@ -75,4 +137,13 @@ patch=1,EE,0033B228,word,0000006A // 00000000 - x-pos = (640-640*ratio)/(2*ratio // patch=1,EE,001F5778,word,3C014438 // 3c014360 - Y-axis placement of photos (affected by 001788E0). // ========== - +// ========== +// Patches by wagrenier ? +// ========== +// 16:9 +//patch=1,EE,004000dc,word,3F400000 // X-FoV +// ========== +// 16:10 +//patch=1,EE,004000dc,word,3F400000 // X-FoV +//patch=1,EE,004000e0,word,3F4A3D71 // Y-FoV +// ========== diff --git a/patches/SLUS-20766_9A51B627.pnach b/patches/SLUS-20766_9A51B627.pnach index d309bc4f..849a7680 100644 --- a/patches/SLUS-20766_9A51B627.pnach +++ b/patches/SLUS-20766_9A51B627.pnach @@ -1,47 +1,26 @@ -gametitle=Fatal Frame II - Crimson Butterfly (NTSC-U) SLUS-20766 9A51B627 +gametitle=Fatal Frame II: Crimson Butterfly * SLUS-20766 * NTSC-U * 9A51B627 +// same serial-code as 1C6C1DB6 - the Undub version. +// Project Zero II: Crimson Butterfly + +// This game might have some problems with the Cinematics, +// regardless of resolution or patches, however this pnach is not the cause of that. [Widescreen 16:9] gsaspectratio=16:9 -// ========== -// pgert@180217 -// http://forums.pcsx2.net/Thread-PCSX2-Widescreen-Game-Patches?pid=240786#pid240786 -// ========== -comment=Patches the game to run at 16:9 Widescreen Aspect Ratio. -comment=- This game might have some problems with the Cinematics, -comment=- regardless of resolution or patches; this pnach is not causing that. -comment=- * * * * * -comment=- Widescreen & HD pnach by pgert. -comment=- Patches primarily by nemesis2000. -// ========== -// This game has a sound-distortion when using the Spu2-X plug-in. -// Therefore (as a suggestion) use this special version of the plug-in: -// "https://forums.pcsx2.net/attachment.php?aid=65729". -// ========== +author=nemesis2000 -// ========== patch=1,EE,0033760C,word,3F400000 // 3F800000 - X-axis of GamePlay (including Cutscenes) - 16:9 -// patch=1,EE,0033760C,word,3F555555 // - 16:10 -// patch=1,EE,0033760C,word,3F638E39 // - 15:10 -// ========== -patch=1,EE,0020C1BC,word,00000000 // 0C0832A2 - corrects the Cutscene focus. -// patch=1,EE,0019EDD4,word,10000012 // 54400012 - disable Dither - optional hack. -// ========== -// Optional: Puts the Y-axis value to that of 50Hz-mode (PAL). -// patch=1,EE,00337610,word,3F800000 // 3F600000 - Y-axis of GamePlay (including Cutscenes). -// ========== +patch=1,EE,0020C1BC,word,00000000 // 0C0832A2 - corrects the Cutscenes focus + // Flashlight Widescreen hack by nemesis2000. patch=1,EE,0013A19C,word,0C053DCB // 0C053DCC patch=1,EE,0013A224,word,0C053DCB // 0C053DCC patch=1,EE,0013A28C,word,0C053DCB // 0C053DCC patch=1,EE,0013A304,word,0C053DCB // 0C053DCC patch=1,EE,0014F72C,word,3C013F40 // 00000000 - 16:9 -// patch=1,EE,0014F72C,word,3C013F55 // - 16:10 -// patch=1,EE,0014F72C,word,3C013F64 // - 15:10 patch=1,EE,0014F79C,word,44810800 // 00000000 patch=1,EE,0014F7A0,word,46016302 // 00000000 -// ========== -// ========== // Cinematics hacks by nemesis2000. patch=1,EE,001E5834,word,01C02820 // 3C050003 patch=1,EE,001E5838,word,E4830030 // 34A50003 @@ -55,18 +34,94 @@ patch=1,EE,001E59A8,word,DFBF0008 // DFB00000 patch=1,EE,001E59AC,word,27BD0010 // 03E00008 patch=1,EE,001E59B0,word,03E00008 // 27BD0010 patch=1,EE,001E59B4,word,DFB00000 // 00000000 -// ========== + // FMV-values. patch=1,EE,001E598C,word,3C013F40 // 0C0795E0 - width (1.0f = 640). - 16:9 patch=1,EE,0033B228,word,0000006A // 00000000 - x-pos = (640-640*ratio)/(2*ratio) Hex. - 16:9 -// patch=1,EE,001E598C,word,3C013F55 // - 16:10 -// patch=1,EE,0033B228,word,00000040 // -// patch=1,EE,001E598C,word,3C013F64 // - 15:10 -// patch=1,EE,0033B228,word,00000028 // + // ========== +[Widescreen/16:10] +gsaspectratio=Stretch +author=nemesis2000 & pgert +patch=1,EE,0033760C,word,3F555555 // - 16:10 +patch=1,EE,0020C1BC,word,00000000 + +// Flashlight Widescreen hack by nemesis2000. +patch=1,EE,0013A19C,word,0C053DCB +patch=1,EE,0013A224,word,0C053DCB +patch=1,EE,0013A28C,word,0C053DCB +patch=1,EE,0013A304,word,0C053DCB +patch=1,EE,0014F72C,word,3C013F55 // - 16:10 +patch=1,EE,0014F79C,word,44810800 +patch=1,EE,0014F7A0,word,46016302 + +// Cinematics hacks by nemesis2000. +patch=1,EE,001E5834,word,01C02820 +patch=1,EE,001E5838,word,E4830030 +patch=1,EE,001E5990,word,0C0795E0 +patch=1,EE,001E5994,word,44811800 +patch=1,EE,001E5998,word,8F84BE5C +patch=1,EE,001E599C,word,0C079EFE +patch=1,EE,001E59A0,word,0040802D +patch=1,EE,001E59A4,word,0200102D +patch=1,EE,001E59A8,word,DFBF0008 +patch=1,EE,001E59AC,word,27BD0010 +patch=1,EE,001E59B0,word,03E00008 +patch=1,EE,001E59B4,word,DFB00000 + +// FMV-values. +patch=1,EE,001E598C,word,3C013F55 // - 16:10 +patch=1,EE,0033B228,word,00000040 // + +// ========== + +[Widescreen/15:10] +gsaspectratio=Stretch +author=nemesis2000 & pgert + +patch=1,EE,0033760C,word,3F638E39 // - 15:10 +patch=1,EE,0020C1BC,word,00000000 + +// Flashlight Widescreen hack by nemesis2000. +patch=1,EE,0013A19C,word,0C053DCB +patch=1,EE,0013A224,word,0C053DCB +patch=1,EE,0013A28C,word,0C053DCB +patch=1,EE,0013A304,word,0C053DCB +patch=1,EE,0014F72C,word,3C013F64 // - 15:10 +patch=1,EE,0014F79C,word,44810800 +patch=1,EE,0014F7A0,word,46016302 + +// Cinematics hacks by nemesis2000. +patch=1,EE,001E5834,word,01C02820 +patch=1,EE,001E5838,word,E4830030 +patch=1,EE,001E5990,word,0C0795E0 +patch=1,EE,001E5994,word,44811800 +patch=1,EE,001E5998,word,8F84BE5C +patch=1,EE,001E599C,word,0C079EFE +patch=1,EE,001E59A0,word,0040802D +patch=1,EE,001E59A4,word,0200102D +patch=1,EE,001E59A8,word,DFBF0008 +patch=1,EE,001E59AC,word,27BD0010 +patch=1,EE,001E59B0,word,03E00008 +patch=1,EE,001E59B4,word,DFB00000 + +// FMV-values. +patch=1,EE,001E598C,word,3C013F64 // - 15:10 +patch=1,EE,0033B228,word,00000028 // + +// ========== + +[Disable Dither effect] +patch=1,EE,0019EDD4,word,10000012 // 54400012 + +[Y-axis adjustment] +author=pgert +description=Puts the Y-axis value to that of 50 Hz-mode (PAL). +patch=1,EE,00337610,word,3F800000 // 3F600000 - Y-axis of GamePlay (including Cutscenes). + // ========== -// Notes (by pgert). +// Patches by pgert // ========== // patch=1,EE,0018A05C,word,3C013EE8 // 3C013F00 - GamePlay Zoom. // ========== @@ -75,4 +130,13 @@ patch=1,EE,0033B228,word,0000006A // 00000000 - x-pos = (640-640*ratio)/(2*ratio // patch=1,EE,001F5778,word,3C014438 // 3c014360 - Y-axis placement of photos (affected by 001788E0). // ========== - +// ========== +// Patches by wagrenier ? +// ========== +// 16:9 +//patch=1,EE,004000dc,word,3F400000 // X-FoV +// ========== +// 16:10 +//patch=1,EE,004000dc,word,3F400000 // X-FoV +//patch=1,EE,004000e0,word,3F4A3D71 // Y-FoV +// ========== diff --git a/patches/SLUS-20767_9866FE54.pnach b/patches/SLUS-20767_9866FE54.pnach index 9eae2961..1089d801 100644 --- a/patches/SLUS-20767_9866FE54.pnach +++ b/patches/SLUS-20767_9866FE54.pnach @@ -1,8 +1,8 @@ -gametitle=MX Unleashed [NTSC-U] (SLUS_207.67) +gametitle=MX Unleashed NTSC-U SLUS-20767 9866FE54 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00112E60,word,3C033CAA //3C033C8E Zoom @@ -13,4 +13,9 @@ patch=1,EE,00112E58,word,3C023FAB //3C023F80 Y-FOV patch=1,EE,001ACB64,word,3C03BFAB //3C03BF80 patch=1,EE,001ACB68,word,3C023FAB //3C023F80 - +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,2019210c,extended,24040001 +patch=1,EE,E0010001,extended,00425DA8 +patch=1,EE,2019210c,extended,24040002 \ No newline at end of file diff --git a/patches/SLUS-20769_39E7ECF4.pnach b/patches/SLUS-20769_39E7ECF4.pnach index fc90f15a..1613412c 100644 --- a/patches/SLUS-20769_39E7ECF4.pnach +++ b/patches/SLUS-20769_39E7ECF4.pnach @@ -2,7 +2,7 @@ gametitle=Harry Potter - Quidditch World Cup (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002af388,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLUS-20779_1FB1F8E2.pnach b/patches/SLUS-20779_1FB1F8E2.pnach index a0fbc295..3055d04b 100644 --- a/patches/SLUS-20779_1FB1F8E2.pnach +++ b/patches/SLUS-20779_1FB1F8E2.pnach @@ -2,7 +2,7 @@ gametitle=DragonBall Z - Budokai 2 (NTSC-US) (SLUS-20779) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Catarax +author=Catarax // 16:9 patch=1,EE,0013192c,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLUS-20786_E8C504C8.pnach b/patches/SLUS-20786_E8C504C8.pnach index 30155417..9f9620a4 100644 --- a/patches/SLUS-20786_E8C504C8.pnach +++ b/patches/SLUS-20786_E8C504C8.pnach @@ -2,9 +2,8 @@ gametitle=Metal Arms - Glitch in the System (U)(SLUS-20786) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa - -//Widescreen hack 16:9 +author=Arapapa +description=Renders the game in 16:9 aspect ratio //Zoom //803f013c 00508144 c2190646 @@ -31,5 +30,5 @@ patch=1,EE,0044f520,word,080f72cd //00000000 [60 FPS] author=PeterDelta -comment=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,004B2C98,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLUS-20787_9B85B093.pnach b/patches/SLUS-20787_9B85B093.pnach index b989c4a5..ebd34ff7 100644 --- a/patches/SLUS-20787_9B85B093.pnach +++ b/patches/SLUS-20787_9B85B093.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown - Here Comes the Pain (NTSC-U) (SLUS-20787) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001040e4,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLUS-20788_515245DF.pnach b/patches/SLUS-20788_515245DF.pnach new file mode 100644 index 00000000..d098a78c --- /dev/null +++ b/patches/SLUS-20788_515245DF.pnach @@ -0,0 +1,6 @@ +gametitle=Ford Racing 2 NTSC-U SLUS-20788 515245DF + +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00221748,word,2C420001 //2C420002 \ No newline at end of file diff --git a/patches/SLUS-20793_C5DAD771.pnach b/patches/SLUS-20793_C5DAD771.pnach index bc531a49..593fc7cf 100644 --- a/patches/SLUS-20793_C5DAD771.pnach +++ b/patches/SLUS-20793_C5DAD771.pnach @@ -1,4 +1,4 @@ -gametitle=Gladiator - Sword of Vengeance NTSC-U +gametitle=Gladiator - Sword of Vengeance NTSC-U SLUS-20793 C5DAD771 [Widescreen 16:9] gsaspectratio=16:9 @@ -9,4 +9,9 @@ patch=1,EE,20799D30,extended,bfab0000 //hud stretch [Remove Blackbars] description=Removes black bars in cutscenes -patch=1,EE,0028462c,word,3c010000 \ No newline at end of file +patch=1,EE,0028462c,word,3c010000 + +[60 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,0020d97c,word,28420001 //28420002 \ No newline at end of file diff --git a/patches/SLUS-20805_6CC48709.pnach b/patches/SLUS-20805_6CC48709.pnach index 9b006056..70c40623 100644 --- a/patches/SLUS-20805_6CC48709.pnach +++ b/patches/SLUS-20805_6CC48709.pnach @@ -2,7 +2,7 @@ gametitle=Yu Yu Hakusho - Dark Tournament [NTSC-U] (SLUS-20805) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Little Giant +author=Little Giant //16:9 patch=1,EE,00118e08,word,3c0240ab //3c024080 hor diff --git a/patches/SLUS-20807_AF854FA0.pnach b/patches/SLUS-20807_AF854FA0.pnach index 2c52cf41..a772282f 100644 --- a/patches/SLUS-20807_AF854FA0.pnach +++ b/patches/SLUS-20807_AF854FA0.pnach @@ -2,7 +2,7 @@ gametitle=Space Channel 5 - Part 2 (SLUS_20807) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,202E84D4,word,3F400000 diff --git a/patches/SLUS-20809_1025D50A.pnach b/patches/SLUS-20809_1025D50A.pnach index 39a2e1e3..ac96289c 100644 --- a/patches/SLUS-20809_1025D50A.pnach +++ b/patches/SLUS-20809_1025D50A.pnach @@ -2,7 +2,7 @@ gametitle=Godzilla - Save the Earth (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002457ac,word,0812d2c1 // e6000124 diff --git a/patches/SLUS-20810_519E816B.pnach b/patches/SLUS-20810_519E816B.pnach index d025b398..a300beae 100644 --- a/patches/SLUS-20810_519E816B.pnach +++ b/patches/SLUS-20810_519E816B.pnach @@ -2,7 +2,7 @@ gametitle=Nightshade (SLUS-20810) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,00183124,word,3c023f24 patch=1,EE,00183128,word,34428b44 patch=1,EE,0018314c,word,3c023f40 diff --git a/patches/SLUS-20811_CB99CD12.pnach b/patches/SLUS-20811_CB99CD12.pnach index 043b096c..1b79652c 100644 --- a/patches/SLUS-20811_CB99CD12.pnach +++ b/patches/SLUS-20811_CB99CD12.pnach @@ -1,20 +1,31 @@ -gametitle=Need for Speed Underground (SLUS-20811) +gametitle=Need for Speed Underground (SLUS-20811) CB99CD12 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) - -patch=1,EE,004ff434,word,3f400000 -patch=1,EE,004ff628,word,3f2aaaaa -patch=1,EE,004ff630,word,3f2aaaaa - -//FMV's fix -patch=1,EE,00229da8,word,3c01bf2a -patch=1,EE,00229dac,word,44816800 -patch=1,EE,00229ddc,word,46007307 -patch=1,EE,00229de0,word,46006bc7 +author=nemesis2000, ElHecht & PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00438adc,word,3f400000 // 3f800000 +patch=1,EE,00438a14,word,3f400000 // 3f800000 +patch=1,EE,004ff628,word,3f2aaaab // 3f000000 +patch=1,EE,004ff630,word,3f2aaaab // 3f000000 +patch=1,EE,204378E4,extended,3F400000 +patch=1,EE,20437FEC,extended,3F400000 +patch=1,EE,20229DA8,extended,3C01BF28 +patch=1,EE,20229DAC,extended,44816800 +patch=1,EE,20229DDC,extended,46007307 +patch=1,EE,20229DE0,extended,46006BC7 +patch=1,EE,E0040109,extended,01BDED80 +patch=1,EE,20229DA8,extended,3C01BF00 +patch=1,EE,20229DAC,extended,44816000 +patch=1,EE,20229DDC,extended,46006346 +patch=1,EE,20229DE0,extended,460073C6 [60 FPS] author=asasega -comment=Patches the game to run at 60 FPS. -patch=1,EE,2011060C,word,2C420001 +description=Might need EE Overclock at 130%. +patch=1,EE,2011060C,word,2C420001 + +[Remove blur] +author=PeterDelta +description=Remove blur effect +patch=1,EE,204D9D10,word,00000000 \ No newline at end of file diff --git a/patches/SLUS-20812_96C20D6F.pnach b/patches/SLUS-20812_96C20D6F.pnach index 8c46d9bc..3f88cd3a 100644 --- a/patches/SLUS-20812_96C20D6F.pnach +++ b/patches/SLUS-20812_96C20D6F.pnach @@ -2,14 +2,14 @@ gametitle=Dynasty Warriors 4: Xtreme Legends (SLUS-20812) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,001396c0,word,3c0243d6 patch=1,EE,0018e0f0,word,3c023f2b [No-Interlacing] gsinterlacemode=1 -comment=no interlacing by someother1ne +author=someother1ne patch=1,EE,2010211c,word,64420000 patch=1,EE,2010248c,word,64420000 patch=1,EE,2012EE28,word,30420000 diff --git a/patches/SLUS-20818_8371B27B.pnach b/patches/SLUS-20818_8371B27B.pnach index 5f633ebc..24af747c 100644 --- a/patches/SLUS-20818_8371B27B.pnach +++ b/patches/SLUS-20818_8371B27B.pnach @@ -2,7 +2,7 @@ gametitle=Bionicle (NTSC-U) (SLUS-20818) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0010c248,word,3c014370 // 3c0143a0 hor fov diff --git a/patches/SLUS-20820_DE1E4DEE.pnach b/patches/SLUS-20820_DE1E4DEE.pnach index 6024a8fe..e0767d57 100644 --- a/patches/SLUS-20820_DE1E4DEE.pnach +++ b/patches/SLUS-20820_DE1E4DEE.pnach @@ -2,7 +2,7 @@ gametitle=Tom Clancy's Ghost Recon: Jungle Storm (SLUS-20820) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //sp patch=1,EE,0051f798,word,3c023f40 diff --git a/patches/SLUS-20822_8745F0BA.pnach b/patches/SLUS-20822_8745F0BA.pnach index 8014dda7..b994d3c8 100644 --- a/patches/SLUS-20822_8745F0BA.pnach +++ b/patches/SLUS-20822_8745F0BA.pnach @@ -2,7 +2,7 @@ gametitle=Galactic Wrestling - Featuring Ultimate Muscle (U)(SLUS-20822) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20828_38BD8D2E.pnach b/patches/SLUS-20828_38BD8D2E.pnach index 13356fa8..ae670545 100644 --- a/patches/SLUS-20828_38BD8D2E.pnach +++ b/patches/SLUS-20828_38BD8D2E.pnach @@ -2,6 +2,6 @@ gametitle=ShellShock - Nam '67 (NTSC-U) SLUS-20828 38BD8D2E [60 FPS] author=PeterDelta -comment=Unlocked at 60 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,E0010001,extended,0013B5E8 patch=1,EE,202994C8,extended,2C420001 //2C420002 \ No newline at end of file diff --git a/patches/SLUS-20831_0F932D81.pnach b/patches/SLUS-20831_0F932D81.pnach index 6853638e..476b2540 100644 --- a/patches/SLUS-20831_0F932D81.pnach +++ b/patches/SLUS-20831_0F932D81.pnach @@ -2,7 +2,7 @@ gametitle=Tokyo Xtreme Racer 3 (SLUS-20831) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00141248,word,3c043f53 patch=1,EE,00141250,word,34883333 diff --git a/patches/SLUS-20831_0F9348FF.pnach b/patches/SLUS-20831_0F9348FF.pnach index 4916f127..5d8105c7 100644 --- a/patches/SLUS-20831_0F9348FF.pnach +++ b/patches/SLUS-20831_0F9348FF.pnach @@ -2,7 +2,7 @@ gametitle=Tokyo Xtreme Racer 3 (SLUS-20831) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00141248,word,3c043f53 patch=1,EE,00141250,word,34883333 diff --git a/patches/SLUS-20836_B871C1D0.pnach b/patches/SLUS-20836_B871C1D0.pnach index dcaaa5e3..914330f8 100644 --- a/patches/SLUS-20836_B871C1D0.pnach +++ b/patches/SLUS-20836_B871C1D0.pnach @@ -2,7 +2,7 @@ gametitle=Digimon World 4 (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001b6d78,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLUS-20842_6F096BCE.pnach b/patches/SLUS-20842_6F096BCE.pnach index c0baf571..505e73e8 100644 --- a/patches/SLUS-20842_6F096BCE.pnach +++ b/patches/SLUS-20842_6F096BCE.pnach @@ -2,7 +2,7 @@ gametitle=The Sims - Bustin' Out (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20845_D6D704BB.pnach b/patches/SLUS-20845_D6D704BB.pnach index db6dbaf1..2e3644e7 100644 --- a/patches/SLUS-20845_D6D704BB.pnach +++ b/patches/SLUS-20845_D6D704BB.pnach @@ -2,7 +2,7 @@ gametitle=Cold Winter (SLUS-20845) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,003c4cf4,word,3c013f40 patch=1,EE,003c4cfc,word,44810800 diff --git a/patches/SLUS-20846_B96EDBE5.pnach b/patches/SLUS-20846_B96EDBE5.pnach index 97f170bc..d1b2627c 100644 --- a/patches/SLUS-20846_B96EDBE5.pnach +++ b/patches/SLUS-20846_B96EDBE5.pnach @@ -2,7 +2,7 @@ gametitle=Strike Force Bowling (U)(SLUS-20846) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20847_448F4B67.pnach b/patches/SLUS-20847_448F4B67.pnach index 211fbcbb..2493eebc 100644 --- a/patches/SLUS-20847_448F4B67.pnach +++ b/patches/SLUS-20847_448F4B67.pnach @@ -2,7 +2,7 @@ gametitle=La Pucelle - Tactics [NTSC-U] (SLUS_208.47) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00108B1C,word,3C013F40 //00000000 Hor fov 2D Backgrounds diff --git a/patches/SLUS-20850_71584BAC.pnach b/patches/SLUS-20850_71584BAC.pnach index 07d61e4e..8934e7ed 100644 --- a/patches/SLUS-20850_71584BAC.pnach +++ b/patches/SLUS-20850_71584BAC.pnach @@ -2,7 +2,7 @@ gametitle=Blowout (SLUS-20850) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,001D1A3C,word,00000000 patch=1,EE,003BB878,word,00000001 diff --git a/patches/SLUS-20851_39B574F0.pnach b/patches/SLUS-20851_39B574F0.pnach index a630cf9b..dfcea5e1 100644 --- a/patches/SLUS-20851_39B574F0.pnach +++ b/patches/SLUS-20851_39B574F0.pnach @@ -2,7 +2,7 @@ gametitle=Ace Combat 5: The Unsung War (SLUS-20851) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //widescreen fix patch=1,EE,00440828,word,43D638F3 diff --git a/patches/SLUS-20857_7AB8929F.pnach b/patches/SLUS-20857_7AB8929F.pnach index d1dbfb76..c87db81c 100644 --- a/patches/SLUS-20857_7AB8929F.pnach +++ b/patches/SLUS-20857_7AB8929F.pnach @@ -2,7 +2,7 @@ gametitle=Fight Club (U)(SLUS-20857) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20860_8AD8BA91.pnach b/patches/SLUS-20860_8AD8BA91.pnach index 49fbf9ca..96dca1ff 100644 --- a/patches/SLUS-20860_8AD8BA91.pnach +++ b/patches/SLUS-20860_8AD8BA91.pnach @@ -2,7 +2,7 @@ gametitle=Tim Burton's The Nightmare Before Christmas (NTSC-U)(SLUS-20860) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20864_BC204346.pnach b/patches/SLUS-20864_BC204346.pnach index c38307a8..e9cbd679 100644 --- a/patches/SLUS-20864_BC204346.pnach +++ b/patches/SLUS-20864_BC204346.pnach @@ -2,7 +2,7 @@ gametitle=The Punisher (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,0042d2d0,word,3fdba5e3 // 3fa4bc6a ver fov diff --git a/patches/SLUS-20864_BC2043A7.pnach b/patches/SLUS-20864_BC2043A7.pnach index 82d6df34..e942be64 100644 --- a/patches/SLUS-20864_BC2043A7.pnach +++ b/patches/SLUS-20864_BC2043A7.pnach @@ -2,7 +2,7 @@ gametitle=The Punisher (NTSC-U) [SLUS-20864] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,0042d2d0,word,3fdba5e3 // 3fa4bc6a ver fov diff --git a/patches/SLUS-20865_BA1727D6.pnach b/patches/SLUS-20865_BA1727D6.pnach index 397ea299..d937f9e7 100644 --- a/patches/SLUS-20865_BA1727D6.pnach +++ b/patches/SLUS-20865_BA1727D6.pnach @@ -2,7 +2,7 @@ gametitle=Backyard Baseball (U)(SLUS-20865) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20868_753A1E73.pnach b/patches/SLUS-20868_753A1E73.pnach index 4cc78fe3..294c6721 100644 --- a/patches/SLUS-20868_753A1E73.pnach +++ b/patches/SLUS-20868_753A1E73.pnach @@ -2,7 +2,7 @@ gametitle=MVP Baseball 2004 (NTSC-U)(SLUS-20868) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20869_759F05CB.pnach b/patches/SLUS-20869_759F05CB.pnach new file mode 100644 index 00000000..a062f03b --- /dev/null +++ b/patches/SLUS-20869_759F05CB.pnach @@ -0,0 +1,14 @@ +gametitle=Judge Dredd - Dredd vs. Death (NTSC-U) SLUS-20869 759F05CB + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Enable native widescreen +patch=1,EE,0033D400,word,3FE38E39 +patch=1,EE,0033D404,word,00000001 +patch=1,EE,0033EDB4,word,00010000 + +[60 FPS] +author=PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,00194F3C,word,14600009 //10600009 \ No newline at end of file diff --git a/patches/SLUS-20870_FDD12792.pnach b/patches/SLUS-20870_FDD12792.pnach index 6314a99b..b97c401d 100644 --- a/patches/SLUS-20870_FDD12792.pnach +++ b/patches/SLUS-20870_FDD12792.pnach @@ -18,7 +18,7 @@ gametitle=Ultimate Spider-Man (U)(SLUS-20870) and (E)(SLES-53391) // Ultimate Sp [60 FPS] author=PeterDelta and asasega -description=Unlocked at 60 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00311F18,word,00000000 patch=1,EE,0069FE20,word,00000001 patch=1,EE,E0020001,extended,01C82AA0 diff --git a/patches/SLUS-20875_9798D85A.pnach b/patches/SLUS-20875_9798D85A.pnach index 5654dc02..0b277a1e 100644 --- a/patches/SLUS-20875_9798D85A.pnach +++ b/patches/SLUS-20875_9798D85A.pnach @@ -1,8 +1,11 @@ -gametitle=Predator Concrete Jungle SLUS_208.75 - -[Widescreen 16:9] -gsaspectratio=16:9 -comment=Widescreen Hack -patch=1,EE,0035d014,extended,3c013f10 - - +gametitle=Predator Concrete Jungle SLUS_208.75 + +[Widescreen 16:9] +gsaspectratio=16:9 +comment=Widescreen Hack +patch=1,EE,0035d014,extended,3c013f10 + +[60 FPS] +author=asasega +description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,2044E0D0,extended,0000003C //0000001E \ No newline at end of file diff --git a/patches/SLUS-20876_D158BC15.pnach b/patches/SLUS-20876_D158BC15.pnach index 307a6126..6b6a75a0 100644 --- a/patches/SLUS-20876_D158BC15.pnach +++ b/patches/SLUS-20876_D158BC15.pnach @@ -2,7 +2,7 @@ gametitle=Backyard Football 2006 (U)(SLUS-20876) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20878_CF11CD83.pnach b/patches/SLUS-20878_CF11CD83.pnach index 543cecd5..7a0bd119 100644 --- a/patches/SLUS-20878_CF11CD83.pnach +++ b/patches/SLUS-20878_CF11CD83.pnach @@ -2,7 +2,7 @@ gametitle=Samurai Warriors (NTSC-U) (SLUS-20878) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,0013eb18,word,3c024328 // 3c024360 zoom diff --git a/patches/SLUS-20880_CC955736.pnach b/patches/SLUS-20880_CC955736.pnach index c1a3f4b4..2cddba9f 100644 --- a/patches/SLUS-20880_CC955736.pnach +++ b/patches/SLUS-20880_CC955736.pnach @@ -2,7 +2,7 @@ gametitle=The Fairly OddParents! Shadow Showdown (U)(SLUS-20880) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20881_7C22850A.pnach b/patches/SLUS-20881_7C22850A.pnach index 28b91df3..95dfc77a 100644 --- a/patches/SLUS-20881_7C22850A.pnach +++ b/patches/SLUS-20881_7C22850A.pnach @@ -2,7 +2,7 @@ gametitle=Mortal Kombat: Deception (SLUS-20881) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //zoom for arcade mode (widescreen) patch=1,EE,00222144,word,3c0342c0 diff --git a/patches/SLUS-20882_3569E863.pnach b/patches/SLUS-20882_3569E863.pnach index 8c10afa5..c48ce686 100644 --- a/patches/SLUS-20882_3569E863.pnach +++ b/patches/SLUS-20882_3569E863.pnach @@ -2,7 +2,7 @@ gametitle=Hitman - Contracts (SLUS_20882, SLES_52135) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002659d8,word,3c013f10 // 3c013f40 ver fov diff --git a/patches/SLUS-20883_21CC1EC3.pnach b/patches/SLUS-20883_21CC1EC3.pnach index 19892119..9c6b5d9b 100644 --- a/patches/SLUS-20883_21CC1EC3.pnach +++ b/patches/SLUS-20883_21CC1EC3.pnach @@ -2,7 +2,7 @@ gametitle=Tom Clancy's Rainbow Six 3 (SLKA-25173) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by nemesis2000 (NTSC-K by Arapapa) +author=nemesis2000 (NTSC-K by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLUS-20884_94C56923.pnach b/patches/SLUS-20884_94C56923.pnach index efdf3528..2afcb79d 100644 --- a/patches/SLUS-20884_94C56923.pnach +++ b/patches/SLUS-20884_94C56923.pnach @@ -2,10 +2,8 @@ gametitle=Spyro: A Hero's Tail (SLUS-20884) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen - -//Widescreen + Extra Perspective -patch=1,EE,203B1B70,extended,3C013F10 -patch=2,EE,203B1B84,extended,3C013F10 - - +author=Brandondorf9999 & CRASHARKI +description=Patches the game to run at 16:9 Widescreen Aspect Ratio. +patch=1,EE,003B1B20,extended,3C013F40 //3C013F80 // Fix some 3D HUD elements +patch=1,EE,003B1B70,extended,3C013F10 //3C013F40 +patch=2,EE,003B1B84,extended,3C013F10 //3C013F40 \ No newline at end of file diff --git a/patches/SLUS-20887_058849D1.pnach b/patches/SLUS-20887_058849D1.pnach index 60d56c1c..b7803d68 100644 --- a/patches/SLUS-20887_058849D1.pnach +++ b/patches/SLUS-20887_058849D1.pnach @@ -2,7 +2,7 @@ gametitle=The Adventures of Jimmy Neutron Boy Genius - Attack of the Twonkies (U [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20889_46EDB9B8.pnach b/patches/SLUS-20889_46EDB9B8.pnach index 63b0168b..8dd1f37e 100644 --- a/patches/SLUS-20889_46EDB9B8.pnach +++ b/patches/SLUS-20889_46EDB9B8.pnach @@ -2,7 +2,7 @@ gametitle=MLB SlugFest - Loaded (U)(SLUS-20889) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20890_166EC9E6.pnach b/patches/SLUS-20890_166EC9E6.pnach index cff5343b..69f97354 100644 --- a/patches/SLUS-20890_166EC9E6.pnach +++ b/patches/SLUS-20890_166EC9E6.pnach @@ -2,7 +2,7 @@ gametitle=Rocky - Legends (NTSC-U)(SLUS-20890) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20892_EB39ABEC.pnach b/patches/SLUS-20892_EB39ABEC.pnach index b7ca569e..59c43237 100644 --- a/patches/SLUS-20892_EB39ABEC.pnach +++ b/patches/SLUS-20892_EB39ABEC.pnach @@ -2,7 +2,7 @@ gametitle=Xenosaga Episode II: Jenseits von Gut und Böse (Disc 1) (SLUS-20892) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,2069B784,extended,4182e8ba // original value 41445d17 diff --git a/patches/SLUS-20893_158FA006.pnach b/patches/SLUS-20893_158FA006.pnach new file mode 100644 index 00000000..4a3d7a0c --- /dev/null +++ b/patches/SLUS-20893_158FA006.pnach @@ -0,0 +1,9 @@ +gametitle= Way Of The Samurai 2 (NTSC-U) SLUS-20893 158FA006 (Undub) + +[Widescreen 16:9] +gsaspectratio=16:9 +author=VIRGIN KLM + +//Widescreen - 3D Elements +patch=1,EE,002F5F20,word,3F400000 // 3F800000 +patch=1,EE,00165b2c,word,3c033fab //3c033f80 \ No newline at end of file diff --git a/patches/SLUS-20893_1B3EDC36.pnach b/patches/SLUS-20893_1B3EDC36.pnach index 9b2227cc..12b9a13b 100644 --- a/patches/SLUS-20893_1B3EDC36.pnach +++ b/patches/SLUS-20893_1B3EDC36.pnach @@ -2,7 +2,7 @@ gametitle= Way Of The Samurai 2 (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment= Widescreen Hack by VIRGIN KLM +author=VIRGIN KLM //Widescreen - 3D Elements patch=1,EE,002F5F20,word,3F400000 // 3F800000 diff --git a/patches/SLUS-20894_97E76C44.pnach b/patches/SLUS-20894_97E76C44.pnach index 0fba053d..c9e71567 100644 --- a/patches/SLUS-20894_97E76C44.pnach +++ b/patches/SLUS-20894_97E76C44.pnach @@ -2,7 +2,7 @@ gametitle=Worms 3D (U)(SLUS-20894) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas & Arapapa +author=El_Patas & Arapapa //Widescreen hack 16:9 patch=1,EE,002e0e34,word,3c013f40 diff --git a/patches/SLUS-20896_0EF16A99.pnach b/patches/SLUS-20896_0EF16A99.pnach index 49c9336b..7a2a1b0e 100644 --- a/patches/SLUS-20896_0EF16A99.pnach +++ b/patches/SLUS-20896_0EF16A99.pnach @@ -2,7 +2,7 @@ gametitle=Monster Hunter (SLUS-20896) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00137ed4,word,3c023ff3 patch=1,EE,00137edc,word,3442cf35 diff --git a/patches/SLUS-20901_E0127F2D.pnach b/patches/SLUS-20901_E0127F2D.pnach index 3f2a45ae..e0e9652e 100644 --- a/patches/SLUS-20901_E0127F2D.pnach +++ b/patches/SLUS-20901_E0127F2D.pnach @@ -1,11 +1,17 @@ -gametitle=FlatOut SLUS_209.01 +gametitle=FlatOut (NTSC-U) SLUS-20901 E0127F2D [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack -patch=1,EE,001ad904,word,3c013fab -//patch=1,EE,0028ee60,word,3C013F19 -patch=1,EE,0018e380,word,3c013fab -patch=1,EE,0031a934,word,3ee80000 - +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,0019FBFC,extended,3C013F40 +patch=1,EE,001A0AAC,extended,3C013F40 +patch=1,EE,0022C170,extended,3C013F40 +patch=1,EE,0028EE60,extended,3C013F1C +[60 FPS] +author=asasega & Gabominated +description=Might need EE Overclock at 130%. +patch=1,EE,2034E97C,extended,00000001 //00000002 +patch=1,EE,E0010001,extended,00444010 +patch=1,EE,2034E97C,extended,00000002 \ No newline at end of file diff --git a/patches/SLUS-20903_C3553F46.pnach b/patches/SLUS-20903_C3553F46.pnach index 3eb3444f..da91522b 100644 --- a/patches/SLUS-20903_C3553F46.pnach +++ b/patches/SLUS-20903_C3553F46.pnach @@ -2,7 +2,7 @@ gametitle=Mega Man X: Command Mission (SLUS-20903) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0010ea24,word,3c013f40 //hor value patch=1,EE,0010ea28,word,44810000 diff --git a/patches/SLUS-20905_EBDB6E4B.pnach b/patches/SLUS-20905_EBDB6E4B.pnach index dce1a72f..5752572b 100644 --- a/patches/SLUS-20905_EBDB6E4B.pnach +++ b/patches/SLUS-20905_EBDB6E4B.pnach @@ -2,7 +2,7 @@ gametitle=The Incredibles [NTSC-U] (SLUS-20905) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Sergx12 +author=sergx12 //Gameplay 16:9 patch=1,EE,001fe8e4,word,3c023f1C //3C023F00 Zoom diff --git a/patches/SLUS-20907_155466E8.pnach b/patches/SLUS-20907_155466E8.pnach index 3dc89339..ad600ec8 100644 --- a/patches/SLUS-20907_155466E8.pnach +++ b/patches/SLUS-20907_155466E8.pnach @@ -2,7 +2,7 @@ gametitle=Serious Sam: Next Encounter (SLUS-20907) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0015d81c,word,8e440000 patch=1,EE,0015d820,word,3c100034 diff --git a/patches/SLUS-20912_8201A07C.pnach b/patches/SLUS-20912_8201A07C.pnach index 0ba14df9..b412290d 100644 --- a/patches/SLUS-20912_8201A07C.pnach +++ b/patches/SLUS-20912_8201A07C.pnach @@ -2,7 +2,7 @@ gametitle=Suzuki TT Super Bikes - Real Road Racing (NTSC-U)(SLUS-20912) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 (Memory Hack) //0000803f d7a3703f diff --git a/patches/SLUS-20915_AA31B5BF.pnach b/patches/SLUS-20915_AA31B5BF.pnach index e134eb9c..300d4058 100644 --- a/patches/SLUS-20915_AA31B5BF.pnach +++ b/patches/SLUS-20915_AA31B5BF.pnach @@ -1,10 +1,9 @@ -gametitle=MGS3 NTSC U SLUS_209.15 +//gametitle=MGS3 NTSC U SLUS_209.15 -[Widescreen 16:9] -gsaspectratio=16:9 -comment=MGS3 (NTSC-U) Widescreen Patches by Acem +//[Widescreen 16:9] +//gsaspectratio=16:9 +//comment=MGS3 (NTSC-U) Widescreen Patches by Acem +//Disabled due to breaking multiple effects and water refractions. // 16:9 -patch=1,EE,2020247c,extended,3F400000 - - +//patch=1,EE,2020247c,extended,3F400000 \ No newline at end of file diff --git a/patches/SLUS-20919_42F9D5AF.pnach b/patches/SLUS-20919_42F9D5AF.pnach index 58e62690..43fe834e 100644 --- a/patches/SLUS-20919_42F9D5AF.pnach +++ b/patches/SLUS-20919_42F9D5AF.pnach @@ -2,7 +2,7 @@ gametitle=ESPN NFL 2K5 (U)(SLUS-20919) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20920_903C7BC5.pnach b/patches/SLUS-20920_903C7BC5.pnach index 7ca458d7..02b1d878 100644 --- a/patches/SLUS-20920_903C7BC5.pnach +++ b/patches/SLUS-20920_903C7BC5.pnach @@ -2,7 +2,7 @@ gametitle=ESPN NBA 2K5 (U)(SLUS-20920) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20921_9B6E69EC.pnach b/patches/SLUS-20921_9B6E69EC.pnach index a0131451..9acc8cac 100644 --- a/patches/SLUS-20921_9B6E69EC.pnach +++ b/patches/SLUS-20921_9B6E69EC.pnach @@ -2,7 +2,7 @@ gametitle=ESPN NHL 2K5 (U)(SLUS-20921) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas & Arapapa +author=El_Patas & Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20923_833DDCD5.pnach b/patches/SLUS-20923_833DDCD5.pnach index 6748973d..37d96e9d 100644 --- a/patches/SLUS-20923_833DDCD5.pnach +++ b/patches/SLUS-20923_833DDCD5.pnach @@ -2,7 +2,7 @@ gametitle=The King of Fighters: Maximum Impact (SLUS-20923) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,00384384,word,3c043f24 diff --git a/patches/SLUS-20924_C949BD58.pnach b/patches/SLUS-20924_C949BD58.pnach index b345e123..8ee6ab58 100644 --- a/patches/SLUS-20924_C949BD58.pnach +++ b/patches/SLUS-20924_C949BD58.pnach @@ -2,7 +2,7 @@ gametitle=Duel Masters (U)(SLUS-20924) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20925_C5535BB8.pnach b/patches/SLUS-20925_C5535BB8.pnach new file mode 100644 index 00000000..695c66e9 --- /dev/null +++ b/patches/SLUS-20925_C5535BB8.pnach @@ -0,0 +1,25 @@ +gametitle=DreamWorks Shark Tale (NTSC-U) SLUS-20925 C5535BB8 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=Arapapa & PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00135CA0,word,0806C8D4 +patch=1,EE,001B2350,word,46000346 +patch=1,EE,001B2354,word,3C013F40 +patch=1,EE,001B2358,word,4481F000 +patch=1,EE,001B235C,word,461E6B43 +patch=1,EE,001B2360,word,0804D729 +patch=1,EE,0029E3E0,word,3C013F80 +patch=1,EE,0027A6A0,word,3C013F80 +//patch=1,EE,001D3030,word,3C013F40 //render not necesary in this version, just in case +patch=1,EE,E0020001,extended,00483E98 +patch=1,EE,0029E3E0,extended,3C013FAB +patch=1,EE,0027A6A0,extended,3C013F84 + +[60 FPS] +author=PeterDelta +description=Might need EE Overclock +patch=1,EE,0034AAE4,extended,00000001 +patch=1,EE,E0010001,extended,00333E10 +patch=1,EE,0034AAE4,extended,00000002 \ No newline at end of file diff --git a/patches/SLUS-20928_2DE16D21.pnach b/patches/SLUS-20928_2DE16D21.pnach index 6eb6f28c..42c7fe72 100644 --- a/patches/SLUS-20928_2DE16D21.pnach +++ b/patches/SLUS-20928_2DE16D21.pnach @@ -1,8 +1,8 @@ -gametitle=Echo Night - Beyond (U)(SLUS-20928) +gametitle=Echo Night - Beyond NTSC-U SLUS-20928 2DE16D21 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -14,12 +14,13 @@ patch=1,EE,202ADC01,byte,00000001 //patch=1,EE,00143d10,word,3c033fa0 //3c023f70 Y-Fov patch=1,EE,00143d14,word,3c023f1f //3c023f00 Zoom - -[No-Interlacing] +[60 FPS] +author=asasega gsinterlacemode=1 -comment=No-Interlacing + 60FPS by asasega - -//No Interlacing + 60FPS +description=60 FPS + No interlacing. Might need EE Overclock. patch=1,EE,0013FFDC,word,10000014 - +[Performance Fix] +author=Red-tv +description=Remove flashlight shadows to increase performance. +patch=1,EE,00144034,word,3c020000 //3c023f80 \ No newline at end of file diff --git a/patches/SLUS-20930_56E9A705.pnach b/patches/SLUS-20930_56E9A705.pnach index fd466695..07f91e13 100644 --- a/patches/SLUS-20930_56E9A705.pnach +++ b/patches/SLUS-20930_56E9A705.pnach @@ -2,7 +2,7 @@ gametitle=ChoroQ (U)(SLUS-20930) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20938_BD3DBCF9.pnach b/patches/SLUS-20938_BD3DBCF9.pnach index 6334534c..730be208 100644 --- a/patches/SLUS-20938_BD3DBCF9.pnach +++ b/patches/SLUS-20938_BD3DBCF9.pnach @@ -2,14 +2,14 @@ gametitle=Dynasty Warriors 4: Empires (SLUS-20938) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,00139b54,word,3c0243d6 patch=1,EE,00188da0,word,3c023f2b [No-Interlacing] gsinterlacemode=1 -comment=no interlacing by someother1ne +author=someother1ne patch=1,EE,2010211c,word,64420000 patch=1,EE,2010248c,word,64420000 patch=1,EE,2012F038,word,30420000 diff --git a/patches/SLUS-20940_63F6B523.pnach b/patches/SLUS-20940_63F6B523.pnach index 0dfa8a66..bab59f1d 100644 --- a/patches/SLUS-20940_63F6B523.pnach +++ b/patches/SLUS-20940_63F6B523.pnach @@ -2,7 +2,7 @@ gametitle=Yu-Gi-Oh! Capsule Monster Coliseum (U)(SLUS-20940) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20942_5931A065.pnach b/patches/SLUS-20942_5931A065.pnach index b63fe73b..aeeab036 100644 --- a/patches/SLUS-20942_5931A065.pnach +++ b/patches/SLUS-20942_5931A065.pnach @@ -2,7 +2,7 @@ gametitle=Robots (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20943_83FB515E.pnach b/patches/SLUS-20943_83FB515E.pnach index 787ddbb1..3056accb 100644 --- a/patches/SLUS-20943_83FB515E.pnach +++ b/patches/SLUS-20943_83FB515E.pnach @@ -2,7 +2,7 @@ gametitle=Heroes of the Pacific (U)(SLUS-20943) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -17,4 +17,12 @@ patch=1,EE,001481a0,word,461e0843 // 00000000 patch=1,EE,001481a4,word,e6010068 // 00000000 patch=1,EE,001481a8,word,0806ec74 // 00000000 - +[60 FPS] +author=Gabominated +description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,001CA814,word,10000007 //10400007 +patch=1,EE,E0043D08,extended,0067D8B2 +patch=1,EE,1067D8B2,extended,00003C88 +patch=1,EE,1067D8B6,extended,00003C88 +patch=1,EE,1067D8BA,extended,00003C88 +patch=1,EE,1067D8BE,extended,00003C88 diff --git a/patches/SLUS-20944_024BF3B4.pnach b/patches/SLUS-20944_024BF3B4.pnach new file mode 100644 index 00000000..84b5b826 --- /dev/null +++ b/patches/SLUS-20944_024BF3B4.pnach @@ -0,0 +1,10 @@ +gametitle=Power Rangers - Dino Thunder NTSC-U SLUS-20944 024BF3B4 + +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,20532110,extended,00000001 +patch=1,EE,E0010001,extended,003F8878 +patch=1,EE,20532110,extended,00000002 +patch=1,EE,E0010001,extended,0053AA10 +patch=1,EE,20532110,extended,00000002 \ No newline at end of file diff --git a/patches/SLUS-20946_399A49CA.pnach b/patches/SLUS-20946_399A49CA.pnach index ba309627..199e3fba 100644 --- a/patches/SLUS-20946_399A49CA.pnach +++ b/patches/SLUS-20946_399A49CA.pnach @@ -2,7 +2,7 @@ gametitle=Grand Theft Auto: San Andreas (SLUS-20946GH) / Ver 1.03 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (pnach by nemesis2000), port by flameofrecca +author=nemesis2000, port by flameofrecca //widescreen fix patch=1,EE,001130BC,word,3C013F9D @@ -25,3 +25,8 @@ description=Removes the radiosity filter which causes a ghosting effect on the p //Remove Radiosity Filter patch=1,EE,20519FD8,extended,00000000 + +[60 FPS] +author=asasega +comment=Make sure you set your EE Cycle Rate to 130-180% +patch=1,EE,006678CC,extended,00000001 \ No newline at end of file diff --git a/patches/SLUS-20947_A90B7E3F.pnach b/patches/SLUS-20947_A90B7E3F.pnach index 2be77687..23e53629 100644 --- a/patches/SLUS-20947_A90B7E3F.pnach +++ b/patches/SLUS-20947_A90B7E3F.pnach @@ -2,7 +2,7 @@ gametitle=WinBack 2 - Project Poseidon (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002e6ff0,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLUS-20955_B43000A1.pnach b/patches/SLUS-20955_B43000A1.pnach index fbdbdac1..12cdb347 100644 --- a/patches/SLUS-20955_B43000A1.pnach +++ b/patches/SLUS-20955_B43000A1.pnach @@ -2,7 +2,7 @@ gametitle=Phantom Brave [NTSC-U] (SLUS_209.55) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00105654,word,3C013F40 //00000000 (Increases hor. axis) diff --git a/patches/SLUS-20956_A1736B07.pnach b/patches/SLUS-20956_A1736B07.pnach index 4f3e114c..c2744457 100644 --- a/patches/SLUS-20956_A1736B07.pnach +++ b/patches/SLUS-20956_A1736B07.pnach @@ -2,7 +2,7 @@ gametitle=Leisure Suit Larry - Magna Cum Laude (NTSC-U) (SLUS-20956) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002e4850,word,080fb09a // 46020082 jump to code-inject 003ec268 diff --git a/patches/SLUS-20957_C3ACD5FA.pnach b/patches/SLUS-20957_C3ACD5FA.pnach index 460aeaa5..7b93195c 100644 --- a/patches/SLUS-20957_C3ACD5FA.pnach +++ b/patches/SLUS-20957_C3ACD5FA.pnach @@ -2,7 +2,7 @@ gametitle=Scaler (U)(SLUS-20957) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht //Widescreen hack 16:9 patch=1,EE,0021b9dc,word,080bd30c // e4a10000 diff --git a/patches/SLUS-20958_0277247B.pnach b/patches/SLUS-20958_0277247B.pnach index 9a67e484..ae236643 100644 --- a/patches/SLUS-20958_0277247B.pnach +++ b/patches/SLUS-20958_0277247B.pnach @@ -3,7 +3,7 @@ gametitle=Splinter Cell - Pandora Tomorrow (NTSC-U) SLUS-20958 0277247B SC2A.ELF [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio patch=1,EE,001b771c,word,14400005 patch=1,EE,001b7720,word,3c040048 patch=1,EE,001b7724,word,0c088178 @@ -92,7 +92,7 @@ patch=1,EE,001b786c,word,ae03008c patch=1,EE,001b7870,word,3c033f80 patch=1,EE,001b7874,word,ae030090 -[50 FPS] +[60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,0018D7AC,word,00000000 //1440FFFA \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,0018D778,word,24030001 //24030002 \ No newline at end of file diff --git a/patches/SLUS-20958_AEE8FDC4.pnach b/patches/SLUS-20958_AEE8FDC4.pnach index 6414e384..018e1c5e 100644 --- a/patches/SLUS-20958_AEE8FDC4.pnach +++ b/patches/SLUS-20958_AEE8FDC4.pnach @@ -4,8 +4,8 @@ gametitle=Tom Clancy's Splinter Cell: Pandora Tomorrow (SLUS_20958) AEE8FDC4 [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -comment=Renders the game in 16:9 aspect ratio +description=Renders the game in 16:9 aspect ratio -[50 FPS] +[60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. \ No newline at end of file +description=Might need EE Overclock at 130%. \ No newline at end of file diff --git a/patches/SLUS-20960_196DF4E5.pnach b/patches/SLUS-20960_196DF4E5.pnach index 88232f5c..2c261164 100644 --- a/patches/SLUS-20960_196DF4E5.pnach +++ b/patches/SLUS-20960_196DF4E5.pnach @@ -2,7 +2,7 @@ gametitle=Mega Man X8 (SLUS-20960) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0010f10c,word,3c013f40 //hor value patch=1,EE,0010f110,word,44810000 diff --git a/patches/SLUS-20963_0779FBDB.pnach b/patches/SLUS-20963_0779FBDB.pnach index cf614ab2..becbfe16 100644 --- a/patches/SLUS-20963_0779FBDB.pnach +++ b/patches/SLUS-20963_0779FBDB.pnach @@ -1,7 +1,7 @@ [Widescreen 16:9] gsaspectratio=16:9 comment=Final Fantasy XII (SLUS-20963) -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //widescreen fix patch=1,EE,00180388,word,3C013f80 diff --git a/patches/SLUS-20967_81D233DC.pnach b/patches/SLUS-20967_81D233DC.pnach index b5694097..e0be76a0 100644 --- a/patches/SLUS-20967_81D233DC.pnach +++ b/patches/SLUS-20967_81D233DC.pnach @@ -2,7 +2,7 @@ gametitle=Enthusia - Professional Racing (SLUS_20967) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,20383708,word,3F400000 diff --git a/patches/SLUS-20975_B049DD5E.pnach b/patches/SLUS-20975_B049DD5E.pnach index fca76aa4..f068406b 100644 --- a/patches/SLUS-20975_B049DD5E.pnach +++ b/patches/SLUS-20975_B049DD5E.pnach @@ -2,7 +2,7 @@ gametitle=Shonen Jump's One Piece Grand Battle [NTSC-U] (SLUS-20975) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //16:9 patch=1,EE,003f5898,word,3F400000 //3f800000 diff --git a/patches/SLUS-20979_E2984005.pnach b/patches/SLUS-20979_E2984005.pnach index 8ea50393..e5c7e58f 100644 --- a/patches/SLUS-20979_E2984005.pnach +++ b/patches/SLUS-20979_E2984005.pnach @@ -1,7 +1,7 @@ [Widescreen 16:9] gsaspectratio=16:9 comment=Suikoden IV (SLUS-20979) -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0048845c,word,3c013f40 //hor value patch=1,EE,00488460,word,44810000 diff --git a/patches/SLUS-20981_EE628509.pnach b/patches/SLUS-20981_EE628509.pnach index 9bedce4c..44443396 100644 --- a/patches/SLUS-20981_EE628509.pnach +++ b/patches/SLUS-20981_EE628509.pnach @@ -10,6 +10,7 @@ patch=1,EE,00234cc0,extended,34428e38 [60 FPS] author=Gabominated description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,E0010002,extended,00552874 -patch=1,EE,10552874,extended,00000001 //00000002 //fps +patch=1,EE,E0030002,extended,00552874 +patch=1,EE,10552874,extended,00000001 //04000002 //fps patch=1,EE,20552F00,extended,3c888889 //3d088889 //speed +patch=1,EE,20552efc,extended,42700000 //41F00000 diff --git a/patches/SLUS-20982_8AD9D4B1.pnach b/patches/SLUS-20982_8AD9D4B1.pnach index 06c69b00..0777ce4f 100644 --- a/patches/SLUS-20982_8AD9D4B1.pnach +++ b/patches/SLUS-20982_8AD9D4B1.pnach @@ -2,7 +2,7 @@ gametitle=Bad Boys - Miami Takedown (U)(SLUS-20982) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLUS-20989_4AC5A94B.pnach b/patches/SLUS-20989_4AC5A94B.pnach index dc597d5a..20f0b00b 100644 --- a/patches/SLUS-20989_4AC5A94B.pnach +++ b/patches/SLUS-20989_4AC5A94B.pnach @@ -1,8 +1,8 @@ -gametitle=Polar Express, The (U)(SLUS-20989) +gametitle=The Polar Express NTSC-U SLUS-20989 4AC5A94B [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -18,4 +18,7 @@ patch=1,EE,002f1760,word,461e0843 // 00000000 patch=1,EE,002f1764,word,e6010068 // 00000000 patch=1,EE,002f1768,word,080d1e19 // 00000000 - +[60 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,00352AB8,word,24020002 //24020001 \ No newline at end of file diff --git a/patches/SLUS-20992_E3DF71E1.pnach b/patches/SLUS-20992_E3DF71E1.pnach index 1b973650..ff7616ac 100644 --- a/patches/SLUS-20992_E3DF71E1.pnach +++ b/patches/SLUS-20992_E3DF71E1.pnach @@ -2,7 +2,7 @@ gametitle=Catwoman (U)(SLUS-20992) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-20993_29C7DA54.pnach b/patches/SLUS-20993_29C7DA54.pnach new file mode 100644 index 00000000..4baf81ae --- /dev/null +++ b/patches/SLUS-20993_29C7DA54.pnach @@ -0,0 +1,8 @@ +gametitle=Ghosthunters SLUS-20993 29C7DA54 + +[60 FPS] +author=asasega & Gabominated +description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,2056A1F0,extended,00000001 //00000002 +patch=1,EE,E0010001,extended,00651FE0 +patch=1,EE,2056A1F0,extended,00000002 diff --git a/patches/SLUS-21002_88A808FA.pnach b/patches/SLUS-21002_88A808FA.pnach index c49b192d..0982ea4d 100644 --- a/patches/SLUS-21002_88A808FA.pnach +++ b/patches/SLUS-21002_88A808FA.pnach @@ -2,7 +2,7 @@ gametitle=Tiger Woods PGA Tour 2005 (NTSC-U) (SLUS-21002) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by VIRGIN KLM, pandubz, Willpower +author=VIRGIN KLM, pandubz, Willpower //Widescreen hack 16:9 diff --git a/patches/SLUS-21006_95CC86EF.pnach b/patches/SLUS-21006_95CC86EF.pnach new file mode 100644 index 00000000..1a0576be --- /dev/null +++ b/patches/SLUS-21006_95CC86EF.pnach @@ -0,0 +1,6 @@ +gametitle=Ghost in the Shell - Stand Alone Complex [SLUS_21006] [95CC86EF] + +[60 FPS] +author=asasega +description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,20392f7C,extended,00000001 //00000002 diff --git a/patches/SLUS-21008_FA7E3081.pnach b/patches/SLUS-21008_FA7E3081.pnach index 15762145..c920721a 100644 --- a/patches/SLUS-21008_FA7E3081.pnach +++ b/patches/SLUS-21008_FA7E3081.pnach @@ -2,7 +2,7 @@ gametitle=Katamari Damacy (SLUS-21008) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,00168550,word,3c0143d6 //FMV's fix diff --git a/patches/SLUS-21011_F1F4D83F.pnach b/patches/SLUS-21011_F1F4D83F.pnach index a10d75b8..cf76cb2f 100644 --- a/patches/SLUS-21011_F1F4D83F.pnach +++ b/patches/SLUS-21011_F1F4D83F.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's Deer Hunt - 2005 Season (U)(SLUS-21011) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Zoom diff --git a/patches/SLUS-21014_D3C57C9C.pnach b/patches/SLUS-21014_D3C57C9C.pnach index 58a6968b..aaf3aae6 100644 --- a/patches/SLUS-21014_D3C57C9C.pnach +++ b/patches/SLUS-21014_D3C57C9C.pnach @@ -2,7 +2,7 @@ gametitle=High Rollers Casino (U)(SLUS-21014) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21015_09052A4D.pnach b/patches/SLUS-21015_09052A4D.pnach index a680498b..df96e58f 100644 --- a/patches/SLUS-21015_09052A4D.pnach +++ b/patches/SLUS-21015_09052A4D.pnach @@ -3,7 +3,7 @@ gametitle=DreamWorks Madagascar (U)(SLUS-21015) 09052A4D [Widescreen 16:9] gsaspectratio=16:9 author=Arapapa -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio //Zoom //003f013c 00008144 3c008cc4 patch=1,EE,0014a0e0,word,3c013f21 //3c013f00 @@ -18,6 +18,6 @@ patch=1,EE,00117290,word,080a2073 [60 FPS] author=PeterDelta -comment=Unlocked at 60 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,004B0304,byte,01 patch=1,EE,003469C4,byte,77 \ No newline at end of file diff --git a/patches/SLUS-21016_C1B141D6.pnach b/patches/SLUS-21016_C1B141D6.pnach index 61bf24e6..d90a0ce9 100644 --- a/patches/SLUS-21016_C1B141D6.pnach +++ b/patches/SLUS-21016_C1B141D6.pnach @@ -2,7 +2,7 @@ gametitle=25 to Life (U)(SLUS-21016) //[Widescreen 16:9] //gsaspectratio=16:9 -//comment=Widescreen Hack by Arapapa +//author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21017_E90F7B89.pnach b/patches/SLUS-21017_E90F7B89.pnach index 04b3b21c..f8f6a429 100644 --- a/patches/SLUS-21017_E90F7B89.pnach +++ b/patches/SLUS-21017_E90F7B89.pnach @@ -2,7 +2,7 @@ gametitle=Showdown - Legends of Wrestling (U)(SLUS-21017) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21020_83C9749E.pnach b/patches/SLUS-21020_83C9749E.pnach index 6f17427b..99285f52 100644 --- a/patches/SLUS-21020_83C9749E.pnach +++ b/patches/SLUS-21020_83C9749E.pnach @@ -2,7 +2,7 @@ gametitle=Gungrave Overdose (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa // 16:9 (search 00000000 00000000 43ad1346 00000000) patch=1,EE,00288904,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLUS-21021_B005AE6B.pnach b/patches/SLUS-21021_B005AE6B.pnach index f26ec280..6e0f6038 100644 --- a/patches/SLUS-21021_B005AE6B.pnach +++ b/patches/SLUS-21021_B005AE6B.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's Big Game Hunter 2005 Adventures (U) [SLUS-21021] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21022_6B17B39F.pnach b/patches/SLUS-21022_6B17B39F.pnach index 54e091c3..2f4b1e52 100644 --- a/patches/SLUS-21022_6B17B39F.pnach +++ b/patches/SLUS-21022_6B17B39F.pnach @@ -3,7 +3,7 @@ gametitle=Prince of Persia: Warrior Within (SLUS-21022) [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -comment=Widescreen hack +description=Renders the game in 16:9 aspect ratio //gameplay patch=1,EE,00544dd4,word,3C023f40 @@ -29,4 +29,10 @@ patch=1,EE,0019e564,word,3464dddd [60 FPS] author=asasega comment=Unlocked at 60 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,007B7F6C,word,00000001 \ No newline at end of file +patch=1,EE,007B7F6C,word,00000001 + + +[Remove Blur/Bloom] +author=fobes +description=Removes the post-processing blur/bloom effect +patch=1,EE,005379D4,word,00000000 diff --git a/patches/SLUS-21027_EB198738.pnach b/patches/SLUS-21027_EB198738.pnach index 7e1952fd..df9320cb 100644 --- a/patches/SLUS-21027_EB198738.pnach +++ b/patches/SLUS-21027_EB198738.pnach @@ -1,4 +1,4 @@ -gametitle=The Lord of the Rings - The Third Age (NTSC-U) +gametitle=The Lord of the Rings - The Third Age (NTSC-U) EB198738 [Widescreen 16:9] gsaspectratio=16:9 @@ -10,5 +10,6 @@ patch=1,EE,20C37598,word,3fb00000 //render fix 2 [60 FPS] author=PeterDelta -comment=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,001C36EC,word,00000000 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,001C36EC,word,00000000 +patch=1,EE,0027A3B8,word,3C013F00 \ No newline at end of file diff --git a/patches/SLUS-21028_215DB422.pnach b/patches/SLUS-21028_215DB422.pnach index 880b7d83..5d1b875f 100644 --- a/patches/SLUS-21028_215DB422.pnach +++ b/patches/SLUS-21028_215DB422.pnach @@ -2,7 +2,7 @@ gametitle=World Championship Poker (U)(SLUS-21028) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21029_0DD3417A.pnach b/patches/SLUS-21029_0DD3417A.pnach index be1705f6..3cd940d9 100644 --- a/patches/SLUS-21029_0DD3417A.pnach +++ b/patches/SLUS-21029_0DD3417A.pnach @@ -3,10 +3,10 @@ gametitle=Midnight Club 3 - DUB Edition (NTSC-U) SLUS-21029 0DD3417A v2.0 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio -patch=1,EE,00617EC0,word,3FC71CEB //3F955554 +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00617EC0,word,3FC71C66 //3F955554 [60 FPS] author=PeterDelta -comment=Unlocked at 60 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,00617F30,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLUS-21029_4A0E5B3A.pnach b/patches/SLUS-21029_4A0E5B3A.pnach index 0437bce1..4de0e1ca 100644 --- a/patches/SLUS-21029_4A0E5B3A.pnach +++ b/patches/SLUS-21029_4A0E5B3A.pnach @@ -3,10 +3,10 @@ gametitle=Midnight Club 3 - DUB Edition (NTSC-U) SLUS-21029 4A0E5B3A v1.0 [Widescreen 16:9] gsaspectratio=16:9 author=PeterDelta -comment=Renders the game in 16:9 aspect ratio -patch=1,EE,00617AB0,word,3FC71CEB //3F955554 +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00617AB0,word,3FC71C66 //3F955554 [60 FPS] author=PeterDelta -comment=Unlocked at 60 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,00617AB4,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLUS-21031_157ECF54.pnach b/patches/SLUS-21031_157ECF54.pnach index 93bcdff9..9700d56a 100644 --- a/patches/SLUS-21031_157ECF54.pnach +++ b/patches/SLUS-21031_157ECF54.pnach @@ -2,7 +2,7 @@ gametitle=Gallop Racer 2004 (U)(SLUS-21031) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21032_1CF99B88.pnach b/patches/SLUS-21032_1CF99B88.pnach index b02201dc..5db72f56 100644 --- a/patches/SLUS-21032_1CF99B88.pnach +++ b/patches/SLUS-21032_1CF99B88.pnach @@ -8,5 +8,5 @@ patch=1,EE,0056764c,word,3c023f40 [60 FPS] author=PeterDelta -comment=Unlocked at 60 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,001CC728,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLUS-21033_16E3BE78.pnach b/patches/SLUS-21033_16E3BE78.pnach index 2564b8a1..f7f63862 100644 --- a/patches/SLUS-21033_16E3BE78.pnach +++ b/patches/SLUS-21033_16E3BE78.pnach @@ -2,7 +2,7 @@ gametitle=Second Sight (SLUS_21033) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,20500C14,word,3FC71C71 patch=1,EE,20500C94,word,3FC71C71 diff --git a/patches/SLUS-21037_2BDA8ADB.pnach b/patches/SLUS-21037_2BDA8ADB.pnach index 888311cc..4145e0fd 100644 --- a/patches/SLUS-21037_2BDA8ADB.pnach +++ b/patches/SLUS-21037_2BDA8ADB.pnach @@ -1,15 +1,11 @@ -gametitle=Project - Snowblind (NTSC-U) - -[Widescreen 16:9] -gsaspectratio=16:9 -author=ElHecht -comment=Widescreen Hack -// 16:9 single player mode -//patch=1,EE,001d87b8,word,3c013fe3 //3c013faa -//patch=1,EE,001d87bc,word,34218e39 //3421aaab -//patch=1,EE,003327f0,word,3c013fe3 //3c013faa -//patch=1,EE,003327f4,word,34218e39 //3421aaab - -//Causes a crash on Level 2. - - +gametitle=Project - Snowblind SLUS-21037 2BDA8ADB secundary crc 7849F069 +//Corresponds to the main crc to activate the secondary crc 7849F069 called B03GM.ELF + +[Widescreen 16:9] +gsaspectratio=16:9 +author=Gabominated +description=Widescreen Hack + +[60 FPS] +author=asasega & Gabominated +description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. diff --git a/patches/SLUS-21037_7849F069.pnach b/patches/SLUS-21037_7849F069.pnach new file mode 100644 index 00000000..72d6087d --- /dev/null +++ b/patches/SLUS-21037_7849F069.pnach @@ -0,0 +1,14 @@ +gametitle=Project - Snowblind SLUS-21037 2BDA8ADB secundary crc 7849F069 +//Game changes ELF when select single player to BO3GM.ELF with active CRC 7849F069 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=Gabominated +description=Widescreen Hack +patch=1,EE,0090E9F4,word,3Fe38e39 //3FAAAAAB //x-fov +patch=1,EE,00B764F4,word,3Fe38e39 //3FAAAAAB //cutscenes + +[60 FPS] +author=asasega & Gabominated +description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,002d4c04,word,2c620000 //0062102B diff --git a/patches/SLUS-21042_327053E8.pnach b/patches/SLUS-21042_327053E8.pnach index c6c53a57..5953b1e8 100644 --- a/patches/SLUS-21042_327053E8.pnach +++ b/patches/SLUS-21042_327053E8.pnach @@ -2,7 +2,7 @@ gametitle=gametitle=Darkwatch (SLUS-21042) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,00641770,word,3faaaaaa diff --git a/patches/SLUS-21043_DEEC725E.pnach b/patches/SLUS-21043_DEEC725E.pnach index e01f3ad3..d67b9e85 100644 --- a/patches/SLUS-21043_DEEC725E.pnach +++ b/patches/SLUS-21043_DEEC725E.pnach @@ -2,7 +2,7 @@ gametitle=Backyard Wrestling 2 - There Goes the Neighborhood (U)(SLUS-21043) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21045_CC6CBF20.pnach b/patches/SLUS-21045_CC6CBF20.pnach index 49689172..8883cbad 100644 --- a/patches/SLUS-21045_CC6CBF20.pnach +++ b/patches/SLUS-21045_CC6CBF20.pnach @@ -2,7 +2,7 @@ gametitle=Conflict - Vietnam (U)(SLUS-21045) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21050_BEBF8793.pnach b/patches/SLUS-21050_BEBF8793.pnach index 5a1df725..51137046 100644 --- a/patches/SLUS-21050_BEBF8793.pnach +++ b/patches/SLUS-21050_BEBF8793.pnach @@ -1,33 +1,28 @@ +gametitle=Burnout 3: Takedown (U) (SLUS-21050) + [Widescreen 16:9] -description=Renders the game in 16:9 aspect ratio, instead of 4:3. -author=Aero_ gsaspectratio=16:9 -// Burnout 3: Takedown (SLUS-21050) -// Widescreen Fix (v2.0) by Aero_ - +author=Aero_ +description=Corrects the aspect ratio of the FOV, HUD, and FMVs for 16:9. // FOV (16:9) - patch=1,EE,00665ECD,byte,01 // enables widescreen FOV values patch=1,EE,204E0A38,extended,3FAAAAAB // FOV (Single Player) // 16:9 = 1.33333 patch=1,EE,204E0C70,extended,3FE38E39 // Aspect Ratio (Single Player) // 16:9 = 1.77778 patch=1,EE,204E0C7C,extended,3FE38E39 // FOV (Multiplayer) // 16:9 = 1.77778 patch=1,EE,204E0C80,extended,40638E39 // Aspect Ratio (Multiplayer) // 16:9 = 3.55556 - // HUD (16:9) - patch=1,EE,204E105C,extended,3A99999A // HUD Width // 16:9 = 0.00117188 -patch=1,EE,206682B0,extended,42A00000 // HUD X Pos // 16:9 = +80 -patch=1,EE,20669B30,extended,42A00000 // HUD X Pos // 16:9 = +80 -patch=1,EE,204B7688,extended,3F98F5C3 // HUD Top Right X Pos // 16:9 = +0.195 -patch=1,EE,204B7678,extended,3F98F5C3 // HUD Bottom Right X Pos // 16:9 = +0.195 -patch=1,EE,204B7658,extended,BE47AE14 // HUD Top Left X Pos // 16:9 = -0.195 -patch=1,EE,204B7668,extended,BE47AE14 // HUD Bottom Left X Pos // 16:9 = -0.195 +patch=1,EE,206682B0,extended,42A00000 // HUD X Pos // 16:9 = +80 (Player 1) +patch=1,EE,20669B30,extended,42A00000 // HUD X Pos // 16:9 = +80 (Player 2) +patch=1,EE,204B7688,extended,3F9947AE // HUD Top Right X Pos // 16:9 = +0.1975 +patch=1,EE,204B7678,extended,3F9947AE // HUD Bottom Right X Pos // 16:9 = +0.1975 +patch=1,EE,204B7658,extended,BE4A3D71 // HUD Top Left X Pos // 16:9 = -0.1975 +patch=1,EE,204B7668,extended,BE4A3D71 // HUD Bottom Left X Pos // 16:9 = -0.1975 patch=1,EE,204CA660,extended,44555555 // Crash Cam Border Width patch=1,EE,204CA640,extended,44555555 // Crash Cam Border Width patch=1,EE,204CA650,extended,44555555 // Crash Cam Border Width patch=1,EE,204CA638,extended,c2d70000 // Crash Cam Border X Pos // 16:9 = -0.107.5 patch=1,EE,204CA658,extended,c2d70000 // Crash Cam Border X Pos // 16:9 = -0.107.5 - patch=1,EE,203D7238,extended,3C024456 // Crash Cam List Backing Width // only change the last four bytes // 16:9 = 854 patch=1,EE,203D70BC,extended,08121630 // jumps to code cave patch=1,EE,204858C0,extended,3C08C2D7 // Crash Cam List Backing X Pos // only change the last four bytes // 16:9 = -0.107.5 @@ -37,9 +32,25 @@ patch=1,EE,203D72F4,extended,08121633 // jumps to code cave patch=1,EE,204858CC,extended,3C19C2D7 // Crash Cam List Text X Pos // -0.107.5 for 16:9; only change the last four bytes patch=1,EE,204858D0,extended,44991000 // moves new x pos value patch=1,EE,204858D4,extended,080F5CBE // jumps back - +patch=1,EE,201A176C,short,4456 // HUD Render Width (Player 1) // 16:9 = 854 +patch=1,EE,201A17D0,short,4456 // HUD Render Width (Player 2) // 16:9 = 854 +patch=1,EE,201A1774,extended,08121672 // jumps to code cave +patch=1,EE,204859C8,extended,AfA200A0 // saves width value +patch=1,EE,204859CC,extended,3C02C2D7 // HUD Render X Pos (Player 1) // only change the last four bytes // 16:9 = -0.107.5 +patch=1,EE,204859D0,extended,AFA200A8 // saves new x pos value +patch=1,EE,204859D4,extended,080685DE // jumps back +patch=1,EE,201A17D8,extended,08121676 // jumps to code cave +patch=1,EE,204859D8,extended,AFA20090 // saves width value +patch=1,EE,204859DC,extended,3C02C2D7 // HUD Render X Pos (Player 2) // only change the last four bytes // 16:9 = -0.107.5 +patch=1,EE,204859E0,extended,AFA20098 // saves new x pos value +patch=1,EE,204859E4,extended,080685F7 // jumps back +patch=1,EE,20134F2C,short,4456 // "Get Ready! GO" Width // 16:9 = 854 +patch=1,EE,20134F74,extended,0812166E // jumps to code cave +patch=1,EE,204859B8,extended,AFA20174 // saves y pos value +patch=1,EE,204859BC,extended,3C023EC0 // "Get Ready! GO" X Pos // only change the last four bytes // 16:9 = 0.375 +patch=1,EE,204859C0,extended,AFA20168 // saves new x pos value +patch=1,EE,204859C4,extended,0804D3DE // jumps back // Menus (16:9) - patch=1,EE,2030D7E4,short,43F0 // Menu Width // 16:9 = 480 patch=1,EE,2030D834,extended,08121636 // jumps to code cave patch=1,EE,204858D8,extended,E4830008 // saves width value @@ -47,10 +58,8 @@ patch=1,EE,204858DC,extended,3C1942A0 // Menu X Pos // only change the last four patch=1,EE,204858E0,extended,44991800 // moves new x pos value patch=1,EE,204858E4,extended,E4830000 // saves new x pos value patch=1,EE,204858E8,extended,080C360E // jumps back - patch=1,EE,204D1570,extended,44555555 // Car Select Overlay Width // 16:9 = 853.3 patch=1,EE,204D1568,extended,C2D70000 // Car Select Overlay X Pos // 16:9 = -107.5 - patch=1,EE,2031B180,short,4456 // Top Border Width // 16:9 = 854 patch=1,EE,2031B1F4,extended,0812163B // jumps to code cave patch=1,EE,204858EC,extended,3C190000 // Top Border X Pos // only change the last four bytes // 16:9 = 0 (4:3 = 80) @@ -58,7 +67,6 @@ patch=1,EE,204858F0,extended,44993800 // moves new x pos value patch=1,EE,204858F4,extended,E4870000 // saves new x pos value patch=1,EE,204858F8,extended,C4850004 // original code patch=1,EE,204858FC,extended,080C6C7E // jumps back - patch=1,EE,2038AE00,short,4456 // Bottom Border Width // 16:9 = 854 patch=1,EE,2038AE38,short,4456 // Bottom Border Width // 16:9 = 854 patch=1,EE,2038AE4C,extended,08121640 // jumps to code cave @@ -69,7 +77,6 @@ patch=1,EE,2038AE04,extended,08121643 // jumps to code cave patch=1,EE,2048590C,extended,3C193E00 // Bottom Border X Pos // only change the last four bytes // 16:9 = 0.125 patch=1,EE,20485910,extended,AFB90078 // saves new x pos value patch=1,EE,20485914,extended,080E2B82 // jumps back - patch=1,EE,2031D6E4,short,4456 // Checkerboard Width // 16:9 = 854 patch=1,EE,2031D73C,short,4456 // Checkerboard Width // 16:9 = 854 patch=1,EE,2031D7E8,short,4456 // Checkerboard Width // 16:9 = 854 @@ -95,41 +102,53 @@ patch=1,EE,2031D854,extended,08121652 // jumps to code cave patch=1,EE,20485948,extended,3C193E00 // Bottom Middle Checkerboard X Pos // only change the last four bytes // 16:9 = 0.125 patch=1,EE,2048594C,extended,AFB900B0 // saves new x pos value patch=1,EE,20485950,extended,080C7616 // jumps back - patch=1,EE,2031DA20,short,4456 // Loading Background Width // 16:9 = 854 patch=1,EE,2031DA40,extended,08121655 // jumps to code cave patch=1,EE,20485954,extended,3C19C2D7 // Loading Background X Pos // only change the last four bytes // 16:9 = -107.5 patch=1,EE,20485958,extended,AFB901D8 // saves new x pos value patch=1,EE,2048595C,extended,080C7691 // jumps back +patch=1,EE,203A6984,short,4456 // Replay Top Bar Width // 16:9 = 854 +patch=1,EE,203A6998,extended,08121668 // jumps to code cave +patch=1,EE,204859A0,extended,3C19C2D7 // Replay Top Bar X Pos // only change the last four bytes // 16:9 = -107.5 +patch=1,EE,204859A4,extended,AFB90078 // saves new x pos value +patch=1,EE,204859A8,extended,080E9A67 // jumps back +patch=1,EE,203A69C8,short,4456 // Replay Bottom Bar Width // 16:9 = 854 +patch=1,EE,203A69DC,extended,0812166B // jumps to code cave +patch=1,EE,204859AC,extended,3C19C2D7 // Replay Bottom Bar X Pos // only change the last four bytes // 16:9 = -107.5 +patch=1,EE,204859B0,extended,AFB90060 // saves new x pos value +patch=1,EE,204859B4,extended,080E9A78 // jumps back +patch=1,EE,204E0C3C,extended,3FE38E39 // Globe Aspect Ratio // 16:9 = 1.777777791 +patch=1,EE,204E0A94,extended,3FB8E38F // Globe Glow Aspect Ratio // 16:9 = 1.444444537 [60 FPS for Menus] -description=Menus will render at 60 FPS author=Nehalem - -patch=1,EE,201D3F2C,extended,1000000A -patch=1,EE,20130DD8,extended,C7958074 -patch=1,EE,20130DDC,extended,3C084000 -patch=1,EE,20130DE0,extended,4488A000 -patch=1,EE,20130DE4,extended,4614AD03 -patch=1,EE,20130DE8,extended,00000000 +description=Menus will render at 60 FPS +// 60 FPS in menus only +patch=0,EE,201D3F2C,extended,1000000A +// Fix FMVs playback speed while using 60 FPS patches +patch=0,EE,20130DD8,extended,C7958074 +patch=0,EE,20130DDC,extended,3C084000 +patch=0,EE,20130DE0,extended,4488A000 +patch=0,EE,20130DE4,extended,4614AD03 +patch=0,EE,20130DE8,extended,00000000 [60 FPS for Crashes] -description=Crashes will render at 60 FPS -author=Unknown - -patch=1,EE,204E17DC,extended,01800001 // Frame Rate -patch=1,EE,2051BAC4,byte,01 // Game Speed -patch=1,EE,00132F64,extended,00000000 +author=Nehalem +description=Enable 60 FPS in crashes +patch=0,EE,201320D8,extended,1000004B [Progressive Scan] -description=Always ask for 480p mode during boot author=Nehalem - -patch=1,EE,20437758,extended,100000F1 +description=Always ask for 480p mode during boot +patch=0,EE,20437758,extended,100000F1 [MPH to KPH] -description=Change speedometer unit from MPH to KPH author=Nehalem +description=Change speedometer unit from MPH to KPH +patch=0,EE,101A3BA0,extended,000082F0 +patch=0,EE,101A3D78,extended,000007D7 -patch=1,EE,101A3BA0,extended,000082F0 -patch=1,EE,101A3D78,extended,000007D7 \ No newline at end of file +[Extra Particles While Driving] +author=Nehalem +description=Render all extra particles while driving +patch=0,EE,20261E6C,extended,24120001 diff --git a/patches/SLUS-21058_3DF2B0BE.pnach b/patches/SLUS-21058_3DF2B0BE.pnach index 33464d39..3c67544e 100644 --- a/patches/SLUS-21058_3DF2B0BE.pnach +++ b/patches/SLUS-21058_3DF2B0BE.pnach @@ -2,7 +2,7 @@ gametitle=NBA Live 2005 (U)(SLUS-21058) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21059_652050D2.pnach b/patches/SLUS-21059_652050D2.pnach index 39c14a65..fbdfcea8 100644 --- a/patches/SLUS-21059_652050D2.pnach +++ b/patches/SLUS-21059_652050D2.pnach @@ -2,7 +2,7 @@ gametitle=Tekken 5 (SLUS-21059) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0032b448,word,3c013f40 // both fov+ diff --git a/patches/SLUS-21064_3BEBCCAC.pnach b/patches/SLUS-21064_3BEBCCAC.pnach index eb870636..9396005c 100644 --- a/patches/SLUS-21064_3BEBCCAC.pnach +++ b/patches/SLUS-21064_3BEBCCAC.pnach @@ -2,6 +2,6 @@ gametitle=GoldenEye - Rogue Agent (NTSC-U) SLUS-21064 3BEBCCAC [60 FPS] author=PeterDelta -comment=Unlocked at 60 FPS. Might need enable 180% EE Overclock to be stable. +description=Might need EE Overclock at 180%. patch=1,EE,001223F4,word,2C420001 //2C420002 patch=1,EE,00100030,word,3E800000 //3F000000 \ No newline at end of file diff --git a/patches/SLUS-21065_F5C7B45F.pnach b/patches/SLUS-21065_F5C7B45F.pnach new file mode 100644 index 00000000..f4d4415d --- /dev/null +++ b/patches/SLUS-21065_F5C7B45F.pnach @@ -0,0 +1,111 @@ +gametitle=Need for Speed: Underground 2 * NTSC-U * SLUS-21065 * F5C7B45F + +[60 FPS] +author=asasega +comment=Might need EE overclocking to be stable (180%). Speeds up in-game cutscenes. +patch=1,EE,201D7ED4,word,2C420001 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PsxFan107 +description=Corrects native 16:9 aspect ratio (includes native 4:3 fix). +//Icons fix +patch=1,EE,001CCAF4,word,0C0ED18B +patch=1,EE,003B462C,word,3C03004C +patch=1,EE,003B4630,word,E474D848 +patch=1,EE,003B4634,word,03E00008 +patch=1,EE,003B4638,word,2404001A +//Aspect ratio +patch=1,EE,0056FB44,word,3F5B8D14 // Corrected 4:3 aspect +patch=1,EE,0056FB48,word,3F24A9CF // Corrected 16:9 aspect +patch=1,EE,0056FBF4,word,3F154000 // Corrected 4:3 rendering +patch=1,EE,0056FBF8,word,3F470000 // Corrected 16:9 rendering + +[Widescreen 16:10] +gsaspectratio=Stretch +author=PsxFan107 & pgert +description=Alters native Widescreen to 16:10. +comment=Combining with other Aspect Ratio hacks may cause problems. +//Icons fix +patch=1,EE,001CCAF4,word,0C0ED18B +patch=1,EE,003B462C,word,3C03004C +patch=1,EE,003B4630,word,E474D848 +patch=1,EE,003B4634,word,03E00008 +patch=1,EE,003B4638,word,2404001A +//Aspect ratio +patch=1,EE,0056FB48,word,3F36F590 +patch=1,EE,0056FBF8,word,3F331999 + +[Widescreen 15:10] +gsaspectratio=Stretch +author=PsxFan107 & pgert +description=Alters native Widescreen to 15:10. +comment=Combining with other Aspect Ratio hacks may cause problems. +//Icons fix +patch=1,EE,001CCAF4,word,0C0ED18B +patch=1,EE,003B462C,word,3C03004C +patch=1,EE,003B4630,word,E474D848 +patch=1,EE,003B4634,word,03E00008 +patch=1,EE,003B4638,word,2404001A +//Aspect ratio +patch=1,EE,0056FB48,word,3F432811 +patch=1,EE,0056FBF8,word,3F27E800 + +[Widescreen 20:9] +gsaspectratio=Stretch +author=PsxFan107 & pgert +description=Alters native Widescreen to 20:9. +comment=Combining with other Aspect Ratio hacks may cause problems. +//Icons fix +patch=1,EE,001CCAF4,word,0C0ED18B +patch=1,EE,003B462C,word,3C03004C +patch=1,EE,003B4630,word,E474D848 +patch=1,EE,003B4634,word,03E00008 +patch=1,EE,003B4638,word,2404001A +//Aspect ratio +patch=1,EE,0056FB48,word,3F03BB0C +patch=1,EE,0056FBF8,word,3F78C000 + +[Disable Screen Filter] +author=kozarovv +description=Removes the exclusive PS2 filter and fixes car smearing in menus. This option also removes Motion Blur. +//Screenspace filter +patch=1,EE,001D3930,word,03e00008 +patch=1,EE,001D3934,word,0 +//Motion blur +patch=1,EE,00570098,word,0 + +[Disable Fog] +author=kozarovv +description=Completely removes ambient and rain fog. +patch=1,EE,0057004C,word,0 + +[Disable Motion Blur Effect] +author=kozarovv +description=Disables the smear while accelerating, using Nitro and driving at high speed. +patch=1,EE,00570098,word,0 + +[Less Rain] +author=kozarovv +description=Decreases rain strength (makes it more transparent). +patch=1,EE,00574158,word,40000000 + +[More Rain] +author=kozarovv +description=Makes rain as harsh as a downpour. +patch=1,EE,00574158,word,3e000000 + +[Better Car Brightness] +author=kozarovv +description=Slightly increases shader highlight intensity of all racing/traffic cars. +patch=1,EE,001C2704,word,3C01439F + +[Lower World Lights Flare] +author=kozarovv +description=Makes in-world lights (lamp posts, light fixtures, etc.) less pronounced. +patch=1,EE,001C3EE0,word,3C013F40 + +[Lower Signal Lights Flare] +author=kozarovv +description=Tones down all signal lights, such as traffic light orange/yellow sources. +patch=1,EE,001C3260,word,3C013F50 diff --git a/patches/SLUS-21066_09D35D3F.pnach b/patches/SLUS-21066_09D35D3F.pnach index 1dd0267c..a25b6c82 100644 --- a/patches/SLUS-21066_09D35D3F.pnach +++ b/patches/SLUS-21066_09D35D3F.pnach @@ -2,7 +2,7 @@ gametitle=The Urbz - Sims in the City (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21068_3C8B93DF.pnach b/patches/SLUS-21068_3C8B93DF.pnach index a6200002..c2418a77 100644 --- a/patches/SLUS-21068_3C8B93DF.pnach +++ b/patches/SLUS-21068_3C8B93DF.pnach @@ -2,7 +2,7 @@ gametitle=Vietcong - Purple Haze (U)(SLUS-21068) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21069_16F94F28.pnach b/patches/SLUS-21069_16F94F28.pnach index 56bda9b0..b4380b95 100644 --- a/patches/SLUS-21069_16F94F28.pnach +++ b/patches/SLUS-21069_16F94F28.pnach @@ -2,7 +2,7 @@ gametitle=American Chopper (U)(SLUS-21069) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21072_0199EC27.pnach b/patches/SLUS-21072_0199EC27.pnach index 8071d55c..6e11342c 100644 --- a/patches/SLUS-21072_0199EC27.pnach +++ b/patches/SLUS-21072_0199EC27.pnach @@ -2,7 +2,7 @@ gametitle=Finny the Fish & the Seven Waters (U)(SLUS-21072) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21077_A8C4C0A9.pnach b/patches/SLUS-21077_A8C4C0A9.pnach index 3b7be4dd..89b00d4f 100644 --- a/patches/SLUS-21077_A8C4C0A9.pnach +++ b/patches/SLUS-21077_A8C4C0A9.pnach @@ -2,7 +2,7 @@ gametitle=Gauntlet: Seven Sorrows (SLUS-21077) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00446200,word,24020002 //built in widescreen diff --git a/patches/SLUS-21080_0442B1BD.pnach b/patches/SLUS-21080_0442B1BD.pnach index 83f00a00..6448c0f1 100644 --- a/patches/SLUS-21080_0442B1BD.pnach +++ b/patches/SLUS-21080_0442B1BD.pnach @@ -2,7 +2,7 @@ gametitle=Samurai Warriors: Xtreme Legends (NTSC-U) (SLUS-21080) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (Pnach by Little Giant) +author=ElHecht (Pnach by Little Giant) // 16:9 patch=1,EE,0013fa48,word,3c024328 // 3c024360 diff --git a/patches/SLUS-21082_7A9723B8.pnach b/patches/SLUS-21082_7A9723B8.pnach index 716c4ba9..fe3acd22 100644 --- a/patches/SLUS-21082_7A9723B8.pnach +++ b/patches/SLUS-21082_7A9723B8.pnach @@ -2,5 +2,5 @@ gametitle=Chronicles of Narnia - The Lion Witch and The Wardrobe (NTSC-U) SLUS-2 [60 FPS] author=PeterDelta -comment=Unlocked at 60 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,00171F1C,word,00000000 \ No newline at end of file +description=Might need EE Overclock at 130%. +patch=1,EE,00171F18,word,28420001 //28420002 \ No newline at end of file diff --git a/patches/SLUS-21083_50A57492.pnach b/patches/SLUS-21083_50A57492.pnach index a5cfe80b..22245b55 100644 --- a/patches/SLUS-21083_50A57492.pnach +++ b/patches/SLUS-21083_50A57492.pnach @@ -2,7 +2,7 @@ gametitle=LEGO Star Wars: The Video Game [NTSC-U] (v1.01) (SLUS_210.83) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas and gamemasterplc +author=El_Patas and gamemasterplc patch=1,EE,21F26074,extended,3F100000 //3D and GUI Width patch=1,EE,203407F0,extended,00000355 //Text Viewport Width diff --git a/patches/SLUS-21086_6332499C.pnach b/patches/SLUS-21086_6332499C.pnach index e52ce587..7161f35c 100644 --- a/patches/SLUS-21086_6332499C.pnach +++ b/patches/SLUS-21086_6332499C.pnach @@ -2,7 +2,7 @@ gametitle=Big Mutha Truckers 2 (NTSC-U)(SLUS-21086) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //0000803f(*) 0000803f abaaaa3f(*) diff --git a/patches/SLUS-21088_AD96FA2F.pnach b/patches/SLUS-21088_AD96FA2F.pnach index 17c1d67b..6334e94a 100644 --- a/patches/SLUS-21088_AD96FA2F.pnach +++ b/patches/SLUS-21088_AD96FA2F.pnach @@ -2,7 +2,7 @@ gametitle=Disney's Chicken Little (NTSC-U)(SLUS-21088) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21091_FE0030D6.pnach b/patches/SLUS-21091_FE0030D6.pnach index 9c4d1cc1..bff1bff9 100644 --- a/patches/SLUS-21091_FE0030D6.pnach +++ b/patches/SLUS-21091_FE0030D6.pnach @@ -2,7 +2,7 @@ gametitle=Scooby-Doo! Unmasked (U)(SLUS-21091) and (E)(SLES-53100) //[Widescreen 16:9] //gsaspectratio=16:9 -//comment=Widescreen hack by Arapapa +//author=Arapapa //Widescreen hack 16:9 //Disabled as it causes SPS in the intro and the sewer levels (possibly more). diff --git a/patches/SLUS-21093_A99BACE1.pnach b/patches/SLUS-21093_A99BACE1.pnach index aeed58e3..b01ae5c3 100644 --- a/patches/SLUS-21093_A99BACE1.pnach +++ b/patches/SLUS-21093_A99BACE1.pnach @@ -1,8 +1,8 @@ -gametitle=Worms Forts - Under Siege (U)(SLUS-21093) +gametitle=Worms Forts - Under Siege NTSC-U SLUS-21093 A99BACE1 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -15,4 +15,7 @@ patch=1,EE,001bbb44,word,34214000 //3421fa36 //Y-Fov patch=1,EE,001bbb5c,word,3c013f10 //3c013f40 - +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0057638C,word,00000001 \ No newline at end of file diff --git a/patches/SLUS-21097_383176C2.pnach b/patches/SLUS-21097_383176C2.pnach index 2a11804c..97c7c752 100644 --- a/patches/SLUS-21097_383176C2.pnach +++ b/patches/SLUS-21097_383176C2.pnach @@ -2,7 +2,7 @@ gametitle=MX World Tour featuring Jamie Little (U)(SLUS-21097) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21098_D233C793.pnach b/patches/SLUS-21098_D233C793.pnach index 033b8f5c..a12baba2 100644 --- a/patches/SLUS-21098_D233C793.pnach +++ b/patches/SLUS-21098_D233C793.pnach @@ -2,7 +2,7 @@ gametitle=Frogger - Ancient Shadow (U)(SLUS-21098) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21105_82E1D0EA.pnach b/patches/SLUS-21105_82E1D0EA.pnach index 3153d82d..6833dff8 100644 --- a/patches/SLUS-21105_82E1D0EA.pnach +++ b/patches/SLUS-21105_82E1D0EA.pnach @@ -2,7 +2,7 @@ gametitle=Tom Clancy's Ghost Recon 2 (U) (SLUS_211.05) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //Search value is exactly the same as the Tom Clancy's Ghost Recon diff --git a/patches/SLUS-21107_AEFCA55C.pnach b/patches/SLUS-21107_AEFCA55C.pnach new file mode 100644 index 00000000..9230a92b --- /dev/null +++ b/patches/SLUS-21107_AEFCA55C.pnach @@ -0,0 +1,13 @@ +gametitle=X-Men - The Official Game NTSC-U SLUS-21107 AEFCA55C + +[Widescreen 16:9] +gsaspectratio=16:9 +author=Gabominated +description=Widescreen fix +patch=1,EE,E001E979,extended,00A10970 +patch=1,EE,20A10970,extended,3f400000 //3F46E979 + +[60 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,004A4754,word,42700000 //41f00000 \ No newline at end of file diff --git a/patches/SLUS-21109_0520A26D.pnach b/patches/SLUS-21109_0520A26D.pnach index 74fef40a..e7944c6d 100644 --- a/patches/SLUS-21109_0520A26D.pnach +++ b/patches/SLUS-21109_0520A26D.pnach @@ -2,7 +2,7 @@ gametitle=Drive To Survive (U)(SLUS-21109) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21113_E3981DBB.pnach b/patches/SLUS-21113_E3981DBB.pnach index a9c86b18..9fdaee34 100644 --- a/patches/SLUS-21113_E3981DBB.pnach +++ b/patches/SLUS-21113_E3981DBB.pnach @@ -2,7 +2,7 @@ gametitle=Atelier Iris Eternal Mana (NTSC) (SLUS-21113) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by gamemasterplc +author=gamemasterplc patch=1,EE,2021CFD8,extended,3C0144AB //Zoom-In Battle Camera View patch=1,EE,2024A3C4,extended,08030000 //Jump to Code for Resizing View diff --git a/patches/SLUS-21114_7D9E9D17.pnach b/patches/SLUS-21114_7D9E9D17.pnach index 829183f2..7128c7b3 100644 --- a/patches/SLUS-21114_7D9E9D17.pnach +++ b/patches/SLUS-21114_7D9E9D17.pnach @@ -2,7 +2,7 @@ gametitle=NHRA Championship Drag Racing (U)(SLUS-21114) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21115_21068223.pnach b/patches/SLUS-21115_21068223.pnach index f7fb2789..34c8f68f 100644 --- a/patches/SLUS-21115_21068223.pnach +++ b/patches/SLUS-21115_21068223.pnach @@ -2,7 +2,7 @@ gametitle=Okami (SLUS-21115) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0015c33c,word,3c0143a8 patch=1,EE,0033ec38,word,3c013f9f patch=1,EE,0033ec3c,word,4481a800 diff --git a/patches/SLUS-21117_8B645E10.pnach b/patches/SLUS-21117_8B645E10.pnach index c37729bc..1088fc03 100644 --- a/patches/SLUS-21117_8B645E10.pnach +++ b/patches/SLUS-21117_8B645E10.pnach @@ -2,7 +2,7 @@ gametitle=World Soccer Winning Eleven 8: International [NTSC-U] (SLUS_211.17) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,002D7E30,word,3FAAAAAB //3F800000 (Increases hor. axis) diff --git a/patches/SLUS-21120_2373FD16.pnach b/patches/SLUS-21120_2373FD16.pnach index 90fb0bad..33649df2 100644 --- a/patches/SLUS-21120_2373FD16.pnach +++ b/patches/SLUS-21120_2373FD16.pnach @@ -2,7 +2,7 @@ gametitle=Psychonauts SLUS_211.20 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by pelvicthrustman +author=pelvicthrustman //Widescreen patch=1,EE,001e9fe4,word,3c013f40 //00000000 (horizontal fov) diff --git a/patches/SLUS-21124_FAF7FA20.pnach b/patches/SLUS-21124_FAF7FA20.pnach index 79af5cf7..bdf21d1b 100644 --- a/patches/SLUS-21124_FAF7FA20.pnach +++ b/patches/SLUS-21124_FAF7FA20.pnach @@ -1,11 +1,9 @@ -gametitle=Delta Force - Black Hawk Down (U)(SLUS-21124) +gametitle=Delta Force - Black Hawk Down (U) (SLUS-21124) FAF7FA20 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa - -//Widescreen hack 16:9 - +author=Arapapa +description=Widescreen fix //Y-Fov (4:3) //abaaaa3f 00010000 17d0a63f patch=1,EE,0043a3e0,word,3fe38e39 //3faaaaab @@ -19,4 +17,7 @@ patch=1,EE,00315e68,word,461e6303 patch=1,EE,00315e6c,word,e7ac0000 patch=1,EE,00315e70,word,0806a1d2 - +[50 FPS] +author=PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,001C52C0,word,1460000A \ No newline at end of file diff --git a/patches/SLUS-21125_C5CE56CD.pnach b/patches/SLUS-21125_C5CE56CD.pnach index a7679d0d..a5d751b2 100644 --- a/patches/SLUS-21125_C5CE56CD.pnach +++ b/patches/SLUS-21125_C5CE56CD.pnach @@ -2,7 +2,7 @@ gametitle=Airborne Troops - Countdown to D-Day (U)(SLUS-21125) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21127_17E7E24E.pnach b/patches/SLUS-21127_17E7E24E.pnach index cc90039b..42852cd5 100644 --- a/patches/SLUS-21127_17E7E24E.pnach +++ b/patches/SLUS-21127_17E7E24E.pnach @@ -1,8 +1,19 @@ gametitle=Brave - The Search for Spirit Dancer (NTSC-U) SLUS-21127 17E7E24E +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Enable native widescreen +patch=1,EE,00465BE4,extended,00000001 + +[Remove Blackbars] +author=PeterDelta +description=Removes black bars in cutscenes +patch=1,EE,20402460,extended,00000000 + [60 FPS] author=PeterDelta -comment=Unlocked at 60 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,2033AF04,extended,00000000 +description=Might need EE Overclock (130%). +patch=1,EE,20465C80,extended,3C88888A patch=1,EE,E0010000,extended,003C6D68 -patch=1,EE,2033AF04,extended,1040FFFA \ No newline at end of file +patch=1,EE,20465C80,extended,3D088889 \ No newline at end of file diff --git a/patches/SLUS-21128_5AD4E46F.pnach b/patches/SLUS-21128_5AD4E46F.pnach index d10fa888..d030845e 100644 --- a/patches/SLUS-21128_5AD4E46F.pnach +++ b/patches/SLUS-21128_5AD4E46F.pnach @@ -2,7 +2,7 @@ gametitle=Blitz - The League (U)(SLUS-21128) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21130_E243EA40.pnach b/patches/SLUS-21130_E243EA40.pnach index bc807f54..7cb27b09 100644 --- a/patches/SLUS-21130_E243EA40.pnach +++ b/patches/SLUS-21130_E243EA40.pnach @@ -2,7 +2,7 @@ gametitle=SnoCross 2 - Featuring Blair Morgan (U)(SLUS-21130) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21132_0C5D220A.pnach b/patches/SLUS-21132_0C5D220A.pnach index 6be95423..47a0b48a 100644 --- a/patches/SLUS-21132_0C5D220A.pnach +++ b/patches/SLUS-21132_0C5D220A.pnach @@ -5,4 +5,9 @@ gsaspectratio=16:9 comment=Widescreen Hack patch=1,EE,202f7110,extended,44c00000 // 45000000 - +[No-Interlacing] +author=NineKain +description=Attempts to disable interlaced offset rendering. +gsinterlacemode=1 +//Remove Interlacing +patch=1,EE,001039EC,word,00000000 diff --git a/patches/SLUS-21133_EB39ABEC.pnach b/patches/SLUS-21133_EB39ABEC.pnach index b7ca569e..59c43237 100644 --- a/patches/SLUS-21133_EB39ABEC.pnach +++ b/patches/SLUS-21133_EB39ABEC.pnach @@ -2,7 +2,7 @@ gametitle=Xenosaga Episode II: Jenseits von Gut und Böse (Disc 1) (SLUS-20892) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,2069B784,extended,4182e8ba // original value 41445d17 diff --git a/patches/SLUS-21134_013E349D.pnach b/patches/SLUS-21134_013E349D.pnach new file mode 100644 index 00000000..0121688b --- /dev/null +++ b/patches/SLUS-21134_013E349D.pnach @@ -0,0 +1,24 @@ +gametitle=Resident Evil 4 SLUS-21134 013E349D + +[Widescreen 16:9] +gsaspectratio=16:9 +author=Gabominated +description=Widescreen improvement. +patch=1,EE,20326d78,extended,3f5ced91 //x-fov +patch=1,EE,20250564,extended,3c013f5c +patch=1,EE,20250568,extended,3421ed91 +patch=1,EE,20326d7c,extended,3faaaaab //y-fov +patch=1,EE,20250574,extended,3c013faa +patch=1,EE,20250578,extended,3421aaab +patch=1,EE,2021d26c,extended,3c013f00 +patch=1,EE,202810e0,extended,3c013f80 +patch=1,EE,20430F60,extended,48000000 +patch=1,EE,E0080000,extended,004175AC +patch=1,EE,20326d78,extended,3f25b22d //3f5ced91 +patch=1,EE,20250564,extended,3c013f25 //3c013f5c +patch=1,EE,20250568,extended,3421b22d //3421ed91 +patch=1,EE,20326d7c,extended,3f800000 //3faaaaab +patch=1,EE,20250574,extended,3c013f80 //3c013faa +patch=1,EE,20250578,extended,34210000 //3421aaab +patch=1,EE,2021d26c,extended,3c013f25 //3c013f00 +patch=1,EE,202810e0,extended,3c013f80 //3c013f00 render fix diff --git a/patches/SLUS-21135_0544E001.pnach b/patches/SLUS-21135_0544E001.pnach index 61ff3ec6..fdb0d06a 100644 --- a/patches/SLUS-21135_0544E001.pnach +++ b/patches/SLUS-21135_0544E001.pnach @@ -2,7 +2,7 @@ gametitle=MVP Baseball 2005 (NTSC-U)(SLUS-21135) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21136_EF5B6AAD.pnach b/patches/SLUS-21136_EF5B6AAD.pnach index 25cbd5d7..c4c39571 100644 --- a/patches/SLUS-21136_EF5B6AAD.pnach +++ b/patches/SLUS-21136_EF5B6AAD.pnach @@ -2,7 +2,7 @@ gametitle=Graffiti Kingdom (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21137_CFE85175.pnach b/patches/SLUS-21137_CFE85175.pnach index 1f4c3c84..eead0842 100644 --- a/patches/SLUS-21137_CFE85175.pnach +++ b/patches/SLUS-21137_CFE85175.pnach @@ -2,7 +2,7 @@ gametitle=Tom Clancy's Splinter Cell: Chaos Theory (SLUS_21137) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,001f2904,word,e6600084 patch=1,EE,001f2908,word,3c01007e diff --git a/patches/SLUS-21138_0E707DA4.pnach b/patches/SLUS-21138_0E707DA4.pnach index 95fd068b..d8fa585e 100644 --- a/patches/SLUS-21138_0E707DA4.pnach +++ b/patches/SLUS-21138_0E707DA4.pnach @@ -2,7 +2,7 @@ gametitle=X-Men Legends II - Rise of Apocalypse (NTSC-U)(SLUS-21138) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht (NTSC-U by Arapapa) +author=ElHecht (NTSC-U by Arapapa) //Widescreen hack 16:9 diff --git a/patches/SLUS-21144_A80FBAAC.pnach b/patches/SLUS-21144_A80FBAAC.pnach index 83bbbb43..9e10e493 100644 --- a/patches/SLUS-21144_A80FBAAC.pnach +++ b/patches/SLUS-21144_A80FBAAC.pnach @@ -1,9 +1,9 @@ -gametitle=Tom Clancy's Rainbow Six 3 (SLUS-20883) +gametitle=Tom Clancy's Rainbow Six - Lockdown SLUS-21144 A80FBAAC [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) - -patch=1,EE,0030f100,word,3c023f40 - - +author=Gabominated +description=Widescreen hack +patch=1,EE,002015A4,word,3C014115 //3C0140e0 y-fov +patch=1,EE,00132818,word,3c013F21 //3c013f00 zoom +patch=1,EE,001af8bc,word,3c013f21 //3c013f00 render fix \ No newline at end of file diff --git a/patches/SLUS-21150_C9F6EF9A.pnach b/patches/SLUS-21150_C9F6EF9A.pnach index 80f6c98e..0f1eb47d 100644 --- a/patches/SLUS-21150_C9F6EF9A.pnach +++ b/patches/SLUS-21150_C9F6EF9A.pnach @@ -2,7 +2,7 @@ gametitle=Beat Down - Fists of Vengeance (U) (SLUS-21150) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht (pnach NTSC-U by Arapapa) +author=ElHecht (pnach NTSC-U by Arapapa) //16:9 (42081546 43080046 00000000 00008244 00000000(*) 030b0046 00000000 00000000(*) da95040c 00000000(*)) patch=1,EE,00375388,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLUS-21151_F2A25D7B.pnach b/patches/SLUS-21151_F2A25D7B.pnach index f772472e..018a3ee7 100644 --- a/patches/SLUS-21151_F2A25D7B.pnach +++ b/patches/SLUS-21151_F2A25D7B.pnach @@ -2,7 +2,7 @@ gametitle=Cars (U)(SLUS-21151) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas (NTSC-U by Arapapa) +author=El_Patas (NTSC-U by Arapapa) //Gameplay 16:9 diff --git a/patches/SLUS-21153_6677B437.pnach b/patches/SLUS-21153_6677B437.pnach index 8fa0ef50..b166af25 100644 --- a/patches/SLUS-21153_6677B437.pnach +++ b/patches/SLUS-21153_6677B437.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 5 (SLUS-21153) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,00146c48,word,3c0243d6 patch=1,EE,00181cec,word,3c023f2b patch=1,EE,00146994,word,3c023e40 //cutscenes zoom (fixes Battle of Bai Di Castle - Wu crash) diff --git a/patches/SLUS-21154_467BC7D8.pnach b/patches/SLUS-21154_467BC7D8.pnach index 5103853b..542127cc 100644 --- a/patches/SLUS-21154_467BC7D8.pnach +++ b/patches/SLUS-21154_467BC7D8.pnach @@ -2,7 +2,7 @@ gametitle=Killer 7 (SLUS_21154) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,20DB5688,word,3FE38E38 diff --git a/patches/SLUS-21158_DAEC84E6.pnach b/patches/SLUS-21158_DAEC84E6.pnach index 8c7eb7df..2464f353 100644 --- a/patches/SLUS-21158_DAEC84E6.pnach +++ b/patches/SLUS-21158_DAEC84E6.pnach @@ -2,7 +2,7 @@ gametitle=Rugby 2005 (USA) [SLUS-21158] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21159_AF7BEB14.pnach b/patches/SLUS-21159_AF7BEB14.pnach index d0e82c08..e57068a2 100644 --- a/patches/SLUS-21159_AF7BEB14.pnach +++ b/patches/SLUS-21159_AF7BEB14.pnach @@ -2,7 +2,7 @@ gametitle=Moto GP 4 (U)(SLUS-21159) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21162_9933A1AD.pnach b/patches/SLUS-21162_9933A1AD.pnach index a3ca4236..6dd2c452 100644 --- a/patches/SLUS-21162_9933A1AD.pnach +++ b/patches/SLUS-21162_9933A1AD.pnach @@ -2,7 +2,7 @@ gametitle=Ford Mustang - The Legend Lives (U)(SLUS-21162) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21163_DFC0888A.pnach b/patches/SLUS-21163_DFC0888A.pnach index 482df027..731d309d 100644 --- a/patches/SLUS-21163_DFC0888A.pnach +++ b/patches/SLUS-21163_DFC0888A.pnach @@ -2,7 +2,7 @@ gametitle=Brothers in Arms: Road to Hill 30 (SLUS-21163) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,00304f5c,word,3c023f40 diff --git a/patches/SLUS-21165_E69E7F58.pnach b/patches/SLUS-21165_E69E7F58.pnach index bb1e98db..85d4643b 100644 --- a/patches/SLUS-21165_E69E7F58.pnach +++ b/patches/SLUS-21165_E69E7F58.pnach @@ -2,7 +2,7 @@ gametitle=Arc the Lad - End of Darkness (NTSC-U) (SLUS-21165) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by pavachan/ElHecht +author=pavachan/ElHecht // 16:9 patch=1,EE,002c5584,word,3f19999a // 3f4ccccc hor fov gameplay diff --git a/patches/SLUS-21168_3A446111.pnach b/patches/SLUS-21168_3A446111.pnach index 9bf748f5..0d2240cf 100644 --- a/patches/SLUS-21168_3A446111.pnach +++ b/patches/SLUS-21168_3A446111.pnach @@ -2,7 +2,7 @@ gametitle=Castlevania: Curse of Darkness (SLUS-21168) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,00751384,word,3c013f40 //hor value diff --git a/patches/SLUS-21170_121AFAF5.pnach b/patches/SLUS-21170_121AFAF5.pnach index 22a79e83..229c8f24 100644 --- a/patches/SLUS-21170_121AFAF5.pnach +++ b/patches/SLUS-21170_121AFAF5.pnach @@ -2,7 +2,7 @@ gametitle=Makai Kingdom: Chronicles of the Sacred Tome [NTSC-U] (SLUS_211.70) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 (ELF hack) patch=1,EE,00104DE4,word,3C013F40 //00000000 (Increases hor. axis) diff --git a/patches/SLUS-21171_304C115C.pnach b/patches/SLUS-21171_304C115C.pnach index 5f5e41f2..749faee2 100644 --- a/patches/SLUS-21171_304C115C.pnach +++ b/patches/SLUS-21171_304C115C.pnach @@ -2,7 +2,7 @@ gametitle=Harvest Moon - A Wonderful Life - Special Edition (NTSC-U) (SLUS-21171 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0043c6dc,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLUS-21172_005AA020.pnach b/patches/SLUS-21172_005AA020.pnach index 2ec5e860..53fa43c9 100644 --- a/patches/SLUS-21172_005AA020.pnach +++ b/patches/SLUS-21172_005AA020.pnach @@ -2,7 +2,7 @@ gametitle=Conflict - Global Terror (U)(SLUS-21172) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21175_E1496246.pnach b/patches/SLUS-21175_E1496246.pnach index b912fd87..f77397d6 100644 --- a/patches/SLUS-21175_E1496246.pnach +++ b/patches/SLUS-21175_E1496246.pnach @@ -2,7 +2,7 @@ gametitle=The Bible Game (U)(SLUS-21175) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21176_9AEECC9D.pnach b/patches/SLUS-21176_9AEECC9D.pnach index 1b2a89d9..a1279309 100644 --- a/patches/SLUS-21176_9AEECC9D.pnach +++ b/patches/SLUS-21176_9AEECC9D.pnach @@ -2,7 +2,7 @@ gametitle=World Championship Poker 2 - Featuring Howard Lederer (U)(SLUS-21176) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21180_FE44479E.pnach b/patches/SLUS-21180_FE44479E.pnach index 5f0f9103..e86971b0 100644 --- a/patches/SLUS-21180_FE44479E.pnach +++ b/patches/SLUS-21180_FE44479E.pnach @@ -2,7 +2,7 @@ gametitle=Onimusha: Dawn of Dreams (Disc 1) (SLUS-21180) / Onimusha: Dawn of Dre [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen correction by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay diff --git a/patches/SLUS-21183_E1F17139.pnach b/patches/SLUS-21183_E1F17139.pnach index 8d1b76a7..f5ece983 100644 --- a/patches/SLUS-21183_E1F17139.pnach +++ b/patches/SLUS-21183_E1F17139.pnach @@ -2,7 +2,7 @@ gametitle=Teen Titans (NTSC-U) (SLUS-21183) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht, also works with NTSC-U +author=ElHecht, also works with NTSC-U // 16:9 patch=1,EE,00205784,word,080f1e0c // 4600ab06 jump to 003c7830 diff --git a/patches/SLUS-21184_DB42119C.pnach b/patches/SLUS-21184_DB42119C.pnach index 3027cd05..a6cc0929 100644 --- a/patches/SLUS-21184_DB42119C.pnach +++ b/patches/SLUS-21184_DB42119C.pnach @@ -9,7 +9,8 @@ patch=1,EE,0028fdb8,extended,34428e38 [60 FPS] author=Gabominated -description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,E0020002,extended,007491C4 //condition -patch=1,EE,107491C4,extended,00000001 //00000002 //fps +description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable +patch=1,EE,E0030002,extended,007491C4 //condition +patch=1,EE,107491C4,extended,00000001 //04000002 //fps patch=1,EE,205B06F0,extended,3c888889 //3d088889 //speed +patch=1,EE,205B06E8,extended,42700000 //41f00000 diff --git a/patches/SLUS-21186_B9BCD679.pnach b/patches/SLUS-21186_B9BCD679.pnach index f41a37bc..10f1fbb5 100644 --- a/patches/SLUS-21186_B9BCD679.pnach +++ b/patches/SLUS-21186_B9BCD679.pnach @@ -2,7 +2,7 @@ gametitle=NBA Ballers - Phenom (U)(SLUS-21186) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21191_AA525269.pnach b/patches/SLUS-21191_AA525269.pnach index fdf458b1..c93c72cf 100644 --- a/patches/SLUS-21191_AA525269.pnach +++ b/patches/SLUS-21191_AA525269.pnach @@ -1,17 +1,22 @@ -gametitle=Crash Tag Team Racing (U)(SLUS-21191) +gametitle=Crash Tag Team Racing (U) (SLUS-21191) AA525269 [Widescreen 16:9] gsaspectratio=16:9 -author=Arapapa -comment=Patches the game to run at 16:9 Widescreen Aspect Ratio. -//X-FOV -patch=1,EE,002D919C,word,3C013FAB //3c013f80 -//Render Fix -patch=1,EE,002D91C0,word,3C013FAB //3c013f80 - +author=Arapapa, nemesis2000, PeterDelta +description=Patches the game to run at 16:9 Widescreen Aspect Ratio. +patch=1,EE,002D919C,word,3C013FAB //3C013F80 X-FOV +patch=1,EE,002D91C0,word,3C013FAB //3C013F80 Render Fix +patch=1,EE,002D9AC8,word,00000000 //46000346 turbo fix +patch=1,EE,002D9ACC,word,00000000 //4600A306 +patch=1,EE,002D9AD0,word,00000000 //0040F809 [60 FPS] //02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 C1 03 00 00 01 00 00 00 01 00 00 00 30 95 57 00 author=asasega description=Patches the game to run at 60 FPS (Might need 180% EE Overclock to be stable). patch=1,EE,207A9E5C,extended,00000001 //00000002 + +[Unlock PSP Exclusive Content] +author=CRASHARKI +description=Unlocks the PSP Exclusive Content (Cars, Battle Arenas and Co-op mode). +patch=1,EE,209D488C,byte,1 //0 \ No newline at end of file diff --git a/patches/SLUS-21192_E65F9D33.pnach b/patches/SLUS-21192_E65F9D33.pnach index 8be9fe17..79576c49 100644 --- a/patches/SLUS-21192_E65F9D33.pnach +++ b/patches/SLUS-21192_E65F9D33.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's Outdoor Adventures (2005) (U)(SLUS-21192) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Zoom diff --git a/patches/SLUS-21194_29B44F89.pnach b/patches/SLUS-21194_29B44F89.pnach index b8a23b36..cdd8ca19 100644 --- a/patches/SLUS-21194_29B44F89.pnach +++ b/patches/SLUS-21194_29B44F89.pnach @@ -2,7 +2,7 @@ gametitle=Phantasy Star Universe (NTSC-U) (SLUS-21194) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Patch by TechieSaru +author=TechieSaru patch=1,EE,E008FF90,extended,00277960 patch=1,EE,20277994,extended,08030000 diff --git a/patches/SLUS-21195_A07F8571.pnach b/patches/SLUS-21195_A07F8571.pnach index 3164f434..3b5b5882 100644 --- a/patches/SLUS-21195_A07F8571.pnach +++ b/patches/SLUS-21195_A07F8571.pnach @@ -2,7 +2,7 @@ gametitle=Breeder's Cup - World Thoroughbred Championships (U)(SLUS-21195) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21196_A7A37EB8.pnach b/patches/SLUS-21196_A7A37EB8.pnach index e6ee5409..e8f5f712 100644 --- a/patches/SLUS-21196_A7A37EB8.pnach +++ b/patches/SLUS-21196_A7A37EB8.pnach @@ -1,8 +1,12 @@ -gametitle=Indigo Prophecy SLUS_211.96 +gametitle=Indigo Prophecy NTSC-U SLUS-21196 A7A37EB8 [Widescreen 16:9] gsaspectratio=16:9 comment=Widescreen Hack patch=1,EE,20836500,extended,3FE38E38 // 3FAAAAAB +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00209688,word,10400004 //14400004 diff --git a/patches/SLUS-21197_C09CB530.pnach b/patches/SLUS-21197_C09CB530.pnach new file mode 100644 index 00000000..0b2e6f7d --- /dev/null +++ b/patches/SLUS-21197_C09CB530.pnach @@ -0,0 +1,7 @@ +gametitle=DreamWorks Shrek - SuperSlam (NTSC-U) C09CB530 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=xMichael +description=Patches the game to run at 16:9 Widescreen Aspect Ratio. +patch=1,EE,21C8111C,extended,3FE38E39 // 3FAAAAAB \ No newline at end of file diff --git a/patches/SLUS-21204_DC2C7C01.pnach b/patches/SLUS-21204_DC2C7C01.pnach index 8b415c6b..f7dcee9a 100644 --- a/patches/SLUS-21204_DC2C7C01.pnach +++ b/patches/SLUS-21204_DC2C7C01.pnach @@ -2,7 +2,7 @@ gametitle=Victorious Boxers 2 - Fighting Spirit (U)(SLUS-21204) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21206_AABDB541.pnach b/patches/SLUS-21206_AABDB541.pnach index 78eef73e..a858d931 100644 --- a/patches/SLUS-21206_AABDB541.pnach +++ b/patches/SLUS-21206_AABDB541.pnach @@ -2,7 +2,7 @@ gametitle=Shining Force NEO (SLUS-212061) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 and paul_met +author=nemesis2000 and paul_met patch=1,EE,210F5BB8,extended,43c00000 // X-axis wide // patch=1,EE,210F5BBC,extended,43BB3333 // Y-axis wide (uncomment this for 16:10) patch=1,EE,210F5BB0,extended,42800000 // X-axis camera position diff --git a/patches/SLUS-21215_B99A75DE.pnach b/patches/SLUS-21215_B99A75DE.pnach index 5ffaf2c0..34a125d1 100644 --- a/patches/SLUS-21215_B99A75DE.pnach +++ b/patches/SLUS-21215_B99A75DE.pnach @@ -2,7 +2,7 @@ gametitle=The Warriors (U)(SLUS-21215) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21216_027C604C.pnach b/patches/SLUS-21216_027C604C.pnach index 97f54345..a4fea61d 100644 --- a/patches/SLUS-21216_027C604C.pnach +++ b/patches/SLUS-21216_027C604C.pnach @@ -2,7 +2,7 @@ gametitle=Soulcalibur III (SLUS-21216) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen correction by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0012a118,word,3c013f40 patch=1,EE,0012a11c,word,34210000 diff --git a/patches/SLUS-21219_91ECC411.pnach b/patches/SLUS-21219_91ECC411.pnach index d8f8dcd0..073a85f6 100644 --- a/patches/SLUS-21219_91ECC411.pnach +++ b/patches/SLUS-21219_91ECC411.pnach @@ -2,7 +2,7 @@ gametitle=Pac-Man World 3 (U)(SLUS-21219) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ICUP321 +author=ICUP321 //Widescreen hack 16:9 (Set "Normal" in Picture Options) diff --git a/patches/SLUS-21220_4429BEFE.pnach b/patches/SLUS-21220_4429BEFE.pnach index 593958f1..23a59877 100644 --- a/patches/SLUS-21220_4429BEFE.pnach +++ b/patches/SLUS-21220_4429BEFE.pnach @@ -2,7 +2,7 @@ gametitle=World Soccer Winning Eleven 9 [NTSC-U] (SLUS_212.20) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,0036AA60,word,3FAAAAAB //3F800000 (Increases hor. axis) diff --git a/patches/SLUS-21221_C0AC5781.pnach b/patches/SLUS-21221_C0AC5781.pnach index 4a8f998a..5175f7fd 100644 --- a/patches/SLUS-21221_C0AC5781.pnach +++ b/patches/SLUS-21221_C0AC5781.pnach @@ -5,7 +5,14 @@ comment=Magna Carta - Tears of Blood - Widescreen Hack (16:9) (NTSC-U) //16:9 (b002a427 00608044 803f023c 00688244 00000000 86630046 30c2050c) patch=1,EE,002bd948,word,3c023f40 //3c023f80 +[No-Interlacing] +author=NineKain +description=Attempts to disable interlaced offset rendering. +gsinterlacemode=1 +//Remove Interlacing +patch=1,EE,001E5668,word,00000000 + [60 FPS] author=Gabominated description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. -patch=1,EE,201C69E4,extended,28410001 //28410002 \ No newline at end of file +patch=1,EE,201C69E4,extended,28410001 //28410002 diff --git a/patches/SLUS-21222_D8BBFFF3.pnach b/patches/SLUS-21222_D8BBFFF3.pnach index b0a55454..7952581b 100644 --- a/patches/SLUS-21222_D8BBFFF3.pnach +++ b/patches/SLUS-21222_D8BBFFF3.pnach @@ -2,7 +2,7 @@ gametitle=Top Spin (U)(SLUS-21222) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21224_B815F724.pnach b/patches/SLUS-21224_B815F724.pnach index a72bb682..0260b63d 100644 --- a/patches/SLUS-21224_B815F724.pnach +++ b/patches/SLUS-21224_B815F724.pnach @@ -2,7 +2,7 @@ gametitle=Guitar Hero (U)(SLUS-21224) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21225_9CA89C19.pnach b/patches/SLUS-21225_9CA89C19.pnach index 30ba0e01..c33dbf00 100644 --- a/patches/SLUS-21225_9CA89C19.pnach +++ b/patches/SLUS-21225_9CA89C19.pnach @@ -2,7 +2,7 @@ gametitle=Bratz - Rock Angelz (U)(SLUS-21225) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21227_7B0E28D0.pnach b/patches/SLUS-21227_7B0E28D0.pnach index 26f7e8f8..d47e5289 100644 --- a/patches/SLUS-21227_7B0E28D0.pnach +++ b/patches/SLUS-21227_7B0E28D0.pnach @@ -2,7 +2,7 @@ gametitle=Dragon Ball Z - Budokai Tenkaichi (U)(SLUS-21227) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by sergx12/ElHecht (NTSC-U by Arapapa) +author=sergx12/ElHecht (NTSC-U by Arapapa) // 16:9 menu patch=1,EE,001fa2c4,word,3F600000 // 3f490fda sky/background fix diff --git a/patches/SLUS-21230_337B927C.pnach b/patches/SLUS-21230_337B927C.pnach index 0010bbaa..4eb772cf 100644 --- a/patches/SLUS-21230_337B927C.pnach +++ b/patches/SLUS-21230_337B927C.pnach @@ -2,7 +2,7 @@ gametitle=We Love Katamari (SLUS-21230) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,00108308,word,3c0143d6 diff --git a/patches/SLUS-21231_395779C5.pnach b/patches/SLUS-21231_395779C5.pnach index ddc9b314..5d92ac2e 100644 --- a/patches/SLUS-21231_395779C5.pnach +++ b/patches/SLUS-21231_395779C5.pnach @@ -2,7 +2,7 @@ gametitle=Sniper Elite (U)(SLUS-21231) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Force turn on Widescreen (Full boot bypassing) @@ -20,4 +20,7 @@ patch=1,EE,00500bf0,word,3f9faaab //3eaaaaab //Y-Fov //patch=1,EE,00501e48,word,3FE38E2A //3faaaaab - +[60 FPS] +author=Gabominated +description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,00199018,word,1460000A //1060000A \ No newline at end of file diff --git a/patches/SLUS-21236_07A4E535.pnach b/patches/SLUS-21236_07A4E535.pnach index 58dc8df9..fe10f0e8 100644 --- a/patches/SLUS-21236_07A4E535.pnach +++ b/patches/SLUS-21236_07A4E535.pnach @@ -2,7 +2,7 @@ gametitle=Tokyo Xtreme Racer: Drift (SLUS-21236) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,001196f4,word,3c043f40 diff --git a/patches/SLUS-21237_A542271D.pnach b/patches/SLUS-21237_A542271D.pnach index b9d0df89..8503fa7b 100644 --- a/patches/SLUS-21237_A542271D.pnach +++ b/patches/SLUS-21237_A542271D.pnach @@ -2,7 +2,7 @@ gametitle=And 1 Streetball (U)(SLUS-21237) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21238_7985D894.pnach b/patches/SLUS-21238_7985D894.pnach index 4bcd22f5..045aa5a3 100644 --- a/patches/SLUS-21238_7985D894.pnach +++ b/patches/SLUS-21238_7985D894.pnach @@ -2,7 +2,7 @@ gametitle=Final Fight: Streetwise (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0017f228,word,3c043f71 patch=1,EE,0017f22c,word,3489d5a2 patch=1,EE,0017f230,word,3c03bf71 diff --git a/patches/SLUS-21240_02F4B541.pnach b/patches/SLUS-21240_02F4B541.pnach index 00ced124..233847bd 100644 --- a/patches/SLUS-21240_02F4B541.pnach +++ b/patches/SLUS-21240_02F4B541.pnach @@ -3,7 +3,7 @@ gametitle=Star Wars - Battlefront 2 (NTSC-U) SLUS-21240 02F4B541 secondary SWBFR [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by nemesis2000 and Arapapa +author=nemesis2000 and Arapapa [60 FPS] author=Gabominated diff --git a/patches/SLUS-21240_249540F3.pnach b/patches/SLUS-21240_249540F3.pnach index 3d5c8948..f73f1288 100644 --- a/patches/SLUS-21240_249540F3.pnach +++ b/patches/SLUS-21240_249540F3.pnach @@ -2,7 +2,7 @@ gametitle=Star Wars: Battlefront 2 (U)(SLUS-21240) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by nemesis2000 and Arapapa +author=nemesis2000 and Arapapa //Game changes ELF on boot to SWBFRNT2.ELF with active CRC 62390B9E diff --git a/patches/SLUS-21240_62390B9E.pnach b/patches/SLUS-21240_62390B9E.pnach index 0e96d0b2..5bb6f648 100644 --- a/patches/SLUS-21240_62390B9E.pnach +++ b/patches/SLUS-21240_62390B9E.pnach @@ -2,7 +2,7 @@ gametitle=Star Wars: Battlefront 2 (U)(SLUS-21240) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by nemesis2000 and Arapapa +author=nemesis2000 and Arapapa //Game changes ELF on boot to SWBFRNT2.ELF with active CRC 62390B9E diff --git a/patches/SLUS-21242_D224D348.pnach b/patches/SLUS-21242_D224D348.pnach index 3b1ae91f..71bd04c9 100644 --- a/patches/SLUS-21242_D224D348.pnach +++ b/patches/SLUS-21242_D224D348.pnach @@ -1,9 +1,9 @@ -gametitle=Burnout Revenge (U)(SLUS-21242) +gametitle=Burnout Revenge (U) (SLUS-21242) [Widescreen 16:9] +gsaspectratio=16:9 author=SuperType1/remco description=Fixes the game and the HUD to run in a 16:9 Scale (only enable one and not both of them). -gsaspectratio=16:9 patch=1,EE,201398C0,extended,00000000 patch=1,EE,2016BCA8,extended,3C013A9D patch=1,EE,21C02438,extended,3FAA3D71 @@ -17,9 +17,9 @@ patch=1,EE,21C02108,extended,43C30000 patch=1,EE,2032677C,extended,3C013C9A [Widescreen 21:9] +gsaspectratio=Stretch author=SuperType1/remco description=Fixes the game and the HUD to run in a 21:9 Scale (only enable one and not both of them). -gsaspectratio=Stretch patch=1,EE,201398C0,extended,00000000 patch=1,EE,201398C8,extended,3C014017 patch=1,EE,2016BCA8,extended,3C013A83 @@ -46,12 +46,22 @@ description=Makes the Crashes & Crash Mode run in 60 FPS. patch=1,EE,20104B9C,extended,90850608 [Progressive Scan] -author=Nahelam -comment=Always ask for 480p mode during boot -patch=1,EE,2019778C,extended,10A2001C +author=Nehalem +description=Always ask for 480p mode during boot +patch=0,EE,2019778C,extended,10A2001C [MPH to KPH] -author=Nahelam -comment=Change speedometer unit from MPH to KPH -patch=1,EE,201765E8,extended,0000102D -patch=1,EE,201767DC,extended,0000102D +author=Nehalem +description=Change speedometer unit from MPH to KPH +patch=0,EE,201765E8,extended,0000102D +patch=0,EE,201767DC,extended,0000102D + +[Falling car parts while driving (takedowns & traffic checks)] +author=Nehalem +description=Enable falling car parts during takedowns and traffic checks while driving +patch=0,EE,20210FA8,extended,00000000 + +[Extra particles while driving] +author=Nehalem +description=Render all extra particles while driving +patch=0,EE,202B5334,extended,24030001 \ No newline at end of file diff --git a/patches/SLUS-21244_2ADBA7BC.pnach b/patches/SLUS-21244_2ADBA7BC.pnach index 5e583cd2..36e18620 100644 --- a/patches/SLUS-21244_2ADBA7BC.pnach +++ b/patches/SLUS-21244_2ADBA7BC.pnach @@ -1,32 +1,13 @@ -gametitle=Fatal Frame III: The Tormented (SLUS-21244) +gametitle=Fatal Frame 3: The Tormented * NTSC-U * SLUS-21244 * 2ADBA7BC +// Project Zero 3: The Tormented [Widescreen 16:9] -description=Renders the game in 16:9 aspect ratio, instead of 4:3. gsaspectratio=16:9 -//gameplay +// gameplay patch=1,EE,0032652c,word,3f400000 -//Dither + Ghost post-process Effect Off -//patch=1,EE,00156cb4,word,00000000 -//Focus Effect Off -//patch=1,EE,00156cfc,word,00000000 -//Disable dark filter (cutscene) -//patch=1,EE,00156d2c,word,00000000 - -//Disable all bloom (speedup, but makes the game seem dull) -//patch=1,EE,00156df4,word,00000000 - -//Disable overbloom (cutscene) -//patch=1,EE,00156d90,word,00000000 -//Decrease overbloom (gameplay) -//patch=1,EE,2036B904,word,3F400000 - -//Bloom offset (fixes bloom glitch) -//patch=1,EE,2036B910,word,43A30000 // 43A00000 - TC X-offset -//patch=1,EE,2036B914,word,43660000 // 43600000 - TC Y-offset - -//FMV's fix +// FMV fix patch=1,EE,0036EA30,word,44200000 patch=1,EE,0036EA38,word,3e333333 @@ -49,7 +30,7 @@ patch=1,EE,00216edc,word,4600b583 patch=1,EE,00216ee0,word,448e0800 patch=1,EE,00216ee4,word,46800860 -//Lens Flare's fix +// Lens Flare's fix patch=1,EE,0016c60c,word,0c060269 patch=1,EE,0016c50c,word,0c060269 patch=1,EE,0016c56c,word,0c060269 @@ -136,4 +117,35 @@ patch=1,EE,00180ad8,word,3c0e0fff patch=1,EE,00180adc,word,3c014180 patch=1,EE,00180ae0,word,4481a000 +// ========== + +[Disable Dither & Ghost Post-Process effect] +patch=1,EE,00156cb4,word,00000000 + +[Disable Dark Filter on Cutscenes] +patch=1,EE,00156d2c,word,00000000 + +[Disable Overbloom on Cutscenes] +patch=1,EE,00156d90,word,00000000 + +[Decrease Overbloom on Gameplay] +patch=1,EE,2036B904,word,3F400000 + +[Disable Focus effect] +patch=1,EE,00156cfc,word,00000000 + +[Disable All Bloom] +comment=Speedup, but makes the game seem dull +patch=1,EE,00156df4,word,00000000 + +[Upscaling offset fix] +author=pgert +description=Fixes offset glitch +patch=1,EE,2036B910,word,43A30000 // 43A00000 - TC X-offset +patch=1,EE,2036B914,word,43660000 // 43600000 - TC Y-offset +[60 FPS] +author=asasega +comment=Everything is double speed - Might need EE overclocking to be stable. +patch=1,EE,20258B80,word,00000000 +patch=1,EE,2025B4D8,word,240D003C // gametime fix diff --git a/patches/SLUS-21245_1CC39DBD.pnach b/patches/SLUS-21245_1CC39DBD.pnach index 90f69c36..9ba7e1a5 100644 --- a/patches/SLUS-21245_1CC39DBD.pnach +++ b/patches/SLUS-21245_1CC39DBD.pnach @@ -1,7 +1,7 @@ [Widescreen 16:9] gsaspectratio=16:9 comment=Suikoden Tactics (SLUS-21245) -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0037e94c,word,3c013f40 //hor value patch=1,EE,0037e950,word,44810000 diff --git a/patches/SLUS-21246_157995EE.pnach b/patches/SLUS-21246_157995EE.pnach index 1f6bfd09..f2cdc07c 100644 --- a/patches/SLUS-21246_157995EE.pnach +++ b/patches/SLUS-21246_157995EE.pnach @@ -2,7 +2,7 @@ gametitle=Charlie and the Chocolate Factory (U)(SLUS-21246) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21250_5D153990.pnach b/patches/SLUS-21250_5D153990.pnach index aa017440..dbcfacd9 100644 --- a/patches/SLUS-21250_5D153990.pnach +++ b/patches/SLUS-21250_5D153990.pnach @@ -2,7 +2,7 @@ gametitle=Full Spectrum Warrior - Ten Hammers (U)(SLUS-21250) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21251_45DEB7AC.pnach b/patches/SLUS-21251_45DEB7AC.pnach index 903b26d3..2c1e81b8 100644 --- a/patches/SLUS-21251_45DEB7AC.pnach +++ b/patches/SLUS-21251_45DEB7AC.pnach @@ -2,10 +2,15 @@ gametitle=FlatOut 2 (U)(SLUS-21251) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas (NTSC-U by Arapapa) +author=El_Patas (NTSC-U by Arapapa) patch=1,EE,003a0498,word,3c013f14 //3c013f00 patch=1,EE,002d4b40,word,3c014010 //3c014040 patch=1,EE,0022e768,word,3C013F8A //3C013F80 - +[60 FPS] +author=asasega & Gabominated +description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,204A20B4,extended,00000001 //00000002 +patch=1,EE,E0010001,extended,0044C690 +patch=1,EE,204A20B4,extended,00000002 diff --git a/patches/SLUS-21252_9DDF4676.pnach b/patches/SLUS-21252_9DDF4676.pnach index 7251c579..24a9b2d2 100644 --- a/patches/SLUS-21252_9DDF4676.pnach +++ b/patches/SLUS-21252_9DDF4676.pnach @@ -2,7 +2,7 @@ gametitle=SpongeBob SquarePants - Lights, Camera, Pants! (U)(SLUS-21252) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLUS-21254_282CF16E.pnach b/patches/SLUS-21254_282CF16E.pnach index 52bafea4..ad477016 100644 --- a/patches/SLUS-21254_282CF16E.pnach +++ b/patches/SLUS-21254_282CF16E.pnach @@ -2,7 +2,7 @@ gametitle=Zatch Bell! Mamodo Battles [NTSC-U] (SLUS-21254) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //16:9 patch=1,EE,0011bd4c,word,3c013f40 //00000000 diff --git a/patches/SLUS-21256_E2C71FD9.pnach b/patches/SLUS-21256_E2C71FD9.pnach index 387e45cf..c5641ad3 100644 --- a/patches/SLUS-21256_E2C71FD9.pnach +++ b/patches/SLUS-21256_E2C71FD9.pnach @@ -2,7 +2,7 @@ gametitle=IHRA Drag Racing - Sportsman Edition (U)(SLUS-21256) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21263_239CF68A.pnach b/patches/SLUS-21263_239CF68A.pnach index 5354a0c8..dc334b39 100644 --- a/patches/SLUS-21263_239CF68A.pnach +++ b/patches/SLUS-21263_239CF68A.pnach @@ -2,7 +2,7 @@ gametitle=Romancing SaGa (NTSC-U) (SLUS-21263) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 patch=1,EE,0027fa54,word,3c013f40 // 00000000 hor fov patch=1,EE,0027fa58,word,44810000 // 00000000 hor fov diff --git a/patches/SLUS-21264_40F3E75D.pnach b/patches/SLUS-21264_40F3E75D.pnach index 8d50a23b..ebd95bb8 100644 --- a/patches/SLUS-21264_40F3E75D.pnach +++ b/patches/SLUS-21264_40F3E75D.pnach @@ -2,7 +2,7 @@ gametitle=Tiger Woods PGA Tour 06 (NTSC-U) (SLUS-21264) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by VIRGIN KLM +author=VIRGIN KLM //Game Play Fov patch=1,EE,008F4E40,extended,3f400000 //3f800000 diff --git a/patches/SLUS-21265_B67577F3.pnach b/patches/SLUS-21265_B67577F3.pnach index b2fc51db..a04f5e9e 100644 --- a/patches/SLUS-21265_B67577F3.pnach +++ b/patches/SLUS-21265_B67577F3.pnach @@ -2,7 +2,7 @@ gametitle=The Sims 2 (NTSC-U)(SLUS-21265) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -21,4 +21,7 @@ patch=1,EE,003da974,word,34218e21 //3421aaab //0000803f 0000d844 0000e444 00001445 //patch=1,EE,219E2ACC,extended,3f400000 //3f800000 - +[60 FPS] +author=Gabominated +description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,003EA6FC,word,28820001 //28820002 \ No newline at end of file diff --git a/patches/SLUS-21268_F1C7201E.pnach b/patches/SLUS-21268_F1C7201E.pnach index fd9944f8..d3833acc 100644 --- a/patches/SLUS-21268_F1C7201E.pnach +++ b/patches/SLUS-21268_F1C7201E.pnach @@ -2,7 +2,7 @@ gametitle=24 - The Game (U)(SLUS-21268) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21270_9F18CBC5.pnach b/patches/SLUS-21270_9F18CBC5.pnach index 54b210a5..fc5cfeff 100644 --- a/patches/SLUS-21270_9F18CBC5.pnach +++ b/patches/SLUS-21270_9F18CBC5.pnach @@ -2,7 +2,7 @@ gametitle=MS Saga: A New Dawn (SLUS-21270) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,001b8b5c,word,46000003 patch=1,EE,001b8b60,word,7fb00010 diff --git a/patches/SLUS-21275_D926BF85.pnach b/patches/SLUS-21275_D926BF85.pnach index b6dd191f..d7510bc5 100644 --- a/patches/SLUS-21275_D926BF85.pnach +++ b/patches/SLUS-21275_D926BF85.pnach @@ -2,7 +2,7 @@ gametitle=River King - A Wonderful Journey (NTSC-U)(SLUS-21275) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,00404df4,word,3c013f40 //00000000 diff --git a/patches/SLUS-21277_EC8EF2DE.pnach b/patches/SLUS-21277_EC8EF2DE.pnach index 155382fe..e3832fa7 100644 --- a/patches/SLUS-21277_EC8EF2DE.pnach +++ b/patches/SLUS-21277_EC8EF2DE.pnach @@ -1,8 +1,8 @@ -gametitle=Barnyard (U)(SLUS-21277) +gametitle=Barnyard (U)(SLUS-21277) EC8EF2DE [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -18,3 +18,9 @@ patch=1,EE,0053d748,word,3fd50000 //3eaaaaab //patch=1,EE,21A1DF7C,extended,00000000 //42300000 +[60 FPS] +author=PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,00546FA4,extended,00000001 +patch=1,EE,E0010010,extended,004F4734 +patch=1,EE,00546FA4,extended,00000002 \ No newline at end of file diff --git a/patches/SLUS-21279_10118EC4.pnach b/patches/SLUS-21279_10118EC4.pnach index a5a1cad9..540b2300 100644 --- a/patches/SLUS-21279_10118EC4.pnach +++ b/patches/SLUS-21279_10118EC4.pnach @@ -2,7 +2,7 @@ gametitle=NBA Live 06 (U)(SLUS-21279) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21282_22DC8EAC.pnach b/patches/SLUS-21282_22DC8EAC.pnach index 038e05b6..f3aef891 100644 --- a/patches/SLUS-21282_22DC8EAC.pnach +++ b/patches/SLUS-21282_22DC8EAC.pnach @@ -2,7 +2,7 @@ gametitle=007: From Russia with Love (SLUS-21282) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0040560c,word,46140002 patch=1,EE,00405610,word,27a50030 diff --git a/patches/SLUS-21283_461F9727.pnach b/patches/SLUS-21283_461F9727.pnach index 57950856..469d7cd5 100644 --- a/patches/SLUS-21283_461F9727.pnach +++ b/patches/SLUS-21283_461F9727.pnach @@ -1,13 +1,13 @@ -gametitle=Total Overdose: A Gunslinger's Tale in Mexico (NTSC-U) +gametitle=Total Overdose: A Gunslinger's Tale in Mexico (NTSC-U) 461F9727 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,206927AC,word,3F47AE14 // Zoom patch=1,EE,206C62BC,word,3F400000 // Vert fov [60 FPS] author=PeterDelta -comment=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,01B71E70,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLUS-21285_FDD12792.pnach b/patches/SLUS-21285_FDD12792.pnach index 6314a99b..b97c401d 100644 --- a/patches/SLUS-21285_FDD12792.pnach +++ b/patches/SLUS-21285_FDD12792.pnach @@ -18,7 +18,7 @@ gametitle=Ultimate Spider-Man (U)(SLUS-20870) and (E)(SLES-53391) // Ultimate Sp [60 FPS] author=PeterDelta and asasega -description=Unlocked at 60 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00311F18,word,00000000 patch=1,EE,0069FE20,word,00000001 patch=1,EE,E0020001,extended,01C82AA0 diff --git a/patches/SLUS-21286_74EB4E40.pnach b/patches/SLUS-21286_74EB4E40.pnach index b5bc490e..1a71eeee 100644 --- a/patches/SLUS-21286_74EB4E40.pnach +++ b/patches/SLUS-21286_74EB4E40.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown! vs. Raw 2006 (SLUS-21286) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0011e95c,word,3c013f40 patch=1,EE,0011e960,word,44810000 patch=1,EE,0011e968,word,4600c602 diff --git a/patches/SLUS-21287_84F3309D.pnach b/patches/SLUS-21287_84F3309D.pnach index 7e2afa1e..2694ac97 100644 --- a/patches/SLUS-21287_84F3309D.pnach +++ b/patches/SLUS-21287_84F3309D.pnach @@ -3,7 +3,7 @@ gametitle=Prince of Persia: The Two Thrones (SLUS-21287) [Widescreen 16:9] gsaspectratio=16:9 author=nemesis2000 -comment=Widescreen hack +description=Renders the game in 16:9 aspect ratio //gameplay patch=1,EE,005b8794,word,3C023f40 @@ -28,4 +28,10 @@ patch=1,EE,00217cec,word,3464dddd [60 FPS] author=asasega comment=Unlocked at 60 FPS. Might need enable 180% EE Overclock to be stable. -patch=1,EE,00A908F8,word,00000001 \ No newline at end of file +patch=1,EE,00A908F8,word,00000001 + + +[Remove Blur/Bloom] +author=fobes +description=Removes the post-processing blur/bloom effect +patch=1,EE,005AA9D4,word,00000000 diff --git a/patches/SLUS-21288_ADFDCCD7.pnach b/patches/SLUS-21288_ADFDCCD7.pnach index 18f56dd5..49e6177a 100644 --- a/patches/SLUS-21288_ADFDCCD7.pnach +++ b/patches/SLUS-21288_ADFDCCD7.pnach @@ -2,7 +2,7 @@ gametitle=American Chopper 2 - Full Throttle (U)(SLUS-21288) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21299_A719D130.pnach b/patches/SLUS-21299_A719D130.pnach index 31dbec77..c53043f5 100644 --- a/patches/SLUS-21299_A719D130.pnach +++ b/patches/SLUS-21299_A719D130.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 5: Xtreme Legends (SLUS-21299) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,00146d7c,word,3c0243d6 patch=1,EE,0019814c,word,3c023f2b patch=1,EE,00146ac4,word,3c023e10 // cutscene zoom (fixes crash) @@ -10,7 +10,7 @@ patch=1,EE,00146ac4,word,3c023e10 // cutscene zoom (fixes crash) [No-Interlacing] gsinterlacemode=1 -comment=no interlacing by someother1ne +author=someother1ne patch=1,EE,20112964,word,64420000 patch=1,EE,201427D0,word,30420000 diff --git a/patches/SLUS-21300_E328D848.pnach b/patches/SLUS-21300_E328D848.pnach index 7f0a0b99..ab1a0c1f 100644 --- a/patches/SLUS-21300_E328D848.pnach +++ b/patches/SLUS-21300_E328D848.pnach @@ -2,7 +2,7 @@ gametitle=Over the Hedge (U)(SLUS-21300) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21301_F61754B9.pnach b/patches/SLUS-21301_F61754B9.pnach index 777f480d..2c1c1cca 100644 --- a/patches/SLUS-21301_F61754B9.pnach +++ b/patches/SLUS-21301_F61754B9.pnach @@ -2,7 +2,7 @@ gametitle=World Series of Poker (U)(SLUS-21301) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 patch=1,EE,00321504,word,3c013f40 //00000000 diff --git a/patches/SLUS-21303_5B048038.pnach b/patches/SLUS-21303_5B048038.pnach index e7428dc1..a4b44494 100644 --- a/patches/SLUS-21303_5B048038.pnach +++ b/patches/SLUS-21303_5B048038.pnach @@ -2,7 +2,7 @@ gametitle=Rebel Raiders - Operation Nighthawk (U)(SLUS-21303) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21305_8EBA521C.pnach b/patches/SLUS-21305_8EBA521C.pnach index 3e869ffe..f9082cea 100644 --- a/patches/SLUS-21305_8EBA521C.pnach +++ b/patches/SLUS-21305_8EBA521C.pnach @@ -2,7 +2,7 @@ gametitle=Arthur and the Invisibles: The Game [NTSC-U] (SLUS_213.05) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Sergx12 +author=sergx12 //Gameplay 16:9 patch=1,EE,0012BBA4,word,3C023F1E //3C023F00 diff --git a/patches/SLUS-21307_EEC195CA.pnach b/patches/SLUS-21307_EEC195CA.pnach new file mode 100644 index 00000000..829580cb --- /dev/null +++ b/patches/SLUS-21307_EEC195CA.pnach @@ -0,0 +1,8 @@ +gametitle=Ice Age 2 - The Meltdown NTSC-U SLUS-21307 EEC195CA + +[60 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,003B4330,extended,0000003c //0000001e +patch=1,EE,E0010001,extended,003CFABC +patch=1,EE,203B4330,extended,0000001E \ No newline at end of file diff --git a/patches/SLUS-21310_D371F4DF.pnach b/patches/SLUS-21310_D371F4DF.pnach index 22a71c0a..82ba1a0b 100644 --- a/patches/SLUS-21310_D371F4DF.pnach +++ b/patches/SLUS-21310_D371F4DF.pnach @@ -2,7 +2,7 @@ gametitle=Brothers in Arms: Earned in Blood (SLUS-21310) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,002f114c,word,3c023f40 diff --git a/patches/SLUS-21311_2B1CC3FF.pnach b/patches/SLUS-21311_2B1CC3FF.pnach index b7b57593..73517100 100644 --- a/patches/SLUS-21311_2B1CC3FF.pnach +++ b/patches/SLUS-21311_2B1CC3FF.pnach @@ -2,7 +2,7 @@ gametitle=Peter Jackson's King Kong - The Official Game of the Movie (U)(SLUS-21 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21312_073EEDC0.pnach b/patches/SLUS-21312_073EEDC0.pnach index 160a8721..362da3b0 100644 --- a/patches/SLUS-21312_073EEDC0.pnach +++ b/patches/SLUS-21312_073EEDC0.pnach @@ -2,7 +2,7 @@ gametitle=Wallace & Gromit - The Curse of the Were-Rabbit (U)(SLUS-021312) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21315_E24FC804.pnach b/patches/SLUS-21315_E24FC804.pnach index 8f104b4f..e0bbd16e 100644 --- a/patches/SLUS-21315_E24FC804.pnach +++ b/patches/SLUS-21315_E24FC804.pnach @@ -2,7 +2,7 @@ gametitle=50 Cent - Bulletproof (U)(SLUS-21315) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa and 60 FPS by asasega +author=Arapapa and 60 FPS by asasega //Gameplay 16:9 diff --git a/patches/SLUS-21319_40893E32.pnach b/patches/SLUS-21319_40893E32.pnach index 2f360d15..f68981b5 100644 --- a/patches/SLUS-21319_40893E32.pnach +++ b/patches/SLUS-21319_40893E32.pnach @@ -2,7 +2,7 @@ gametitle=Flow - Urban Dance Uprising (E)(SLES-53848) and (U)(SLUS-21319) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21320_2F63F868.pnach b/patches/SLUS-21320_2F63F868.pnach index 944bd741..6181fc99 100644 --- a/patches/SLUS-21320_2F63F868.pnach +++ b/patches/SLUS-21320_2F63F868.pnach @@ -2,14 +2,11 @@ gametitle=Rogue Trooper (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -author=Arapapa -comment=Widescreen Hack -//X-Fov -//803f013c 00e08144 -patch=1,EE,001c8974,word,3c013f40 //3c013f80 +author=Gabominated +description=Widescreen fix +patch=1,EE,00112D80,word,3C013F05 //3C013F00 zoom [60 FPS] -author=asasega -comment=Unlocked at 60 FPS. Might need enable 130% EE Overclock to be stable. -patch=1,EE,201BE834,word,00000000 -patch=1,EE,203C8384,word,00000000 \ No newline at end of file +author=Gabominated +description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,001BE810,word,1460000A //1060000A diff --git a/patches/SLUS-21321_22FB53FF.pnach b/patches/SLUS-21321_22FB53FF.pnach index c685555d..72a07db7 100644 --- a/patches/SLUS-21321_22FB53FF.pnach +++ b/patches/SLUS-21321_22FB53FF.pnach @@ -2,7 +2,7 @@ gametitle=Squadra Course Alfa Romeo (Alfa Romeo Racing Italiano) (U)(SLUS-21321) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21322_7E3C6FDE.pnach b/patches/SLUS-21322_7E3C6FDE.pnach index 57f377be..c7bb79f0 100644 --- a/patches/SLUS-21322_7E3C6FDE.pnach +++ b/patches/SLUS-21322_7E3C6FDE.pnach @@ -2,7 +2,7 @@ gametitle=Eragon (U)(SLUS-21322) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21323_E389B921.pnach b/patches/SLUS-21323_E389B921.pnach index 2a898348..3d85f853 100644 --- a/patches/SLUS-21323_E389B921.pnach +++ b/patches/SLUS-21323_E389B921.pnach @@ -2,7 +2,7 @@ gametitle=Rampage - Total Destruction (NTSC-U & PAL)(SLUS-21323 & SLES-53800) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21327_9AC65D6A.pnach b/patches/SLUS-21327_9AC65D6A.pnach index 80beebf9..7a476e01 100644 --- a/patches/SLUS-21327_9AC65D6A.pnach +++ b/patches/SLUS-21327_9AC65D6A.pnach @@ -2,7 +2,7 @@ gametitle=Atelier Iris 2: The Azoth of Destiny (SLUS-21327) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //3D scenes patch=1,EE,002aab6c,word,3c013f40 //hor value diff --git a/patches/SLUS-21333_E701DB54.pnach b/patches/SLUS-21333_E701DB54.pnach index d7f3eb3a..814333cb 100644 --- a/patches/SLUS-21333_E701DB54.pnach +++ b/patches/SLUS-21333_E701DB54.pnach @@ -2,7 +2,7 @@ gametitle=World Poker Tour (U)(SLUS-21333) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21334_5B657DAD.pnach b/patches/SLUS-21334_5B657DAD.pnach index 899867d6..63ad15da 100644 --- a/patches/SLUS-21334_5B657DAD.pnach +++ b/patches/SLUS-21334_5B657DAD.pnach @@ -2,7 +2,7 @@ gametitle=Grandia III (SLUS-21334) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0013b450,word,3c033f27 patch=1,EE,0013b4a0,word,3c013f40 patch=1,EE,0013b4a4,word,4481a000 diff --git a/patches/SLUS-21335_CD50F9CA.pnach b/patches/SLUS-21335_CD50F9CA.pnach index 06ecf7fd..4a2d0980 100644 --- a/patches/SLUS-21335_CD50F9CA.pnach +++ b/patches/SLUS-21335_CD50F9CA.pnach @@ -2,7 +2,7 @@ gametitle=The Hustle - Detroit Streets (U)(SLUS-21335) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21336_844EDE02.pnach b/patches/SLUS-21336_844EDE02.pnach index f7c19847..12acdad8 100644 --- a/patches/SLUS-21336_844EDE02.pnach +++ b/patches/SLUS-21336_844EDE02.pnach @@ -2,7 +2,7 @@ gametitle=Zathura (U)(SLUS-21336) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21340_539C8208.pnach b/patches/SLUS-21340_539C8208.pnach index 4b10e4db..d4123a04 100644 --- a/patches/SLUS-21340_539C8208.pnach +++ b/patches/SLUS-21340_539C8208.pnach @@ -2,7 +2,7 @@ gametitle=World Championship Cards (U)(SLUS-21340) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21341_4C7A8693.pnach b/patches/SLUS-21341_4C7A8693.pnach new file mode 100644 index 00000000..1ebad28a --- /dev/null +++ b/patches/SLUS-21341_4C7A8693.pnach @@ -0,0 +1,6 @@ +gametitle=Stuart Little 3 - Big Photo Adventure NTSC-U SLUS-21341 4C7A8693 + +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00105F7C,word,24110001 //24110002 \ No newline at end of file diff --git a/patches/SLUS-21342_F6D977AE.pnach b/patches/SLUS-21342_F6D977AE.pnach index a01ffb0a..72d5d3c0 100644 --- a/patches/SLUS-21342_F6D977AE.pnach +++ b/patches/SLUS-21342_F6D977AE.pnach @@ -2,7 +2,7 @@ gametitle=MLB Slugfest 2006 (U)(SLUS-21342) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21343_7A5B4F80.pnach b/patches/SLUS-21343_7A5B4F80.pnach index 901d6a6a..b74f0492 100644 --- a/patches/SLUS-21343_7A5B4F80.pnach +++ b/patches/SLUS-21343_7A5B4F80.pnach @@ -2,7 +2,7 @@ gametitle=Samurai Champloo - Sidetracked (NTSC-U) (SLUS-21343) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,001409f4,word,3c023fbd // 3c023f8e hor fov diff --git a/patches/SLUS-21345_5B657DAD.pnach b/patches/SLUS-21345_5B657DAD.pnach index 899867d6..63ad15da 100644 --- a/patches/SLUS-21345_5B657DAD.pnach +++ b/patches/SLUS-21345_5B657DAD.pnach @@ -2,7 +2,7 @@ gametitle=Grandia III (SLUS-21334) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,0013b450,word,3c033f27 patch=1,EE,0013b4a0,word,3c013f40 patch=1,EE,0013b4a4,word,4481a000 diff --git a/patches/SLUS-21346_65729657.pnach b/patches/SLUS-21346_65729657.pnach index 9078b1c5..23e6ba1f 100644 --- a/patches/SLUS-21346_65729657.pnach +++ b/patches/SLUS-21346_65729657.pnach @@ -2,7 +2,7 @@ gametitle=Ace Combat Zero: The Belkan War (SLUS-21346) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //widescreen fix patch=1,EE,003FA350,word,43D638F3 diff --git a/patches/SLUS-21350_B8F7EC73.pnach b/patches/SLUS-21350_B8F7EC73.pnach index b762c8fb..bc6a8f42 100644 --- a/patches/SLUS-21350_B8F7EC73.pnach +++ b/patches/SLUS-21350_B8F7EC73.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's Dangerous Hunts 2 (U)(SLUS-21350) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Zoom diff --git a/patches/SLUS-21354_A275B0C0.pnach b/patches/SLUS-21354_A275B0C0.pnach index 80b261ff..902ef1f8 100644 --- a/patches/SLUS-21354_A275B0C0.pnach +++ b/patches/SLUS-21354_A275B0C0.pnach @@ -2,7 +2,7 @@ gametitle=Curious George (U)(SLUS-21354) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21356_C0498D24.pnach b/patches/SLUS-21356_C0498D24.pnach index 2e7981a6..8deb76fb 100644 --- a/patches/SLUS-21356_C0498D24.pnach +++ b/patches/SLUS-21356_C0498D24.pnach @@ -2,7 +2,7 @@ gametitle=Tom Clancy's Splinter Cell: Double Agent (SLUS_21356) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,001f4784,word,e66000a4 patch=1,EE,001f4788,word,3c02007f diff --git a/patches/SLUS-21357_449E1F6B.pnach b/patches/SLUS-21357_449E1F6B.pnach index 91d45971..4e56dcb1 100644 --- a/patches/SLUS-21357_449E1F6B.pnach +++ b/patches/SLUS-21357_449E1F6B.pnach @@ -2,7 +2,7 @@ gametitle=Hummer Badlands (U)(SLUS-21357) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21359_053D2239.pnach b/patches/SLUS-21359_053D2239.pnach index 6e401587..9caf7a52 100644 --- a/patches/SLUS-21359_053D2239.pnach +++ b/patches/SLUS-21359_053D2239.pnach @@ -1,10 +1,10 @@ -gametitle=Metal Gear Solid 3 - Subsistence (SLUS_21359) 053D2239 +gametitle=Metal Gear Solid 3 - Subsistence [Disc 1 of 3] (NTSC-U) SLUS-21359 053D2239 [Widescreen 16:9] gsaspectratio=16:9 -author=PeterDelta and No.47 +author=PeterDelta & No.47 description=Renders the game in 16:9 aspect ratio -patch=1,EE,202050AC,word,3F400000 +patch=1,EE,202050AC,extended,3F400000 patch=1,EE,E00367C8,extended,004CCD48 patch=1,EE,204CCD40,extended,3FB00000 patch=1,EE,204CCD44,extended,3F2F7CEE @@ -49,6 +49,10 @@ patch=1,EE,E00367C8,extended,004B7088 patch=1,EE,204B7080,extended,3FB00000 patch=1,EE,204B7084,extended,3F2F7CEE patch=1,EE,204B708C,extended,BFB00000 +patch=1,EE,E00367C8,extended,004B2B80 +patch=1,EE,204B2B78,extended,3FB00000 +patch=1,EE,204B2B7C,extended,3F2F7CEE +patch=1,EE,204B2B84,extended,BFB00000 patch=1,EE,E00367C8,extended,0049DAC0 patch=1,EE,2049DAB8,extended,3FB00000 patch=1,EE,2049DABC,extended,3F2F7CEE @@ -57,6 +61,18 @@ patch=1,EE,E00367C8,extended,004AD5E0 patch=1,EE,204AD5D8,extended,3FB00000 patch=1,EE,204AD5DC,extended,3F2F7CEE patch=1,EE,204AD5E4,extended,BFB00000 +patch=1,EE,E00367C8,extended,004BFBA0 +patch=1,EE,204BFB98,extended,3FB00000 +patch=1,EE,204BFB9C,extended,3F2F7CEE +patch=1,EE,204BFBA4,extended,BFB00000 +patch=1,EE,E00367C8,extended,004AECA0 +patch=1,EE,204AEC98,extended,3FB00000 +patch=1,EE,204AEC9C,extended,3F2F7CEE +patch=1,EE,204AECA4,extended,BFB00000 +patch=1,EE,E00367C8,extended,004A1E70 +patch=1,EE,204A1E68,extended,3FB00000 +patch=1,EE,204A1E6C,extended,3F2F7CEE +patch=1,EE,204A1E74,extended,BFB00000 [Remove Blackbars] author=PeterDelta @@ -66,11 +82,12 @@ patch=1,EE,E0010001,extended,0020C174 patch=1,EE,0025E69C,extended,00000001 [60 FPS] -author=Kabuto_Kun -description=60 fps patch (may need overclocking EE). +author=Kabuto_Kun & PeterDelta +description=60 fps patch (may need overclocking EE 130%). patch=1,EE,001D5AD8,extended,00000000 patch=1,EE,001D6DB8,extended,00000001 patch=1,EE,001D6DBC,extended,00000000 +patch=1,EE,001D6DCC,extended,00000000 [30 FPS] description=30 fps patch. diff --git a/patches/SLUS-21361_25FC361B.pnach b/patches/SLUS-21361_25FC361B.pnach index c9f6172e..5bfbbc0c 100644 --- a/patches/SLUS-21361_25FC361B.pnach +++ b/patches/SLUS-21361_25FC361B.pnach @@ -2,7 +2,7 @@ gametitle=Devil May Cry 3 - Special Edition (SLUS_21361) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,21D0DEA0,word,3F400000 //horizontal fov patch=1,EE,206A2870,word,3F400000 //hud fix, pause screen fix diff --git a/patches/SLUS-21362_BD17248E.pnach b/patches/SLUS-21362_BD17248E.pnach index c6780fc9..72f83cc7 100644 --- a/patches/SLUS-21362_BD17248E.pnach +++ b/patches/SLUS-21362_BD17248E.pnach @@ -2,7 +2,7 @@ gametitle=Onimusha: Dawn of Dreams (Disc 1) (SLPM-66275) / Onimusha: Dawn of Dre [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by Arapapa) +author=nemesis2000 (pnach by Arapapa) //gameplay diff --git a/patches/SLUS-21362_FFDE85E9.pnach b/patches/SLUS-21362_FFDE85E9.pnach index 5f0f9103..e86971b0 100644 --- a/patches/SLUS-21362_FFDE85E9.pnach +++ b/patches/SLUS-21362_FFDE85E9.pnach @@ -2,7 +2,7 @@ gametitle=Onimusha: Dawn of Dreams (Disc 1) (SLUS-21180) / Onimusha: Dawn of Dre [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen correction by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay diff --git a/patches/SLUS-21363_13E18BC1.pnach b/patches/SLUS-21363_13E18BC1.pnach index 5bf44dea..4f996579 100644 --- a/patches/SLUS-21363_13E18BC1.pnach +++ b/patches/SLUS-21363_13E18BC1.pnach @@ -2,7 +2,7 @@ gametitle=Zatch Bell! Mamodo Fury [NTSC-U] (SLUS-21363) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //16:9 patch=1,EE,0022a91c,word,3c013f40 // 00000000 hor diff --git a/patches/SLUS-21364_7C87580D.pnach b/patches/SLUS-21364_7C87580D.pnach index 6affb4cc..ceaf863b 100644 --- a/patches/SLUS-21364_7C87580D.pnach +++ b/patches/SLUS-21364_7C87580D.pnach @@ -2,7 +2,7 @@ gametitle=One Piece Pirates' Carnival [NTSC-U] (SLUS-21364) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Little Giant +author=Little Giant //16:9 patch=1,EE,001c931c,word,3C023FE3 //3C023FAA vert diff --git a/patches/SLUS-21365_4EE93170.pnach b/patches/SLUS-21365_4EE93170.pnach index b65e3305..39ab8dac 100644 --- a/patches/SLUS-21365_4EE93170.pnach +++ b/patches/SLUS-21365_4EE93170.pnach @@ -2,7 +2,7 @@ gametitle=The King of Fighters 2006 (SLUS-213651) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0013b2f4,word,46000003 patch=1,EE,0013b2f8,word,7fb00010 diff --git a/patches/SLUS-21367_9315EF73.pnach b/patches/SLUS-21367_9315EF73.pnach index 610bac1b..17a2b111 100644 --- a/patches/SLUS-21367_9315EF73.pnach +++ b/patches/SLUS-21367_9315EF73.pnach @@ -2,7 +2,7 @@ gametitle=MVP 06 NCAA Baseball (U)(SLUS-21367) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21376_5C891FF1.pnach b/patches/SLUS-21376_5C891FF1.pnach index c8ba97b4..ec65a7aa 100644 --- a/patches/SLUS-21376_5C891FF1.pnach +++ b/patches/SLUS-21376_5C891FF1.pnach @@ -20,4 +20,9 @@ comment=Unlocked at 60 FPS. Might need enable 180% EE Overclock to be stable. patch=1,EE,1040DF74,extended,00000001 // 60 fps patch=1,EE,205A8A9C,extended,3C888889 // speed patch=1,EE,204BC13C,extended,3C888889 -patch=1,EE,2040EBAC,extended,3C888889 \ No newline at end of file +patch=1,EE,2040EBAC,extended,3C888889 + +[Video Mode] +author=Gabominated +description=Always display standard-480p video selector. +patch=1,EE,003BE7A4,word,00000001 \ No newline at end of file diff --git a/patches/SLUS-21379_A326D973.pnach b/patches/SLUS-21379_A326D973.pnach index f609be07..a20b891e 100644 --- a/patches/SLUS-21379_A326D973.pnach +++ b/patches/SLUS-21379_A326D973.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's African Safari (U)(SLUS-21379) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21382_309FC75F.pnach b/patches/SLUS-21382_309FC75F.pnach index 8ea16bf7..9c074ad6 100644 --- a/patches/SLUS-21382_309FC75F.pnach +++ b/patches/SLUS-21382_309FC75F.pnach @@ -2,7 +2,7 @@ gametitle=Franklin - A Birthday Surprise (U)(SLUS-21382) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21384_CACC5766.pnach b/patches/SLUS-21384_CACC5766.pnach index 3d67bf3a..2b825620 100644 --- a/patches/SLUS-21384_CACC5766.pnach +++ b/patches/SLUS-21384_CACC5766.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's Alaskan Adventures (U)(SLUS-21384) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21385_D850707E.pnach b/patches/SLUS-21385_D850707E.pnach index f61bfee6..75b2ad3e 100644 --- a/patches/SLUS-21385_D850707E.pnach +++ b/patches/SLUS-21385_D850707E.pnach @@ -2,7 +2,7 @@ gametitle=The Godfather (NTSC-U)(SLUS-21385) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21386_045D77E9.pnach b/patches/SLUS-21386_045D77E9.pnach new file mode 100644 index 00000000..6de11f40 --- /dev/null +++ b/patches/SLUS-21386_045D77E9.pnach @@ -0,0 +1,109 @@ +gametitle=Tales Of The Abyss (NTSC-U) SLUS-21386 045D77E9 (Undub) + +[Widescreen 16:9] +gsaspectratio=16:9 +comment=Tales Of The Abyss (NTSC-U) (SLUS-21386) 16:9 Widescreen Hack +patch=1,EE,0032E004,word,00000000 //Activate Internal Widescreen (Vert-) +patch=1,EE,0019435C,word,3C013F40 //Camera Zoom +patch=1,EE,0033E880,word,3C023F19 //Menu Graphics Scale +patch=1,EE,0034133C,word,3C034555 //Config/Save Background Size +patch=1,EE,003B14EC,word,3C024555 //Black Background Size +patch=1,EE,00117E34,word,240200C0 //Company Logo Screens Width (192px) +patch=1,EE,002B2CA0,word,3C0343D5 //Game Logo X Position +patch=1,EE,002B2D4C,word,3C0343D5 //Trademark X Position +patch=1,EE,002B2DF8,word,3C0343AD //Author Name X Position +patch=1,EE,002B2EF0,word,3C0243D5 //New Game X Position +patch=1,EE,002B3050,word,3C0243D5 //Continue X Position +patch=1,EE,002B3130,word,3C0243D5 //Config X Position +patch=1,EE,002B3220,word,3C0243D5 //Sound Test X Position +patch=1,EE,002B3300,word,3C0243D5 //Game Record X Position +patch=1,EE,002B1A3C,word,3C0243D5 //Game Over Alternate Third Option Text X Position +patch=1,EE,002B1A04,word,3C0243D5 //Game Over View Skit Text X Position +patch=1,EE,002B19C8,word,3C0243D5 //Game Over Quit Game Text X Position +patch=1,EE,002B199C,word,3C0343D5 //Game Over Load Data Text X Position +patch=1,EE,002B1A70,word,3C0243D5 //Game Over Upper Centre Text X Position +patch=1,EE,0036892C,word,3C033F19 //Notice Textbox GFX Scale +patch=1,EE,00338CC8,word,3C023F19 //Action Indicator GFX Position Multiplier +patch=1,EE,00338C84,word,3C1B3F40 //Action Indicator GFX Scale +patch=1,EE,00338CA0,word,449B0000 //Action Indicator GFX Scale Update +patch=1,EE,003B1620,word,3C0343D5 //Checking Memory Card Textbox X Position +patch=1,EE,003B0C40,word,3C0343D5 //Loading System Data Textbox X Position +patch=1,EE,003AFCB0,word,3C0343D5 //System Data Load Complete Textbox X Position +patch=1,EE,003877E4,word,3C0343D5 //Load Selected File Textbox X Position +patch=1,EE,003B98E4,word,3C0343D5 //Exit Sound Test Textbox X Position +patch=1,EE,00386C70,word,3C0343D5 //Save Error Textbox X Position +patch=1,EE,00389264,word,3C0343D5 //Checking Memory Card Textbox X Position +patch=1,EE,00386B98,word,3C0343D5 //Saving Game Data Textbox X Position +patch=1,EE,003864E8,word,3C0343D5 //Saving System Data Textbox X Position +patch=1,EE,003865B4,word,3C0343D5 //Save Complete Textbox X Position +patch=1,EE,00385F40,word,3C0343D5 //Overwrite Save? Textbox X Position +patch=1,EE,0057AC90,word,444EC000 //Action Indicator X Position +patch=1,EE,002B46C4,word,240601AA //Room Names X Position +patch=1,EE,002A265C,word,3C034455 //Character Textbox Viewport Width (Out of Battle) +patch=1,EE,002A5080,word,3C034455 //Character Textbox Viewport Width (In Battle) +patch=1,EE,0030837C,word,3C013F95 //Portraits Zoom +patch=1,EE,002CE478,word,3C034415 //Portraits Vert +patch=1,EE,002CE4E0,word,3C024400 //Portraits Y Position +patch=1,EE,005D6878,word,43D55555 //Skits Text Position +patch=1,EE,002A3CF8,word,3C0543D5 //Get Item Textbox Position +patch=1,EE,002A222C,word,3C074455 //Story Textbox Range Extend +patch=1,EE,E01ECCCD,extended,00684180 //Battle Enable Condition +patch=1,EE,2068417C,extended,3C063F19 //Battle Status Face Width +patch=1,EE,20683A18,extended,3C093F19 //Battle Status Numbers Width +patch=1,EE,2066D2D8,extended,3C05444D //Battle Hits Counter X Position +patch=1,EE,206A9818,extended,3C024273 //Battle Triangle Fade Size +patch=1,EE,2066D980,extended,3C0443D5 //Arte Names X Position +patch=1,EE,2068F17C,extended,3C034455 //Battle Fades with Colour Size +patch=1,EE,2066EEE0,extended,3C0243D5 //Pause Shadow Position +patch=1,EE,2066EF1C,extended,3C0243D5 //Pause Text Position +patch=1,EE,2067B04C,extended,3C034455 //Battle Fades with Image Size +patch=1,EE,2066BC6C,extended,3C024449 //Battle Enemy Name Header Width +patch=1,EE,2066BCB0,extended,3C03444F //Battle Enemy Name Header Edge Position +patch=1,EE,2066BE1C,extended,3C03444D //Battle Enemy Name Position +patch=1,EE,206523DC,extended,3C034455 //Battle Damage Number Placement Scale +patch=1,EE,20696804,extended,3C0543D5 //Starting Position of Battle Rewards +patch=1,EE,20694290,extended,3C02442F //Destination Position of Gald Time Grade Rewards +patch=1,EE,2069305C,extended,3C024438 //Details Battle End Text Position +patch=1,EE,20693000,extended,3C02442B //Details Battle End Box Position +patch=1,EE,20696CD8,extended,240301AA //Textbox Position Item Won From Battle +patch=1,EE,206969E8,extended,24030335 //Textbox Size Item Won From Battle +patch=1,EE,20696A10,extended,240301AA //Textbox Position Item Won From Battle (Part 2) +patch=1,EE,20696A0C,extended,24020335 //Textbox Size Item Won From Battle (Part 2) +patch=1,EE,20684720,extended,3C023F19 //In Battle Level Change Indicator Size +patch=1,EE,206C1DA8,extended,43810000 //Artes Selection Position +patch=1,EE,206C1DC8,extended,43A50000 //Strat Selection Position +patch=1,EE,206C1DE8,extended,43C90000 //Equip Selection Position +patch=1,EE,206C1E08,extended,43ED0000 //Item Selection Position +patch=1,EE,206C1E28,extended,44088000 //Escape Selection Position +patch=1,EE,2066AE8C,extended,3C034416 //Enemy Name Selection Screen Position +patch=1,EE,2066AF0C,extended,3C03445D //Enemy Name Slide Out Position +patch=1,EE,2064C4E8,extended,3C034455 //Battle Motion Blur Size +patch=1,EE,00579B40,word,43D55555 //Centered Story Textboxes X Position +patch=1,EE,00579B68,word,43D55555 //Game Over Skit Textboxes X Position +patch=1,EE,00579B50,word,43D55555 //Top Aligned Story Textboxes X Position +patch=1,EE,E0173F6E,extended,00673BA0 //World Map Enable Condition +patch=1,EE,20673B98,extended,3C023F19 //Upper Left Offset (World Map) +patch=1,EE,20673DC8,extended,3C023F19 //Upper Right Offset (World Map) +patch=1,EE,20673FF8,extended,3C023F19 //Lower Left Offset (World Map) +patch=1,EE,20674228,extended,3C023F19 //Lower Right Offset (World Map) +patch=1,EE,20672528,extended,3C023F19 //Upper Left World Map Scissor Offset +patch=1,EE,20672758,extended,3C023F19 //Upper Right World Map Scissor Offset +patch=1,EE,20672988,extended,3C023F19 //Lower Left World Map Scissor Offset +patch=1,EE,20672BB8,extended,3C023F19 //Lower Right World Map Scissor Offset +patch=1,EE,2066B790,extended,3C033F19 //East Offset (World Map) +patch=1,EE,2066BB40,extended,3C033F19 //West Offset (World Map) +patch=1,EE,2066BEF0,extended,3C033F19 //South Offset (World Map) +patch=1,EE,2066C2A0,extended,3C033F19 //North Offset (World Map) +patch=1,EE,2066C650,extended,3C033F19 //Wanted Direction Shadow 1 Offset (World Map) +patch=1,EE,2066CA00,extended,3C033F19 //Wanted Direction Shadow 2 Offset (World Map) +patch=1,EE,2066CDB0,extended,3C033F19 //Wanted Direction Shadow 3 Offset (World Map) +patch=1,EE,206A47A4,extended,240601AA //Level Names (Places) X Position (World Map) +patch=1,EE,206A4A48,extended,240601AA //Level Names (Objects) X Position (World Map) +patch=1,EE,206A3F08,extended,240601AA //Level Names (Alternate) X Position (World Map) +patch=1,EE,206A47F8,extended,240602A1 //Enter (Places) X Position (World Map) +patch=1,EE,206A4AC8,extended,240602A1 //Enter (Objects) X Position (World Map) +patch=1,EE,206A3F9C,extended,240602A1 //Enter (Alternate) X Position (World Map) +patch=1,EE,206AA610,extended,3C154480 //Fades X Position (World Map) +patch=1,EE,206AA654,extended,3C134200 //Fades Size (World Map) +patch=1,EE,205E570C,extended,00000000 // black grid fix - by sergx12 +// https://forums.pcsx2.net/Thread-PCSX2-Widescreen-Game-Patches?pid=627849#pid627849 \ No newline at end of file diff --git a/patches/SLUS-21386_14FE77F7.pnach b/patches/SLUS-21386_14FE77F7.pnach index 10b7b037..100f10ae 100644 --- a/patches/SLUS-21386_14FE77F7.pnach +++ b/patches/SLUS-21386_14FE77F7.pnach @@ -47,7 +47,6 @@ patch=1,EE,002CE4E0,word,3C024400 //Portraits Y Position patch=1,EE,005D6878,word,43D55555 //Skits Text Position patch=1,EE,002A3CF8,word,3C0543D5 //Get Item Textbox Position patch=1,EE,002A222C,word,3C074455 //Story Textbox Range Extend -patch=1,EE,0011A668,word,00000000 //Bloom Off patch=1,EE,E01ECCCD,extended,00684180 //Battle Enable Condition patch=1,EE,2068417C,extended,3C063F19 //Battle Status Face Width patch=1,EE,20683A18,extended,3C093F19 //Battle Status Numbers Width @@ -106,5 +105,5 @@ patch=1,EE,206A4AC8,extended,240602A1 //Enter (Objects) X Position (World Map) patch=1,EE,206A3F9C,extended,240602A1 //Enter (Alternate) X Position (World Map) patch=1,EE,206AA610,extended,3C154480 //Fades X Position (World Map) patch=1,EE,206AA654,extended,3C134200 //Fades Size (World Map) - - +patch=1,EE,205E570C,extended,00000000 // black grid fix - by sergx12 +// https://forums.pcsx2.net/Thread-PCSX2-Widescreen-Game-Patches?pid=627849#pid627849 diff --git a/patches/SLUS-21386_A616A6C2.pnach b/patches/SLUS-21386_A616A6C2.pnach new file mode 100644 index 00000000..54bf183e --- /dev/null +++ b/patches/SLUS-21386_A616A6C2.pnach @@ -0,0 +1,109 @@ +gametitle=Tales Of The Abyss (NTSC-U) SLUS-21386 A616A6C2 (Spanish Fan Translation Undub) + +[Widescreen 16:9] +gsaspectratio=16:9 +comment=Tales Of The Abyss (NTSC-U) (SLUS-21386) 16:9 Widescreen Hack +patch=1,EE,0032E004,word,00000000 //Activate Internal Widescreen (Vert-) +patch=1,EE,0019435C,word,3C013F40 //Camera Zoom +patch=1,EE,0033E880,word,3C023F19 //Menu Graphics Scale +patch=1,EE,0034133C,word,3C034555 //Config/Save Background Size +patch=1,EE,003B14EC,word,3C024555 //Black Background Size +patch=1,EE,00117E34,word,240200C0 //Company Logo Screens Width (192px) +patch=1,EE,002B2CA0,word,3C0343D5 //Game Logo X Position +patch=1,EE,002B2D4C,word,3C0343D5 //Trademark X Position +patch=1,EE,002B2DF8,word,3C0343AD //Author Name X Position +patch=1,EE,002B2EF0,word,3C0243D5 //New Game X Position +patch=1,EE,002B3050,word,3C0243D5 //Continue X Position +patch=1,EE,002B3130,word,3C0243D5 //Config X Position +patch=1,EE,002B3220,word,3C0243D5 //Sound Test X Position +patch=1,EE,002B3300,word,3C0243D5 //Game Record X Position +patch=1,EE,002B1A3C,word,3C0243D5 //Game Over Alternate Third Option Text X Position +patch=1,EE,002B1A04,word,3C0243D5 //Game Over View Skit Text X Position +patch=1,EE,002B19C8,word,3C0243D5 //Game Over Quit Game Text X Position +patch=1,EE,002B199C,word,3C0343D5 //Game Over Load Data Text X Position +patch=1,EE,002B1A70,word,3C0243D5 //Game Over Upper Centre Text X Position +patch=1,EE,0036892C,word,3C033F19 //Notice Textbox GFX Scale +patch=1,EE,00338CC8,word,3C023F19 //Action Indicator GFX Position Multiplier +patch=1,EE,00338C84,word,3C1B3F40 //Action Indicator GFX Scale +patch=1,EE,00338CA0,word,449B0000 //Action Indicator GFX Scale Update +patch=1,EE,003B1620,word,3C0343D5 //Checking Memory Card Textbox X Position +patch=1,EE,003B0C40,word,3C0343D5 //Loading System Data Textbox X Position +patch=1,EE,003AFCB0,word,3C0343D5 //System Data Load Complete Textbox X Position +patch=1,EE,003877E4,word,3C0343D5 //Load Selected File Textbox X Position +patch=1,EE,003B98E4,word,3C0343D5 //Exit Sound Test Textbox X Position +patch=1,EE,00386C70,word,3C0343D5 //Save Error Textbox X Position +patch=1,EE,00389264,word,3C0343D5 //Checking Memory Card Textbox X Position +patch=1,EE,00386B98,word,3C0343D5 //Saving Game Data Textbox X Position +patch=1,EE,003864E8,word,3C0343D5 //Saving System Data Textbox X Position +patch=1,EE,003865B4,word,3C0343D5 //Save Complete Textbox X Position +patch=1,EE,00385F40,word,3C0343D5 //Overwrite Save? Textbox X Position +patch=1,EE,0057AC90,word,444EC000 //Action Indicator X Position +patch=1,EE,002B46C4,word,240601AA //Room Names X Position +patch=1,EE,002A265C,word,3C034455 //Character Textbox Viewport Width (Out of Battle) +patch=1,EE,002A5080,word,3C034455 //Character Textbox Viewport Width (In Battle) +patch=1,EE,0030837C,word,3C013F95 //Portraits Zoom +patch=1,EE,002CE478,word,3C034415 //Portraits Vert +patch=1,EE,002CE4E0,word,3C024400 //Portraits Y Position +patch=1,EE,005D6878,word,43D55555 //Skits Text Position +patch=1,EE,002A3CF8,word,3C0543D5 //Get Item Textbox Position +patch=1,EE,002A222C,word,3C074455 //Story Textbox Range Extend +patch=1,EE,E01ECCCD,extended,00684180 //Battle Enable Condition +patch=1,EE,2068417C,extended,3C063F19 //Battle Status Face Width +patch=1,EE,20683A18,extended,3C093F19 //Battle Status Numbers Width +patch=1,EE,2066D2D8,extended,3C05444D //Battle Hits Counter X Position +patch=1,EE,206A9818,extended,3C024273 //Battle Triangle Fade Size +patch=1,EE,2066D980,extended,3C0443D5 //Arte Names X Position +patch=1,EE,2068F17C,extended,3C034455 //Battle Fades with Colour Size +patch=1,EE,2066EEE0,extended,3C0243D5 //Pause Shadow Position +patch=1,EE,2066EF1C,extended,3C0243D5 //Pause Text Position +patch=1,EE,2067B04C,extended,3C034455 //Battle Fades with Image Size +patch=1,EE,2066BC6C,extended,3C024449 //Battle Enemy Name Header Width +patch=1,EE,2066BCB0,extended,3C03444F //Battle Enemy Name Header Edge Position +patch=1,EE,2066BE1C,extended,3C03444D //Battle Enemy Name Position +patch=1,EE,206523DC,extended,3C034455 //Battle Damage Number Placement Scale +patch=1,EE,20696804,extended,3C0543D5 //Starting Position of Battle Rewards +patch=1,EE,20694290,extended,3C02442F //Destination Position of Gald Time Grade Rewards +patch=1,EE,2069305C,extended,3C024438 //Details Battle End Text Position +patch=1,EE,20693000,extended,3C02442B //Details Battle End Box Position +patch=1,EE,20696CD8,extended,240301AA //Textbox Position Item Won From Battle +patch=1,EE,206969E8,extended,24030335 //Textbox Size Item Won From Battle +patch=1,EE,20696A10,extended,240301AA //Textbox Position Item Won From Battle (Part 2) +patch=1,EE,20696A0C,extended,24020335 //Textbox Size Item Won From Battle (Part 2) +patch=1,EE,20684720,extended,3C023F19 //In Battle Level Change Indicator Size +patch=1,EE,206C1DA8,extended,43810000 //Artes Selection Position +patch=1,EE,206C1DC8,extended,43A50000 //Strat Selection Position +patch=1,EE,206C1DE8,extended,43C90000 //Equip Selection Position +patch=1,EE,206C1E08,extended,43ED0000 //Item Selection Position +patch=1,EE,206C1E28,extended,44088000 //Escape Selection Position +patch=1,EE,2066AE8C,extended,3C034416 //Enemy Name Selection Screen Position +patch=1,EE,2066AF0C,extended,3C03445D //Enemy Name Slide Out Position +patch=1,EE,2064C4E8,extended,3C034455 //Battle Motion Blur Size +patch=1,EE,00579B40,word,43D55555 //Centered Story Textboxes X Position +patch=1,EE,00579B68,word,43D55555 //Game Over Skit Textboxes X Position +patch=1,EE,00579B50,word,43D55555 //Top Aligned Story Textboxes X Position +patch=1,EE,E0173F6E,extended,00673BA0 //World Map Enable Condition +patch=1,EE,20673B98,extended,3C023F19 //Upper Left Offset (World Map) +patch=1,EE,20673DC8,extended,3C023F19 //Upper Right Offset (World Map) +patch=1,EE,20673FF8,extended,3C023F19 //Lower Left Offset (World Map) +patch=1,EE,20674228,extended,3C023F19 //Lower Right Offset (World Map) +patch=1,EE,20672528,extended,3C023F19 //Upper Left World Map Scissor Offset +patch=1,EE,20672758,extended,3C023F19 //Upper Right World Map Scissor Offset +patch=1,EE,20672988,extended,3C023F19 //Lower Left World Map Scissor Offset +patch=1,EE,20672BB8,extended,3C023F19 //Lower Right World Map Scissor Offset +patch=1,EE,2066B790,extended,3C033F19 //East Offset (World Map) +patch=1,EE,2066BB40,extended,3C033F19 //West Offset (World Map) +patch=1,EE,2066BEF0,extended,3C033F19 //South Offset (World Map) +patch=1,EE,2066C2A0,extended,3C033F19 //North Offset (World Map) +patch=1,EE,2066C650,extended,3C033F19 //Wanted Direction Shadow 1 Offset (World Map) +patch=1,EE,2066CA00,extended,3C033F19 //Wanted Direction Shadow 2 Offset (World Map) +patch=1,EE,2066CDB0,extended,3C033F19 //Wanted Direction Shadow 3 Offset (World Map) +patch=1,EE,206A47A4,extended,240601AA //Level Names (Places) X Position (World Map) +patch=1,EE,206A4A48,extended,240601AA //Level Names (Objects) X Position (World Map) +patch=1,EE,206A3F08,extended,240601AA //Level Names (Alternate) X Position (World Map) +patch=1,EE,206A47F8,extended,240602A1 //Enter (Places) X Position (World Map) +patch=1,EE,206A4AC8,extended,240602A1 //Enter (Objects) X Position (World Map) +patch=1,EE,206A3F9C,extended,240602A1 //Enter (Alternate) X Position (World Map) +patch=1,EE,206AA610,extended,3C154480 //Fades X Position (World Map) +patch=1,EE,206AA654,extended,3C134200 //Fades Size (World Map) +patch=1,EE,205E570C,extended,00000000 // black grid fix - by sergx12 +// https://forums.pcsx2.net/Thread-PCSX2-Widescreen-Game-Patches?pid=627849#pid627849 diff --git a/patches/SLUS-21386_B6B5A6DC.pnach b/patches/SLUS-21386_B6B5A6DC.pnach new file mode 100644 index 00000000..1213fd75 --- /dev/null +++ b/patches/SLUS-21386_B6B5A6DC.pnach @@ -0,0 +1,109 @@ +gametitle=Tales Of The Abyss (NTSC-U) SLUS-21386 B6B5A6DC (Spanish Fan Translation) + +[Widescreen 16:9] +gsaspectratio=16:9 +comment=Tales Of The Abyss (NTSC-U) (SLUS-21386) 16:9 Widescreen Hack +patch=1,EE,0032E004,word,00000000 //Activate Internal Widescreen (Vert-) +patch=1,EE,0019435C,word,3C013F40 //Camera Zoom +patch=1,EE,0033E880,word,3C023F19 //Menu Graphics Scale +patch=1,EE,0034133C,word,3C034555 //Config/Save Background Size +patch=1,EE,003B14EC,word,3C024555 //Black Background Size +patch=1,EE,00117E34,word,240200C0 //Company Logo Screens Width (192px) +patch=1,EE,002B2CA0,word,3C0343D5 //Game Logo X Position +patch=1,EE,002B2D4C,word,3C0343D5 //Trademark X Position +patch=1,EE,002B2DF8,word,3C0343AD //Author Name X Position +patch=1,EE,002B2EF0,word,3C0243D5 //New Game X Position +patch=1,EE,002B3050,word,3C0243D5 //Continue X Position +patch=1,EE,002B3130,word,3C0243D5 //Config X Position +patch=1,EE,002B3220,word,3C0243D5 //Sound Test X Position +patch=1,EE,002B3300,word,3C0243D5 //Game Record X Position +patch=1,EE,002B1A3C,word,3C0243D5 //Game Over Alternate Third Option Text X Position +patch=1,EE,002B1A04,word,3C0243D5 //Game Over View Skit Text X Position +patch=1,EE,002B19C8,word,3C0243D5 //Game Over Quit Game Text X Position +patch=1,EE,002B199C,word,3C0343D5 //Game Over Load Data Text X Position +patch=1,EE,002B1A70,word,3C0243D5 //Game Over Upper Centre Text X Position +patch=1,EE,0036892C,word,3C033F19 //Notice Textbox GFX Scale +patch=1,EE,00338CC8,word,3C023F19 //Action Indicator GFX Position Multiplier +patch=1,EE,00338C84,word,3C1B3F40 //Action Indicator GFX Scale +patch=1,EE,00338CA0,word,449B0000 //Action Indicator GFX Scale Update +patch=1,EE,003B1620,word,3C0343D5 //Checking Memory Card Textbox X Position +patch=1,EE,003B0C40,word,3C0343D5 //Loading System Data Textbox X Position +patch=1,EE,003AFCB0,word,3C0343D5 //System Data Load Complete Textbox X Position +patch=1,EE,003877E4,word,3C0343D5 //Load Selected File Textbox X Position +patch=1,EE,003B98E4,word,3C0343D5 //Exit Sound Test Textbox X Position +patch=1,EE,00386C70,word,3C0343D5 //Save Error Textbox X Position +patch=1,EE,00389264,word,3C0343D5 //Checking Memory Card Textbox X Position +patch=1,EE,00386B98,word,3C0343D5 //Saving Game Data Textbox X Position +patch=1,EE,003864E8,word,3C0343D5 //Saving System Data Textbox X Position +patch=1,EE,003865B4,word,3C0343D5 //Save Complete Textbox X Position +patch=1,EE,00385F40,word,3C0343D5 //Overwrite Save? Textbox X Position +patch=1,EE,0057AC90,word,444EC000 //Action Indicator X Position +patch=1,EE,002B46C4,word,240601AA //Room Names X Position +patch=1,EE,002A265C,word,3C034455 //Character Textbox Viewport Width (Out of Battle) +patch=1,EE,002A5080,word,3C034455 //Character Textbox Viewport Width (In Battle) +patch=1,EE,0030837C,word,3C013F95 //Portraits Zoom +patch=1,EE,002CE478,word,3C034415 //Portraits Vert +patch=1,EE,002CE4E0,word,3C024400 //Portraits Y Position +patch=1,EE,005D6878,word,43D55555 //Skits Text Position +patch=1,EE,002A3CF8,word,3C0543D5 //Get Item Textbox Position +patch=1,EE,002A222C,word,3C074455 //Story Textbox Range Extend +patch=1,EE,E01ECCCD,extended,00684180 //Battle Enable Condition +patch=1,EE,2068417C,extended,3C063F19 //Battle Status Face Width +patch=1,EE,20683A18,extended,3C093F19 //Battle Status Numbers Width +patch=1,EE,2066D2D8,extended,3C05444D //Battle Hits Counter X Position +patch=1,EE,206A9818,extended,3C024273 //Battle Triangle Fade Size +patch=1,EE,2066D980,extended,3C0443D5 //Arte Names X Position +patch=1,EE,2068F17C,extended,3C034455 //Battle Fades with Colour Size +patch=1,EE,2066EEE0,extended,3C0243D5 //Pause Shadow Position +patch=1,EE,2066EF1C,extended,3C0243D5 //Pause Text Position +patch=1,EE,2067B04C,extended,3C034455 //Battle Fades with Image Size +patch=1,EE,2066BC6C,extended,3C024449 //Battle Enemy Name Header Width +patch=1,EE,2066BCB0,extended,3C03444F //Battle Enemy Name Header Edge Position +patch=1,EE,2066BE1C,extended,3C03444D //Battle Enemy Name Position +patch=1,EE,206523DC,extended,3C034455 //Battle Damage Number Placement Scale +patch=1,EE,20696804,extended,3C0543D5 //Starting Position of Battle Rewards +patch=1,EE,20694290,extended,3C02442F //Destination Position of Gald Time Grade Rewards +patch=1,EE,2069305C,extended,3C024438 //Details Battle End Text Position +patch=1,EE,20693000,extended,3C02442B //Details Battle End Box Position +patch=1,EE,20696CD8,extended,240301AA //Textbox Position Item Won From Battle +patch=1,EE,206969E8,extended,24030335 //Textbox Size Item Won From Battle +patch=1,EE,20696A10,extended,240301AA //Textbox Position Item Won From Battle (Part 2) +patch=1,EE,20696A0C,extended,24020335 //Textbox Size Item Won From Battle (Part 2) +patch=1,EE,20684720,extended,3C023F19 //In Battle Level Change Indicator Size +patch=1,EE,206C1DA8,extended,43810000 //Artes Selection Position +patch=1,EE,206C1DC8,extended,43A50000 //Strat Selection Position +patch=1,EE,206C1DE8,extended,43C90000 //Equip Selection Position +patch=1,EE,206C1E08,extended,43ED0000 //Item Selection Position +patch=1,EE,206C1E28,extended,44088000 //Escape Selection Position +patch=1,EE,2066AE8C,extended,3C034416 //Enemy Name Selection Screen Position +patch=1,EE,2066AF0C,extended,3C03445D //Enemy Name Slide Out Position +patch=1,EE,2064C4E8,extended,3C034455 //Battle Motion Blur Size +patch=1,EE,00579B40,word,43D55555 //Centered Story Textboxes X Position +patch=1,EE,00579B68,word,43D55555 //Game Over Skit Textboxes X Position +patch=1,EE,00579B50,word,43D55555 //Top Aligned Story Textboxes X Position +patch=1,EE,E0173F6E,extended,00673BA0 //World Map Enable Condition +patch=1,EE,20673B98,extended,3C023F19 //Upper Left Offset (World Map) +patch=1,EE,20673DC8,extended,3C023F19 //Upper Right Offset (World Map) +patch=1,EE,20673FF8,extended,3C023F19 //Lower Left Offset (World Map) +patch=1,EE,20674228,extended,3C023F19 //Lower Right Offset (World Map) +patch=1,EE,20672528,extended,3C023F19 //Upper Left World Map Scissor Offset +patch=1,EE,20672758,extended,3C023F19 //Upper Right World Map Scissor Offset +patch=1,EE,20672988,extended,3C023F19 //Lower Left World Map Scissor Offset +patch=1,EE,20672BB8,extended,3C023F19 //Lower Right World Map Scissor Offset +patch=1,EE,2066B790,extended,3C033F19 //East Offset (World Map) +patch=1,EE,2066BB40,extended,3C033F19 //West Offset (World Map) +patch=1,EE,2066BEF0,extended,3C033F19 //South Offset (World Map) +patch=1,EE,2066C2A0,extended,3C033F19 //North Offset (World Map) +patch=1,EE,2066C650,extended,3C033F19 //Wanted Direction Shadow 1 Offset (World Map) +patch=1,EE,2066CA00,extended,3C033F19 //Wanted Direction Shadow 2 Offset (World Map) +patch=1,EE,2066CDB0,extended,3C033F19 //Wanted Direction Shadow 3 Offset (World Map) +patch=1,EE,206A47A4,extended,240601AA //Level Names (Places) X Position (World Map) +patch=1,EE,206A4A48,extended,240601AA //Level Names (Objects) X Position (World Map) +patch=1,EE,206A3F08,extended,240601AA //Level Names (Alternate) X Position (World Map) +patch=1,EE,206A47F8,extended,240602A1 //Enter (Places) X Position (World Map) +patch=1,EE,206A4AC8,extended,240602A1 //Enter (Objects) X Position (World Map) +patch=1,EE,206A3F9C,extended,240602A1 //Enter (Alternate) X Position (World Map) +patch=1,EE,206AA610,extended,3C154480 //Fades X Position (World Map) +patch=1,EE,206AA654,extended,3C134200 //Fades Size (World Map) +patch=1,EE,205E570C,extended,00000000 // black grid fix - by sergx12 +// https://forums.pcsx2.net/Thread-PCSX2-Widescreen-Game-Patches?pid=627849#pid627849 diff --git a/patches/SLUS-21387_701965CE.pnach b/patches/SLUS-21387_701965CE.pnach index 16d0c038..bcc0fcab 100644 --- a/patches/SLUS-21387_701965CE.pnach +++ b/patches/SLUS-21387_701965CE.pnach @@ -2,7 +2,7 @@ gametitle=Warship Gunner 2 (U)(SLUS-21387) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21388_7C006C52.pnach b/patches/SLUS-21388_7C006C52.pnach index 0748b009..391069fc 100644 --- a/patches/SLUS-21388_7C006C52.pnach +++ b/patches/SLUS-21388_7C006C52.pnach @@ -2,7 +2,7 @@ gametitle=The Sopranos - Road to Respect (U) (SLUS-21388) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Wide 16:9 (00000000 3f90a3d7 3fc00000) patch=1,EE,20429870,word,3fc0d938 // 3f90a3d7 diff --git a/patches/SLUS-21390_17493C04.pnach b/patches/SLUS-21390_17493C04.pnach index 7f458a42..d3506fcd 100644 --- a/patches/SLUS-21390_17493C04.pnach +++ b/patches/SLUS-21390_17493C04.pnach @@ -2,7 +2,7 @@ gametitle=Urban Chaos - Riot Response (NTSC-U) (SLUS-21390) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,00655260,word,3c013f40 // 00000000 hor fov diff --git a/patches/SLUS-21392_34B473E6.pnach b/patches/SLUS-21392_34B473E6.pnach index 94e3067a..813324d7 100644 --- a/patches/SLUS-21392_34B473E6.pnach +++ b/patches/SLUS-21392_34B473E6.pnach @@ -2,7 +2,7 @@ gametitle=DreamWorks Shrek Smash n' Crash Racing (U)(SLUS-21392) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21393_E7ED0846.pnach b/patches/SLUS-21393_E7ED0846.pnach index 98614fa0..684d6de5 100644 --- a/patches/SLUS-21393_E7ED0846.pnach +++ b/patches/SLUS-21393_E7ED0846.pnach @@ -2,7 +2,7 @@ gametitle=Gallop Racer 2006 (U)(SLUS-21393) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //X-Fov diff --git a/patches/SLUS-21394_B32E018E.pnach b/patches/SLUS-21394_B32E018E.pnach index 41d8e1c8..d1cec3fa 100644 --- a/patches/SLUS-21394_B32E018E.pnach +++ b/patches/SLUS-21394_B32E018E.pnach @@ -2,7 +2,7 @@ gametitle=Tokyo Xtreme Racer: Drift 2 (SLUS-21394) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,203f59d0,extended,3f400000 diff --git a/patches/SLUS-21395_52AC9729.pnach b/patches/SLUS-21395_52AC9729.pnach index 145875a7..86f29a4d 100644 --- a/patches/SLUS-21395_52AC9729.pnach +++ b/patches/SLUS-21395_52AC9729.pnach @@ -2,7 +2,7 @@ gametitle=Avatar - The Last Airbender (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht //16:9 patch=1,EE,001426e8,word,3c033fe3 // 3c033faa diff --git a/patches/SLUS-21396_E91EAFEE.pnach b/patches/SLUS-21396_E91EAFEE.pnach index c61fcb9d..843874d2 100644 --- a/patches/SLUS-21396_E91EAFEE.pnach +++ b/patches/SLUS-21396_E91EAFEE.pnach @@ -2,7 +2,7 @@ gametitle=Star Trek - Encounters (U)(SLUS-21396) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21397_951555A0.pnach b/patches/SLUS-21397_951555A0.pnach index 38c4ac7d..fd4c94e9 100644 --- a/patches/SLUS-21397_951555A0.pnach +++ b/patches/SLUS-21397_951555A0.pnach @@ -2,7 +2,7 @@ gametitle=Disgaea 2: Cursed Memories (SLUS-21397) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,00104a5c,word,3c013f40 patch=1,EE,00104a60,word,44810000 patch=1,EE,00104a68,word,4600c602 diff --git a/patches/SLUS-21400_1AFD7469.pnach b/patches/SLUS-21400_1AFD7469.pnach index a196aaa5..627f4e6c 100644 --- a/patches/SLUS-21400_1AFD7469.pnach +++ b/patches/SLUS-21400_1AFD7469.pnach @@ -1,24 +1,24 @@ gametitle=Monster House (NTSC-U)(SLUS-21400) -[Widescreen 16:9] -gsaspectratio=16:9 -author=Arapapa -comment=Widescreen Hack -//Widescreen hack 16:9 +//[Widescreen 16:9] +//gsaspectratio=16:9 +//author=Arapapa +//comment=Widescreen Hack +//After the first mission the game breaks on the other levels //Y-Fov + Zoom in //00000000 00000000 03150146 00000000 //763f013c 00f88144 42081f46 46011503 -patch=1,EE,001c610c,word,3c013f76 //00000000 -patch=1,EE,001c6110,word,4481f800 //00000000 -patch=1,EE,001c6114,word,461f0842 //46011503 -patch=1,EE,001c6118,word,46011503 //00000000 +//patch=1,EE,001c610c,word,3c013f76 //00000000 +//patch=1,EE,001c6110,word,4481f800 //00000000 +//patch=1,EE,001c6114,word,461f0842 //46011503 +//patch=1,EE,001c6118,word,46011503 //00000000 //Zoom out //0040023c 00008244 3c00a2c7 //dd3f023c 00008244 3c00a2c7 //Zoom value adjust : NTSC-K(3c023fdd), NTSC-U and PAL(3c023fe0) -patch=1,EE,001c60f8,word,3c023fe0 //3c024000 +//patch=1,EE,001c60f8,word,3c023fe0 //3c024000 ////////////////////////////////////// //zoom diff --git a/patches/SLUS-21401_42E245CE.pnach b/patches/SLUS-21401_42E245CE.pnach index 72a1ac5a..bea1893c 100644 --- a/patches/SLUS-21401_42E245CE.pnach +++ b/patches/SLUS-21401_42E245CE.pnach @@ -2,7 +2,7 @@ gametitle=Lucinda Green's Equestrian Challenge (U)(SLUS-21401) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21403_FCA5EE17.pnach b/patches/SLUS-21403_FCA5EE17.pnach index 64408ce1..4d812f58 100644 --- a/patches/SLUS-21403_FCA5EE17.pnach +++ b/patches/SLUS-21403_FCA5EE17.pnach @@ -2,7 +2,7 @@ gametitle=Backyard Sports Baseball 2007 (U)(SLUS-21403) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21409_DBC0EE78.pnach b/patches/SLUS-21409_DBC0EE78.pnach index 96556169..3d5cbded 100644 --- a/patches/SLUS-21409_DBC0EE78.pnach +++ b/patches/SLUS-21409_DBC0EE78.pnach @@ -2,7 +2,7 @@ gametitle=LEGO Star Wars II - The Original Trilogy (U)(SLUS-21409) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21412_47EC4C9E.pnach b/patches/SLUS-21412_47EC4C9E.pnach index 362f4f7c..0fc632cd 100644 --- a/patches/SLUS-21412_47EC4C9E.pnach +++ b/patches/SLUS-21412_47EC4C9E.pnach @@ -2,7 +2,7 @@ gametitle=World Championship Poker - Featuring Howard Lederer - All In (U)(SLUS- [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21413_A4315184.pnach b/patches/SLUS-21413_A4315184.pnach index 35263c15..2330209d 100644 --- a/patches/SLUS-21413_A4315184.pnach +++ b/patches/SLUS-21413_A4315184.pnach @@ -2,7 +2,7 @@ gametitle=Thrillville (U)(SLUS-21413) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21414_3115A446.pnach b/patches/SLUS-21414_3115A446.pnach index bfd1b9fc..9f59a124 100644 --- a/patches/SLUS-21414_3115A446.pnach +++ b/patches/SLUS-21414_3115A446.pnach @@ -1,11 +1,9 @@ -gametitle=Delta Force - Black Hawk Down - Team Sabre (U)(SLUS-21414) +gametitle=Delta Force - Black Hawk Down - Team Sabre (U) (SLUS-21414) 3115A446 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa - -//Widescreen hack 16:9 - +author=Arapapa +description=Widescreen fix //Y-Fov (4:3) //abaaaa3f 00010000 17d0a63f patch=1,EE,004643f8,word,3fe38e39 //3faaaaab @@ -19,4 +17,7 @@ patch=1,EE,000c0008,word,461e6303 patch=1,EE,000c000c,word,e7ac0000 patch=1,EE,000c0010,word,0806e040 - +[60 FPS] +author=PeterDelta +description=Might need EE Overclock (180%). +patch=1,EE,001D3BA8,word,1460000A \ No newline at end of file diff --git a/patches/SLUS-21416_2D7A8F3E.pnach b/patches/SLUS-21416_2D7A8F3E.pnach index a2f6865d..0af93473 100644 --- a/patches/SLUS-21416_2D7A8F3E.pnach +++ b/patches/SLUS-21416_2D7A8F3E.pnach @@ -2,7 +2,7 @@ gametitle=D1 Professional Drift Grand Prix Series (U)(SLUS-21416) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21420_07E37616.pnach b/patches/SLUS-21420_07E37616.pnach index e32c0d21..7f931bef 100644 --- a/patches/SLUS-21420_07E37616.pnach +++ b/patches/SLUS-21420_07E37616.pnach @@ -2,7 +2,7 @@ gametitle=Disney's Chicken Little - Ace in Action (U)(SLUS-21420) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21426_5E843024.pnach b/patches/SLUS-21426_5E843024.pnach new file mode 100644 index 00000000..389ee9ca --- /dev/null +++ b/patches/SLUS-21426_5E843024.pnach @@ -0,0 +1,8 @@ +gametitle=Call of Duty 3 SLUS-21426 5E843024 + +[60 FPS] +author=asasega & Gabominated +description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,2053CF04,extended,00000001 //00000002 +patch=1,EE,E0010001,extended,00543176 +patch=1,EE,2053CF04,extended,00000002 diff --git a/patches/SLUS-21427_9D5AC274.pnach b/patches/SLUS-21427_9D5AC274.pnach index b8dae369..1a5bfca6 100644 --- a/patches/SLUS-21427_9D5AC274.pnach +++ b/patches/SLUS-21427_9D5AC274.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown vs. Raw 2007 (SLUS-21427) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 patch=1,EE,002b1ac8,word,3c013f40 diff --git a/patches/SLUS-21428_EB6C8519.pnach b/patches/SLUS-21428_EB6C8519.pnach new file mode 100644 index 00000000..2db487f2 --- /dev/null +++ b/patches/SLUS-21428_EB6C8519.pnach @@ -0,0 +1,6 @@ +gametitle=Bionicle Heroes NTSC-U SLUS-21428 EB6C8519 + +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,001C9674,word,24020002 //24020004 \ No newline at end of file diff --git a/patches/SLUS-21430_F23579D9.pnach b/patches/SLUS-21430_F23579D9.pnach index 04e0e2e9..e045e253 100644 --- a/patches/SLUS-21430_F23579D9.pnach +++ b/patches/SLUS-21430_F23579D9.pnach @@ -2,7 +2,7 @@ gametitle=IGPX - Immortal Grand Prix (U)(SLUS-21430) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21431_BD9EAA7A.pnach b/patches/SLUS-21431_BD9EAA7A.pnach index 10e0061d..8e6c8bf4 100644 --- a/patches/SLUS-21431_BD9EAA7A.pnach +++ b/patches/SLUS-21431_BD9EAA7A.pnach @@ -2,7 +2,7 @@ gametitle=Shin Megami Tensei: Devil Summoner - Raidou Kuzunoha vs the Soulless A [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen pnach by El_Patas (Only works for 3D characters, not for prerendered backgrounds) +author=El_Patas (Only works for 3D characters, not for prerendered backgrounds) patch=1,EE,003AD464,word,3FC6D3A0 //3F951EB8 hor fov patch=1,EE,003AD814,word,3FC6D3A0 //3F951EB8 unknown diff --git a/patches/SLUS-21435_3122B508.pnach b/patches/SLUS-21435_3122B508.pnach index 2281797f..466c6f9c 100644 --- a/patches/SLUS-21435_3122B508.pnach +++ b/patches/SLUS-21435_3122B508.pnach @@ -2,7 +2,7 @@ gametitle=One Piece - Grand Adventure (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,002b4d18,word,3c013f40 diff --git a/patches/SLUS-21436_34C62B5C.pnach b/patches/SLUS-21436_34C62B5C.pnach index 6c431bdf..68a380cc 100644 --- a/patches/SLUS-21436_34C62B5C.pnach +++ b/patches/SLUS-21436_34C62B5C.pnach @@ -2,11 +2,16 @@ gametitle=Just Cause (NTSC-U)(SLUS-21436) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //0000803f 0000803f 0000003f 66666645 patch=1,EE,207BF288,extended,3FAAAAAB //3f800000 +[60 FPS] +author=asasega +description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,203B8A08,extended,00000000 //45000010 + diff --git a/patches/SLUS-21437_86B490D1.pnach b/patches/SLUS-21437_86B490D1.pnach index 3cc8a4f4..4dd2eca5 100644 --- a/patches/SLUS-21437_86B490D1.pnach +++ b/patches/SLUS-21437_86B490D1.pnach @@ -2,7 +2,7 @@ gametitle=Disney's Kim Possible - What's the Switch (NTSC-U)(SLUS-21437) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21438_EAE72CFE.pnach b/patches/SLUS-21438_EAE72CFE.pnach index 398872b3..b5860644 100644 --- a/patches/SLUS-21438_EAE72CFE.pnach +++ b/patches/SLUS-21438_EAE72CFE.pnach @@ -2,7 +2,7 @@ gametitle=Cartoon Network Racing (U)(SLUS-21438) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21440_4E838541.pnach b/patches/SLUS-21440_4E838541.pnach index 0f024d70..d1882a91 100644 --- a/patches/SLUS-21440_4E838541.pnach +++ b/patches/SLUS-21440_4E838541.pnach @@ -2,7 +2,7 @@ gametitle=LarryBoy and the Bad Apple [NTSC-U] (SLUS_214.40) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas (Causes a glitch in the upper left HUD panel) +author=El_Patas (Causes a glitch in the upper left HUD panel) //Gameplay 16:9 patch=1,EE,0021E414,word,3C014440 //3C014480 (Increases horiz. axis) diff --git a/patches/SLUS-21445_4437F4B1.pnach b/patches/SLUS-21445_4437F4B1.pnach index 49d08c45..8e4a81bf 100644 --- a/patches/SLUS-21445_4437F4B1.pnach +++ b/patches/SLUS-21445_4437F4B1.pnach @@ -2,7 +2,7 @@ gametitle=Ar tonelico: Melody of Elemia (SLUS-21445) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //3D scenes patch=1,EE,003440bc,word,3c013f40 //hor value @@ -21,4 +21,9 @@ patch=1,EE,001a3648,word,e6810090 patch=1,EE,001a364c,word,3c014480 //vert value patch=1,EE,001a3650,word,44810800 - +[No-Interlacing] +author=NineKain +description=Attempts to disable interlaced offset rendering. +gsinterlacemode=1 +//Remove Interlacing +patch=1,EE,00340864,word,00000000 diff --git a/patches/SLUS-21449_2C728173.pnach b/patches/SLUS-21449_2C728173.pnach index 482b0164..f07dc1d3 100644 --- a/patches/SLUS-21449_2C728173.pnach +++ b/patches/SLUS-21449_2C728173.pnach @@ -2,7 +2,7 @@ gametitle=The Fast and the Furious (U)(SLUS-21449) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21450_D304FA88.pnach b/patches/SLUS-21450_D304FA88.pnach index 6856fc06..f710f639 100644 --- a/patches/SLUS-21450_D304FA88.pnach +++ b/patches/SLUS-21450_D304FA88.pnach @@ -2,7 +2,7 @@ gametitle=Super PickUps [NTSC-U] (SLUS_214.50) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Sergx12 & El_Patas +author=sergx12 & El_Patas //Gameplay 16:9 patch=1,EE,001F7FF0,word,3C023F18 //3C023F00 (Increases hor. axis) diff --git a/patches/SLUS-21451_D3659615.pnach b/patches/SLUS-21451_D3659615.pnach index 1a95f852..0e9e200d 100644 --- a/patches/SLUS-21451_D3659615.pnach +++ b/patches/SLUS-21451_D3659615.pnach @@ -2,7 +2,7 @@ gametitle=The Grim Adventures of Billy & Mandy (NTSC-U)(SLUS-21451) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //0000803f 000080bf 00000000 diff --git a/patches/SLUS-21453_E319F8A2.pnach b/patches/SLUS-21453_E319F8A2.pnach index 741e71ce..c0013fe2 100644 --- a/patches/SLUS-21453_E319F8A2.pnach +++ b/patches/SLUS-21453_E319F8A2.pnach @@ -2,7 +2,7 @@ gametitle=Disney's Meet the Robinsons (U)(SLUS-21453) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21454_90A9963E.pnach b/patches/SLUS-21454_90A9963E.pnach index b6efeaa0..cf20f508 100644 --- a/patches/SLUS-21454_90A9963E.pnach +++ b/patches/SLUS-21454_90A9963E.pnach @@ -2,7 +2,7 @@ gametitle=DreamWorks Shrek the Third (U)(SLUS-21454) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21457_5F6EB42B.pnach b/patches/SLUS-21457_5F6EB42B.pnach index d79bc740..3f764da9 100644 --- a/patches/SLUS-21457_5F6EB42B.pnach +++ b/patches/SLUS-21457_5F6EB42B.pnach @@ -2,7 +2,7 @@ gametitle=World Championship Paintball (U)(SLUS-21457) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21462_CC4B9CDE.pnach b/patches/SLUS-21462_CC4B9CDE.pnach index 815e9783..d6d6da4e 100644 --- a/patches/SLUS-21462_CC4B9CDE.pnach +++ b/patches/SLUS-21462_CC4B9CDE.pnach @@ -2,7 +2,7 @@ gametitle=Samurai Warriors 2 (U)(SLUS-21462) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // 16:9 //4c3f023c 040203ae cdcc4234 diff --git a/patches/SLUS-21464_DE67BB91.pnach b/patches/SLUS-21464_DE67BB91.pnach index 5350988c..2ff18be0 100644 --- a/patches/SLUS-21464_DE67BB91.pnach +++ b/patches/SLUS-21464_DE67BB91.pnach @@ -2,7 +2,7 @@ gametitle=Pro Evolution Soccer 2007 (SLUS_21464) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by No.47 +author=No.47 patch=1,EE,0039BAA0,word,3FAAAAAB //3f800000 hor FOV patch=1,EE,0012A59C,word,3C053FAB //3C053F80 render fix diff --git a/patches/SLUS-21467_06BBB610.pnach b/patches/SLUS-21467_06BBB610.pnach index 41f5b9ce..652105a9 100644 --- a/patches/SLUS-21467_06BBB610.pnach +++ b/patches/SLUS-21467_06BBB610.pnach @@ -14,7 +14,7 @@ patch=1,EE,00543020,word,080fe650 //3443033c b00421c6 Render fix patch=1,EE,00291a1c,word,3c034300 //3c034334 -[50 FPS] +[60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,00567378,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLUS-21469_CAF1432F.pnach b/patches/SLUS-21469_CAF1432F.pnach index d02ad8b5..c6ff0f89 100644 --- a/patches/SLUS-21469_CAF1432F.pnach +++ b/patches/SLUS-21469_CAF1432F.pnach @@ -2,10 +2,8 @@ gametitle=Nicktoons - Battle for Volcano Island (U)(SLUS-21469) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa - -//Widescreen hack 16:9 - +author=Arapapa +description=Patches the game to run at 16:9 Widescreen Aspect Ratio. //Zoom //00000000 003f013c 00a08144 patch=1,EE,00286148,word,3c013f68 //3c013f00 @@ -13,12 +11,9 @@ patch=1,EE,00286148,word,3c013f68 //3c013f00 //Y-Fov //00000000 0c00a1c7 42080046 patch=1,EE,00286194,word,0806f684 //46000842 - patch=1,EE,001bda10,word,46000842 patch=1,EE,001bda14,word,3c013faa patch=1,EE,001bda18,word,3421aaab patch=1,EE,001bda1c,word,4481f000 patch=1,EE,001bda20,word,461e0842 -patch=1,EE,001bda24,word,080a1866 - - +patch=1,EE,001bda24,word,080a1866 \ No newline at end of file diff --git a/patches/SLUS-21470_8A18DA30.pnach b/patches/SLUS-21470_8A18DA30.pnach index cb5f3f9c..cdca4c5a 100644 --- a/patches/SLUS-21470_8A18DA30.pnach +++ b/patches/SLUS-21470_8A18DA30.pnach @@ -2,7 +2,7 @@ gametitle=Bratz - Forever Diamonds (U)(SLUS-21470) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen Hack 16:9 diff --git a/patches/SLUS-21478_741E27AB.pnach b/patches/SLUS-21478_741E27AB.pnach index 7bfc4d56..ca99d22d 100644 --- a/patches/SLUS-21478_741E27AB.pnach +++ b/patches/SLUS-21478_741E27AB.pnach @@ -2,7 +2,7 @@ gametitle=Pirates - Legend of the Black Buccaneer (U)(SLUS-21478) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLUS-21479_08C682C1.pnach b/patches/SLUS-21479_08C682C1.pnach new file mode 100644 index 00000000..399a689a --- /dev/null +++ b/patches/SLUS-21479_08C682C1.pnach @@ -0,0 +1,17 @@ +gametitle=Reservoir Dogs (NTSC-U) SLUS-21479 08C682C1 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Widescreen fix +patch=1,EE,00397770,extended,3C013F00 +patch=1,EE,00377030,extended,3C013F00 +patch=1,EE,E0010001,extended,004F1BEC +patch=1,EE,00397770,extended,3C013F25 +patch=1,EE,00377030,extended,3C013F25 + +[60 FPS] +author=PeterDelta +description=Might need EE Overclock at 130%. +patch=1,EE,003A96F4,word,3C02000A //3C02004A +patch=1,EE,00310FAC,word,3C013F00 //3C013F80 \ No newline at end of file diff --git a/patches/SLUS-21485_2FD3C5A9.pnach b/patches/SLUS-21485_2FD3C5A9.pnach index 15b1f718..97913827 100644 --- a/patches/SLUS-21485_2FD3C5A9.pnach +++ b/patches/SLUS-21485_2FD3C5A9.pnach @@ -2,7 +2,7 @@ gametitle=Backyard Sports Basketball 2007 (U)(SLUS-21485) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21486_4D42F305.pnach b/patches/SLUS-21486_4D42F305.pnach index 5e93c217..93193401 100644 --- a/patches/SLUS-21486_4D42F305.pnach +++ b/patches/SLUS-21486_4D42F305.pnach @@ -2,7 +2,7 @@ gametitle=Eagle Eye Golf (U)(SLUS-21486) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21489_6364A466.pnach b/patches/SLUS-21489_6364A466.pnach index b13a35f3..35688938 100644 --- a/patches/SLUS-21489_6364A466.pnach +++ b/patches/SLUS-21489_6364A466.pnach @@ -2,7 +2,7 @@ gametitle=.Hack//G.U Vol. III Redemption Undub (NTSC-U) [SLUS-21489] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) patch by cloudalmasai +author=cloudalmasai patch=1,EE,20A87C94,word,3F400000 diff --git a/patches/SLUS-21491_802ED9C2.pnach b/patches/SLUS-21491_802ED9C2.pnach index 898aaaca..6a1895f7 100644 --- a/patches/SLUS-21491_802ED9C2.pnach +++ b/patches/SLUS-21491_802ED9C2.pnach @@ -2,7 +2,7 @@ gametitle=World Series of Poker - Tournament of Champions - 2007 Edition (U)(SLU [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21497_1D1B3CBC.pnach b/patches/SLUS-21497_1D1B3CBC.pnach index 86b59a01..ac70194e 100644 --- a/patches/SLUS-21497_1D1B3CBC.pnach +++ b/patches/SLUS-21497_1D1B3CBC.pnach @@ -2,7 +2,7 @@ gametitle=Strawberry Shortcake - The Sweet Dreams Game (U)(SLUS-21497) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21499_45A8B64C.pnach b/patches/SLUS-21499_45A8B64C.pnach index 40469276..808fb4c9 100644 --- a/patches/SLUS-21499_45A8B64C.pnach +++ b/patches/SLUS-21499_45A8B64C.pnach @@ -2,7 +2,7 @@ gametitle=Corvette Evolution GT (SLUS-21499) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,001B0980,word,3C023F10 //gameplay patch=1,EE,00145FE0,word,3C023F22 //select menu diff --git a/patches/SLUS-21503_6FB69282.pnach b/patches/SLUS-21503_6FB69282.pnach index 4e66a72c..58830aed 100644 --- a/patches/SLUS-21503_6FB69282.pnach +++ b/patches/SLUS-21503_6FB69282.pnach @@ -2,7 +2,7 @@ gametitle=God Hand (SLUS-21503) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 and Arapapa +author=nemesis2000 and Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21536_21995580.pnach b/patches/SLUS-21536_21995580.pnach index f531db97..967326e4 100644 --- a/patches/SLUS-21536_21995580.pnach +++ b/patches/SLUS-21536_21995580.pnach @@ -2,7 +2,7 @@ gametitle=The Sims 2 - Pets (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //aa3f013c abaa2134 00008144 0800e003 00000000 00000000 0800e003 diff --git a/patches/SLUS-21539_40181DDF.pnach b/patches/SLUS-21539_40181DDF.pnach index 9e0dbd57..c0480f42 100644 --- a/patches/SLUS-21539_40181DDF.pnach +++ b/patches/SLUS-21539_40181DDF.pnach @@ -2,7 +2,7 @@ gametitle=Greg Hastings' Tournament Paintball Max'd (U)(SLUS-21539) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21543_EFCFAEBB.pnach b/patches/SLUS-21543_EFCFAEBB.pnach index 20664bab..97791f4c 100644 --- a/patches/SLUS-21543_EFCFAEBB.pnach +++ b/patches/SLUS-21543_EFCFAEBB.pnach @@ -2,7 +2,7 @@ gametitle=Mortal Kombat: Armageddon Premium Edition(SLUS-21543) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //zoom for arcade mode (widescreen) patch=1,EE,00220364,word,3c0342c0 diff --git a/patches/SLUS-21547_0CE6D8EB.pnach b/patches/SLUS-21547_0CE6D8EB.pnach index db566c8f..e91722ba 100644 --- a/patches/SLUS-21547_0CE6D8EB.pnach +++ b/patches/SLUS-21547_0CE6D8EB.pnach @@ -2,7 +2,7 @@ gametitle=NHRA - Countdown to the Championship 2007 (U)(SLUS-21547) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21548_2130D815.pnach b/patches/SLUS-21548_2130D815.pnach index 19e86674..04aeaebc 100644 --- a/patches/SLUS-21548_2130D815.pnach +++ b/patches/SLUS-21548_2130D815.pnach @@ -2,7 +2,7 @@ gametitle=Mercury Meltdown - Remix (U)(SLUS-21548) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21563_F0512849.pnach b/patches/SLUS-21563_F0512849.pnach index e3385ec7..c400bc17 100644 --- a/patches/SLUS-21563_F0512849.pnach +++ b/patches/SLUS-21563_F0512849.pnach @@ -2,7 +2,7 @@ gametitle=Horsez (U)(SLUS-21563) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21564_4CCC9212.pnach b/patches/SLUS-21564_4CCC9212.pnach index b4aab5b0..6e632e41 100644 --- a/patches/SLUS-21564_4CCC9212.pnach +++ b/patches/SLUS-21564_4CCC9212.pnach @@ -2,7 +2,7 @@ gametitle=Atelier Iris 3: Grand Phantasm (SLUS-21564) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //3D scenes patch=1,EE,0035e58c,word,3c013f40 //hor value diff --git a/patches/SLUS-21566_E04356E2.pnach b/patches/SLUS-21566_E04356E2.pnach index f2908058..9fb0996a 100644 --- a/patches/SLUS-21566_E04356E2.pnach +++ b/patches/SLUS-21566_E04356E2.pnach @@ -2,7 +2,7 @@ gametitle=Brunswick Pro Bowling (U)(SLUS-21566) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21570_B96DD9F4.pnach b/patches/SLUS-21570_B96DD9F4.pnach new file mode 100644 index 00000000..8acb921b --- /dev/null +++ b/patches/SLUS-21570_B96DD9F4.pnach @@ -0,0 +1,10 @@ +gametitle=Heatseeker NTSC-U SLUS-21570 B96DD9F4 + +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,003A2290,word,24020002 //24020001 +patch=1,EE,00601A90,word,3C888889 //3D088889 +patch=1,EE,00601A94,word,3C888889 //3D088889 +patch=1,EE,00601A98,word,3C888889 //3D088889 +patch=1,EE,00601A9C,word,3C888889 //3D088889 \ No newline at end of file diff --git a/patches/SLUS-21572_BED8AB7C.pnach b/patches/SLUS-21572_BED8AB7C.pnach index 0cf21ba3..72ccb1d7 100644 --- a/patches/SLUS-21572_BED8AB7C.pnach +++ b/patches/SLUS-21572_BED8AB7C.pnach @@ -2,7 +2,7 @@ gametitle=Surf's Up (U)(SLUS-21572) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21576_53591072.pnach b/patches/SLUS-21576_53591072.pnach index 5ccaa07c..018da61a 100644 --- a/patches/SLUS-21576_53591072.pnach +++ b/patches/SLUS-21576_53591072.pnach @@ -2,7 +2,7 @@ gametitle=Rayman - Raving Rabbids (U)(SLUS-21576) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ICUP321 +author=ICUP321 //Widescreen hack 16:9 diff --git a/patches/SLUS-21578_50A92D0E.pnach b/patches/SLUS-21578_50A92D0E.pnach index dbbf68be..e649964b 100644 --- a/patches/SLUS-21578_50A92D0E.pnach +++ b/patches/SLUS-21578_50A92D0E.pnach @@ -2,7 +2,7 @@ gametitle=Biker Mice from Mars (U)(SLUS-21578) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21579_EC38550F.pnach b/patches/SLUS-21579_EC38550F.pnach index fa7c9d05..1b39742e 100644 --- a/patches/SLUS-21579_EC38550F.pnach +++ b/patches/SLUS-21579_EC38550F.pnach @@ -2,7 +2,7 @@ gametitle=Barbie in The 12 Dancing Princesses (U)(SLUS-21579) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21580_3CCCFD55.pnach b/patches/SLUS-21580_3CCCFD55.pnach index 04a95795..4fdd3046 100644 --- a/patches/SLUS-21580_3CCCFD55.pnach +++ b/patches/SLUS-21580_3CCCFD55.pnach @@ -2,7 +2,7 @@ gametitle=Pimp my Ride (U)(SLUS-21580) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21582_8D479556.pnach b/patches/SLUS-21582_8D479556.pnach index 03624597..72b5472d 100644 --- a/patches/SLUS-21582_8D479556.pnach +++ b/patches/SLUS-21582_8D479556.pnach @@ -2,7 +2,7 @@ gametitle=MVP 07 NCAA Baseball (U)(SLUS-21582) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21583_C6E85EF0.pnach b/patches/SLUS-21583_C6E85EF0.pnach index 4e6fea3c..3315fbf7 100644 --- a/patches/SLUS-21583_C6E85EF0.pnach +++ b/patches/SLUS-21583_C6E85EF0.pnach @@ -3,12 +3,12 @@ gametitle=Crash of the Titans (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 author=CRASHARKI -comment=Run the game at 16:9 Widescreen Aspect Ratio from the start. +description=Run the game at 16:9 Widescreen Aspect Ratio from the start. patch=1,EE,21BD4F68,byte,1 //00000000 //In-game option -patch=1,EE,21BD4FA2,byte,10 //40 //Zoom 1 +patch=1,EE,21BD4FA0,extended,3F020000 //3F100000 //Zoom 1 patch=1,EE,21BD4FA8,word,3F066666 //3F333333 //Zoom 2 [60 FPS] author=asasega description=Patches the game to run at 60 FPS (Might need 130% EE Overclock to be stable). -patch=1,EE,20490340,extended,24020000 +patch=1,EE,20490340,extended,24020000 \ No newline at end of file diff --git a/patches/SLUS-21585_3D3D9A58.pnach b/patches/SLUS-21585_3D3D9A58.pnach index 91346a76..63a36e60 100644 --- a/patches/SLUS-21585_3D3D9A58.pnach +++ b/patches/SLUS-21585_3D3D9A58.pnach @@ -2,7 +2,7 @@ gametitle=Samurai Warriors 2 - Empires (U) (SLUS-21585) [3D3D9A58] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht converted by Shang +author=ElHecht converted by Shang // 16:9 patch=1,EE,0017a918,word,3c023f19 // 3c023f4c hor fov 1-player diff --git a/patches/SLUS-21588_A6B6033E.pnach b/patches/SLUS-21588_A6B6033E.pnach index 37a7e462..a7283bc7 100644 --- a/patches/SLUS-21588_A6B6033E.pnach +++ b/patches/SLUS-21588_A6B6033E.pnach @@ -2,7 +2,7 @@ gametitle=Avatar - The Last Airbender - The Burning Earth (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht //16:9 patch=1,EE,00142f30,word,3c033fe3 // 3c033faa diff --git a/patches/SLUS-21590_20B89E56.pnach b/patches/SLUS-21590_20B89E56.pnach index a1820087..f991888c 100644 --- a/patches/SLUS-21590_20B89E56.pnach +++ b/patches/SLUS-21590_20B89E56.pnach @@ -2,7 +2,7 @@ gametitle=Grand Theft Auto - Vice City (KOR Undub) (SLUS-21590) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen fix by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //widescreen fix patch=1,EE,002653d8,word,3c013f9d diff --git a/patches/SLUS-21592_25E83ED5.pnach b/patches/SLUS-21592_25E83ED5.pnach index 2afdbe49..7a6de8e1 100644 --- a/patches/SLUS-21592_25E83ED5.pnach +++ b/patches/SLUS-21592_25E83ED5.pnach @@ -2,7 +2,7 @@ gametitle=The Adventures of Darwin [NTSC-U] (SLUS_215.92) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,20437230,extended,3F400000 //3F800000 (Increases hor. axis) diff --git a/patches/SLUS-21596_8C9576A1.pnach b/patches/SLUS-21596_8C9576A1.pnach index f68cdea4..8ef416d1 100644 --- a/patches/SLUS-21596_8C9576A1.pnach +++ b/patches/SLUS-21596_8C9576A1.pnach @@ -1,9 +1,9 @@ -gametitle=Burnout - Dominator (U)(SLUS-21596) +gametitle=Burnout Dominator (U) (SLUS-21596) [Widescreen 16:9] +gsaspectratio=16:9 author=SuperType1/remco description=Fixes the game and the HUD to run in a 16:9 Scale (only enable one and not both of them). -gsaspectratio=16:9 //Force 16:9 patch=1,EE,001A2798,word,00000000 @@ -32,9 +32,9 @@ patch=1,EE,21C91F60,extended,C4430000//crashbreaker text offset patch=1,EE,20441078,extended,438C0000//ea trax pop up width [Widescreen 21:9] +gsaspectratio=Stretch author=SuperType1/remco description=Fixes the game and the HUD to run in a 21:9 Scale (only enable one and not both of them). -gsaspectratio=Stretch //Force 21:9 patch=1,EE,001A2798,word,00000000 @@ -68,9 +68,24 @@ patch=1,EE,20441078,extended,43340000//ea trax width [60 FPS Menus and Crashes] author=SuperType1/remco -comment=Makes the entire game run in 60 FPS. +description=Makes the entire game run in 60 FPS. //60 FPS Front End patch=1,EE,202159AC,extended,24040001 patch=1,EE,202159A4,extended,00108002 //60 FPS Crashes -patch=1,EE,20209070,word,908523E8 \ No newline at end of file +patch=1,EE,20209070,word,908523E8 + +[Extra particles while driving] +author=Nehalem +description=Render all extra particles while driving +patch=0,EE,202E30DC,extended,24030001 + +[Falling car parts] +author=Nehalem +description=Enable falling car parts of other vehicles while driving +patch=0,EE,202847D8,extended,00000000 + +[Progressive Scan] +author=Nehalem +description=Always ask for 480p mode during boot +patch=0,EE,20183F1C,extended,10000015 diff --git a/patches/SLUS-21602_200DB176.pnach b/patches/SLUS-21602_200DB176.pnach new file mode 100644 index 00000000..4a40c6f6 --- /dev/null +++ b/patches/SLUS-21602_200DB176.pnach @@ -0,0 +1,7 @@ +gametitle=Transformers - The Game NTSC-U SLUS-21602 200DB176 + +[60 FPS] +author=PeterDelta +description=Might need EE Overclock (180%). +patch=1,EE,00382D80,word,28420001 //28420002 +patch=1,EE,00434E94,word,3C013F00 //3C013F80 \ No newline at end of file diff --git a/patches/SLUS-21603_1F159541.pnach b/patches/SLUS-21603_1F159541.pnach index b81bf5d9..4e350d80 100644 --- a/patches/SLUS-21603_1F159541.pnach +++ b/patches/SLUS-21603_1F159541.pnach @@ -2,7 +2,7 @@ gametitle=Soul Nomad & the World Eaters (SLUS-21603) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //gameplay patch=1,EE,001048e4,word,3c013f40 diff --git a/patches/SLUS-21604_8817166C.pnach b/patches/SLUS-21604_8817166C.pnach index 737cb756..f6b3502c 100644 --- a/patches/SLUS-21604_8817166C.pnach +++ b/patches/SLUS-21604_8817166C.pnach @@ -2,7 +2,7 @@ gametitle=Grim Grimoire (U)(SLUS-21604) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Gameplay 16:9 diff --git a/patches/SLUS-21605_910FDAA4.pnach b/patches/SLUS-21605_910FDAA4.pnach index 43bece5b..9796dafa 100644 --- a/patches/SLUS-21605_910FDAA4.pnach +++ b/patches/SLUS-21605_910FDAA4.pnach @@ -2,10 +2,8 @@ gametitle=Nicktoons - Attack of the Toybots (U)(SLUS-21605) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa - -//Widescreen hack 16:9 - +author=Arapapa +description=Patches the game to run at 16:9 Widescreen Aspect Ratio. //Zoom //403f013c 00608144 a8a80c0c patch=1,EE,0012a818,word,3c013f80 //3c013f40 @@ -16,6 +14,4 @@ patch=1,EE,000c0000,word,3c013f40 patch=1,EE,000c0004,word,4481f000 patch=1,EE,000c0008,word,461e0f83 patch=1,EE,000c000c,word,e7be000c -patch=1,EE,000c0010,word,0809dbfd - - +patch=1,EE,000c0010,word,0809dbfd \ No newline at end of file diff --git a/patches/SLUS-21611_63107E8F.pnach b/patches/SLUS-21611_63107E8F.pnach index 08c45c5a..492fd992 100644 --- a/patches/SLUS-21611_63107E8F.pnach +++ b/patches/SLUS-21611_63107E8F.pnach @@ -2,7 +2,7 @@ gametitle=Thrillville - Off the Rails (U)(SLUS-21611) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21619_4C01B1B0.pnach b/patches/SLUS-21619_4C01B1B0.pnach index 54b1d6ff..049542a2 100644 --- a/patches/SLUS-21619_4C01B1B0.pnach +++ b/patches/SLUS-21619_4C01B1B0.pnach @@ -2,7 +2,7 @@ gametitle=Harry Potter and The Order of the Phoenix (U)(SLUS-21619) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21621_0033A2C2.pnach b/patches/SLUS-21621_0033A2C2.pnach new file mode 100644 index 00000000..f3de8eb1 --- /dev/null +++ b/patches/SLUS-21621_0033A2C2.pnach @@ -0,0 +1,420 @@ +gametitle=Shin Megami Tensei: Persona 3 FES (U) SLUS-21621 0033A2C2 (Spanish Fan Translation Undub) + +[Widescreen 16:9] +gsaspectratio=16:9 +comment=Widescreen hack by nemesis2000, devina, CeruleansBlue, Arapapa, The Calculator + +//Widescreen 16:9 + +//X-Fov by CeruleansBlue +patch=1,EE,007cad1c,word,3fe38e38 + +//partial HUD fix +patch=1,EE,00106e30,word,3c043f40 +patch=1,EE,00106e38,word,00701821 +patch=1,EE,00106e3c,word,24632bac +patch=1,EE,00106e44,word,00000000 +patch=1,EE,00106e48,word,24630004 +patch=1,EE,00106e4c,word,3c043f80 + +//FMV Fix by Alexankitty +patch=1,EE,0010AFC8,word,081A63AF //Jump for additional instruction space +patch=1,EE,0010AFCC,word,00000000 +patch=1,EE,0010AFD0,word,14620006 // branch depending on FMV type +patch=1,EE,0010AFD4,word,00000000 +patch=1,EE,0010AFD8,word,3C023E00 // Size Top +patch=1,EE,0010AFDC,word,3C1443E0 // Size Bottom +patch=1,EE,0010AFE0,word,3C1542A0 // Size Left +patch=1,EE,0010AFE4,word,3C160BB0 // Size Right +patch=1,EE,0010AFE8,word,10000005 // Jump to next section +patch=1,EE,0010AFEC,word,00000000 +patch=1,EE,0010AFF0,word,3C023E00 // Size Top +patch=1,EE,0010AFF4,word,3C1443E1 // Size Bottom +patch=1,EE,0010AFF8,word,3C1541F8 // Size Left +patch=1,EE,0010AFFC,word,3C161850 // Size Right +patch=1,EE,0010B000,word,AE6200E4 // Store Y Top Left +patch=1,EE,0010B004,word,AE620164 // Store Y Bottom Left +patch=1,EE,0010B008,word,AE740124 // Store Y Top Right +patch=1,EE,0010B00C,word,AE7401A4 // Store Y Bottom Right +patch=1,EE,0010B010,word,AE7500E0 // Store X Top Left +patch=1,EE,0010B014,word,AE750120 // Store X Bottom Left +patch=1,EE,0010B018,word,AE76015F // Store X Top Right +patch=1,EE,0010b01C,word,AE76019F // Store X Bottom Left +patch=1,EE,0010b020,word,0000A02D // Clear out S registers +patch=1,EE,0010b024,word,0000A82D +patch=1,EE,0010b028,word,0000B02D +//FMV Jump +patch=1,EE,00698EBC,word,3C024400 // FMV Mirroring Fix +patch=1,EE,00698EC0,word,AE620160 // Store Left +patch=1,EE,00698EC4,word,AE6201A0 // Store Right +patch=1,EE,00698EC8,word,3C02005D // Process FMV Type Check +patch=1,EE,00698ECC,word,24424B70 +patch=1,EE,00698ED0,word,00431021 +patch=1,EE,00698ED4,word,84430000 +patch=1,EE,00698ED8,word,24020005 +patch=1,EE,00698EDC,word,08042BF3 //Jump back +patch=1,EE,00698EE0,word,00000000 +//1px tiling fix +patch=1,EE,0010B0E4,word,2463FFFF +patch=1,EE,0010B0E8,word,44830000 + +//zoom fix +//(ALL cheats must be loaded via cheats_ws or else it will freeze +//upon entering the protag's bedroom for the first time) +patch=1,EE,003bb94c,word,0c132e4c +patch=1,EE,003bb950,word,0220202d +patch=1,EE,003bb954,word,0220202d +patch=1,EE,003bb958,word,0200282d +patch=1,EE,003bb95c,word,0000302d +patch=1,EE,003bb960,word,0c132dfc +patch=1,EE,003bb964,word,00000000 +patch=1,EE,003bb968,word,0c130e20 +patch=1,EE,003bb96c,word,0200202d +patch=1,EE,003bb970,word,0240202d +patch=1,EE,003bb974,word,3c013fa1 // 80=hor+, a1=moonwalk fix, aa=vert- +patch=1,EE,003bb978,word,44810000 +patch=1,EE,003bb97c,word,c66c0100 +patch=1,EE,003bb980,word,0c069160 +patch=1,EE,003bb984,word,46006303 + + +/////////////////////////////////////////////////////// +//In-Game Menu Portraits fix by Arapapa +//74008224 21104500 00004284 +//74008224 21104500 00004294 +patch=1,EE,00112b94,word,08030034 +patch=1,EE,000c00d0,word,94420000 +patch=1,EE,000c00d4,word,01224821 +patch=1,EE,000c00d8,word,00421021 +patch=1,EE,000c00dc,word,01221021 +patch=1,EE,000c00e0,word,00021082 +patch=1,EE,000c00e4,word,08044ae6 + +//Main Character X-Position +//d643033c +patch=1,EE,0011cb14,word,3c0343f0 //3c0343d6 +patch=1,EE,0011cbc4,word,3c0343f0 //3c0343d6 +patch=1,EE,0011d118,word,3c0343f0 //3c0343d6 +patch=1,EE,0011d7f4,word,3c0343f0 //3c0343d6 +patch=1,EE,0011e0dc,word,3c0343f0 //3c0343d6 +patch=1,EE,00125e94,word,3c0343f0 //3c0343d6 +patch=1,EE,001260c8,word,3c0343f0 //3c0343d6 +patch=1,EE,0014ca5c,word,3c0343f0 //3c0343d6 +patch=1,EE,00160914,word,3c0343f0 //3c0343d6 +patch=1,EE,00160b64,word,3c0343f0 //3c0343d6 +patch=1,EE,0018a744,word,3c0343f0 //3c0343d6 + +//Menu (Status) Main Character X-Position #2 +//c1010324 00008344 00000000 (2 times) +patch=1,EE,0012633c,word,240301f5 //240301c1 +patch=1,EE,00126530,word,240301f5 //240301c1 + +//Partner Character X-Position +//b343023c +patch=1,EE,00164d84,word,3c0243d8 //3c0243b3 +patch=1,EE,001653f8,word,3c0243d8 //3c0243b3 +patch=1,EE,0016573c,word,3c0243d8 //3c0243b3 +patch=1,EE,00165b90,word,3c0243d8 //3c0243b3 +patch=1,EE,00166548,word,3c0243d8 //3c0243b3 + +//Main Character (In-Game Menu) Shadow +//803f023c b000a2af +//803f023c b000a1af +patch=1,EE,00126890,word,3c013fab //00000000 +patch=1,EE,001268b0,word,afa100b0 //afa200b0 + +//Shadow (In-Game Menu) X-Position fix +//3c43023c +//3c43023c 4802a2af 4c02a0af +patch=1,EE,00126ca4,word,3c024398 //3c02433c Main Character's Shadow +patch=1,EE,00126dd8,word,3c024398 //3c02433c +patch=1,EE,00126efc,word,3c024398 //3c02433c +patch=1,EE,00127044,word,3c024398 //3c02433c +patch=1,EE,001270f0,word,3c024398 //3c02433c +patch=1,EE,00127184,word,3c024398 //3c02433c +patch=1,EE,0012729c,word,3c024398 //3c02433c +patch=1,EE,00164cf0,word,3c0243cc //3c02433c Partner's Shadow +/////////////////////////////////////////////////////// + +//Popup portraits, Clock and etc.. fix by Arapapa +//Some elaboration: By pop up portraits they ment cut ins and the clock is the animation that plays when you enter the dark hour -The Calculator +//02080046 b4f260e4 6c0080c4 +patch=1,EE,004aa460,word,08030024 +patch=1,EE,000c0090,word,46000802 +patch=1,EE,000c0094,word,3c013f40 +patch=1,EE,000c0098,word,4481f000 +patch=1,EE,000c009c,word,461e0002 +patch=1,EE,000c00a0,word,0812a919 + +//////////////////////////////////////////////// +//Detect 'Open the in-game menu' +patch=1,EE,e0020000,extended,107cdf48 +patch=1,EE,204aa460,extended,46000802 //Set original value +patch=1,EE,20112b94,extended,08030034 //84420000 jump to 'In-Game Menu Portraits fix' + +patch=1,EE,e0020000,extended,007cdf48 +patch=1,EE,204aa460,extended,08030024 //46000802 jump to 'Clock, Popup Portraits and etc fix' +patch=1,EE,20112b94,extended,84420000 //Set original value + +//Detect 'Scene changing' +//0040023c c0f2a0e4 20108046 +//00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 64 00 00 00 00 00 00 00 +patch=1,EE,e0010000,extended,107CDED4 +patch=1,EE,204aa444,extended,3c02402a //Zoom + +patch=1,EE,e0010000,extended,007CDED4 +patch=1,EE,204aa444,extended,3c024000 //Set original value +//////////////////////////////////////////////// + +//Arcana Card fix by Arapapa +//fe42023c 00608244 +//be42023c 00608244 (twice) +patch=1,EE,003a0374,word,3c0242be //3c0242fe +patch=1,EE,003a0448,word,3c0242be //3c0242fe + +//b442023c 00008244 00000000 41080046 +//4042023c 00008244 00000000 41080046(2nd) +patch=1,EE,003a0060,word,3c024240 //3c0242b4 + +//Shuffle Time (Card) fix by Arpapa +//2c0000c6 6000a0e7 +patch=1,EE,0020caf4,word,08168754 //c600002c +patch=1,EE,005a1d50,word,c600002c //00000000 +patch=1,EE,005a1d54,word,3c013f40 //00000000 +patch=1,EE,005a1d58,word,4481f000 //00000000 +patch=1,EE,005a1d5c,word,461e0002 //00000000 +patch=1,EE,005a1d60,word,080832be //00000000 + +/////////////////////////////////////////////////////////// +//S.LINK - Community (2D Characters & Cards) fix by Arapapa +//000040c4 0000e0e4 040040c4 (3rd) +//patch=1,EE,00114390,word,081FB4CB //Jump to patch check (Approach 1) *Sorry these two lines I think were a left* +//patch=1,EE,00114390,word,00000000 //nop patch check *over from my testing you can ingnore them -The Calculator* +patch=1,EE,00114390,word,0816875a //Jump to oringal patch + +patch=1,EE,005a1d68,word,c4400000 +patch=1,EE,005a1d6c,word,3c013f40 +patch=1,EE,005a1d70,word,4481f000 +patch=1,EE,005a1d74,word,461e0002 +patch=1,EE,005a1d78,word,080450e5 + +////////////////////////////// +//Calculator's Tartarous offset +//Approach 2 Just off set the position lol +//461D6B42 mul (LOL didn't even use this why would I? Did help me get to the asnswer tho) {Yeah I did kinda use it in the end} +//Select floor menu (Animation hold) +patch=1,EE,00441720,word,3C02C260 //Main Tower offset +patch=1,EE,004416E8,word,0C1FB4CB //Call offset glow/outline and draw +//Select floor menu (Animation enter) +patch=1,EE,004477F8,word,3C02C260 //Main Tower offset +patch=1,EE,0043FBB8,word,0C1FB4CB //Call offset glow/outline and draw +//Select floor menu (Animation exit) +patch=1,EE,0043FC64,word,3C02C260 //Main Tower offset +patch=1,EE,004477C0,word,0C1FB4CB //Call offset glow/outline and draw +//Progress to next block (Animation enter) +patch=1,EE,0044A4EC,word,3C02C260 //Main Tower offset +patch=1,EE,0043EA58,word,0C1FB4CB //Call offset glow/outline and draw +//Progress to next block (Animation hold) +patch=1,EE,00442CC0,word,3C02C260 //Main Tower offset +patch=1,EE,00442C88,word,0C1FB4CB //Call offset glow/outline and draw +//Progress to next block (Animation exit) +patch=1,EE,0044341C,word,3C02C260 //Main Tower offset +patch=1,EE,00443370,word,0C1FB4CB //Call offset glow/outline and draw + +//Hooked draw call to offset glow/outline +patch=1,EE,007ED32C,word,3C02C338 //Load the offset to v0 +patch=1,EE,007ED330,word,4482E800 //Loaf v0 in f29 +patch=1,EE,007ED334,word,08045034 //Jump the draw function to resume regular execution +patch=1,EE,007ED338,word,461D6B41 //f13 = f13-f29 +///////////////////////////////// + +//S.LINK - Community 2D Characters X-Position +//bb43023c 00088244 0002a0c7 +patch=1,EE,0013a2ac,word,3c024405 //3c0243bb +//b143023c 00088244 f801a0c7 +patch=1,EE,0013a350,word,3c024400 //3c0243b1 + +//S.LINK - Community Cards X-Position +//c041023c 00088244 7800a0c7 (2nd) +patch=1,EE,001373f4,word,3c024250 //3c0241c0 + +//S.LINK - Main Menu Shadows X-Position +//c842033c 00008344 00000000 410d0046 100055e4 +//c842033c 00008344 00000000 01080046 100040e4 (4 times) +patch=1,EE,001368fc,word,3c0341b0 //3c0342c8 Shadow +patch=1,EE,001379f0,word,3c0341b0 //3c0342c8 Shadow Character +patch=1,EE,0013804c,word,3c0341b0 //3c0342c8 +patch=1,EE,00138618,word,3c0341b0 //3c0342c8 +patch=1,EE,00138ce4,word,3c0341b0 //3c0342c8 + + +//S.LINK - Community Cards #2 X-Size +//000060c4 000000e5 040060c4 040000e5 +patch=1,EE,00115148,word,0803002c +patch=1,EE,000c00b0,word,c4600000 +patch=1,EE,000c00b4,word,3c013f40 +patch=1,EE,000c00b8,word,4481f000 +patch=1,EE,000c00bc,word,461e0002 +patch=1,EE,000c00c0,word,08045453 + +//S.LINK - Community Cards #2 X-Position +//e041023c 00088244 7800a0c7 400b0046 (3rd) +patch=1,EE,001395dc,word,3c024256 //3c0241e0 + +//S.LINK - Reverse Community Cards #1 X-Position +//c041023c 00088244 7800a0c7 (1st) +//8841023c 00088244 7800a0c7 (1st) +patch=1,EE,00137398,word,3c024250 //3c0241c0 Reverse Cards +patch=1,EE,0013749c,word,3c0241b6 //3c024188 Red Box + +//S.LINK - Reverse Community Cards #2 +//4041023c 00008244 00000000 010b0046 +patch=1,EE,00139544,word,3c024010 //3c024140 Red Box +//e041023c 00088244 7800a0c7 400b0046 (2nd) +patch=1,EE,00139470,word,3c024216 //3c0241e0 X-Position +/////////////////////////////////////////////////////////// + +//Popup Portraits (Left top, In the Battles) fix by Arapapa +//8045023c 00008244 00000000 42001546 (1st) +patch=1,EE,003c90ac,word,3c024540 //3c024580 + +//Popup Portraits (Left top, In the Battles) X-Position +//100040e4 00009244 00000000 (2nd) +patch=1,EE,003c9084,word,00000000 + +//8042023c 00108244 80c1023c +patch=1,EE,003ab7f8,word,3c020000 //3c024280 + +//Flare effect fix by Arapapa +//0040023c 00088244 00000000 82090046 +patch=1,EE,00347b38,word,3c023fc0 //3c024000 Zoom + +//42090046 2d180000 803f023c +patch=1,EE,00347b50,word,08030008 //Y-Fov +patch=1,EE,000c0020,word,46000942 +patch=1,EE,000c0024,word,461e2943 +patch=1,EE,000c0028,word,080d1ed5 +/////////////////////////////////////////////////////////// + +//Head Portraits (Right, In the Battles) fix by Arapapa +//10004426 7000a527 (1st) +patch=1,EE,0022d804,word,0803000c //#1 +patch=1,EE,000c0030,word,26440010 +patch=1,EE,000c0034,word,c7bf0078 +patch=1,EE,000c0038,word,3c013f40 +patch=1,EE,000c003c,word,4481f000 +patch=1,EE,000c0040,word,461effc2 +patch=1,EE,000c0044,word,e7bf0078 +patch=1,EE,000c0048,word,0808b602 + +//10014426 7000a527 (1st) +patch=1,EE,0022d904,word,08030014 //#2 +patch=1,EE,000c0050,word,26440110 +patch=1,EE,000c0054,word,c7bf0078 +patch=1,EE,000c0058,word,3c013f40 +patch=1,EE,000c005c,word,4481f000 +patch=1,EE,000c0060,word,461effc2 +patch=1,EE,000c0064,word,e7bf0078 +patch=1,EE,000c0068,word,0808b642 + +//Head Portraits (Right, In the Battles) X-Position +//f041033c 00008344 00000000 c0051746 (1st) +patch=1,EE,0022d7c4,word,3c034220 //3c0341f0 + +//Emoticon (In the Battles) fix by Arapapa +//30054426 7000a527 +patch=1,EE,0022dd98,word,0803001c +patch=1,EE,000c0070,word,26440530 +patch=1,EE,000c0074,word,c7bf0078 +patch=1,EE,000c0078,word,3c013f40 +patch=1,EE,000c007c,word,4481f000 +patch=1,EE,000c0080,word,461effc2 +patch=1,EE,000c0084,word,e7bf0078 +patch=1,EE,000c0088,word,0808b767 + +//Emoticon X-Position +//e842033c 00008344 00000000 00001946 +patch=1,EE,0022dd58,word,3c0342d0 //3c0342e8 + +///////////////////////////////////////////// +//Title Menu fix by Arapapa +patch=1,EE,0026e7d4,word,3c013fab //00000000 +patch=1,EE,0026e7e4,word,afa10068 //afa20068 #1 +patch=1,EE,0026e818,word,afa10068 //afa20068 #2 +patch=1,EE,0026e84c,word,afa10068 //afa20068 #3 +patch=1,EE,0026e880,word,afa10068 //afa20068 #4 +patch=1,EE,0026eaac,word,afa10068 //afa20068 #5 + +//Title Menu (Shadow) +patch=1,EE,0026ea50,word,3c02439b //3c024368 + +//Sub Menu - Select Episode (Shadow) +patch=1,EE,0026b524,word,c7808478 //00000000 +patch=1,EE,0026b534,word,461e0002 //c7808478 + +[Mode 480p] +author=felixthecat1970 +comment=Forces progressive scan at startup +patch=0,EE,00197AF0,extended,24040057 +patch=0,EE,1077EF3C,extended,000001C0 +patch=0,EE,204DFF34,extended,241B0050 +patch=0,EE,204E00B4,extended,A07B5762 +patch=0,EE,204E2900,extended,A05B5762 +patch=0,EE,2019D328,extended,03601020 +patch=0,EE,2019D334,extended,0000D82D +patch=0,EE,2019D348,extended,241B0001 + +[Controllable Party Members] +author=TGE +comment=The entire party is controllable like Persona 4/5 +patch=1,EE,0029AFC8,word,00000000 // nop check for if battle unit is not mc -> ai +patch=1,EE,0020207C,word,00000000 // load proper unit id for battle menu skill list +patch=1,EE,0020208C,word,8F84B6FC +patch=1,EE,00202090,word,8C840254 +patch=1,EE,00202094,word,8C840030 +patch=1,EE,00202098,word,8C8400A4 +patch=1,EE,0028DE14,word,2405001B // fix escape +patch=1,EE,0029692C,word,00000000 +patch=1,EE,0028AC5C,word,9683001A // disable persona menu for non-mc +patch=1,EE,0028AC60,word,3063FFBF +patch=1,EE,0028AC64,word,A683001A +patch=1,EE,0028AC68,word,96830018 +patch=1,EE,0028AC6C,word,00000000 +patch=1,EE,0028AC70,word,081A6AF8 +patch=1,EE,0028AC74,word,00000000 +patch=1,EE,0069ABE0,word,8F82B6FC +patch=1,EE,0069ABE4,word,8C420148 +patch=1,EE,0069ABE8,word,14540004 +patch=1,EE,0069ABEC,word,00000000 +patch=1,EE,0069ABF0,word,34630400 +patch=1,EE,0069ABF4,word,A6830018 +patch=1,EE,0069ABF8,word,34630400 +patch=1,EE,0069ABFC,word,080A2B1D +patch=1,EE,0069AC00,word,00000000 +patch=1,EE,001FF518,word,8E300254 // fix skill requirements +patch=1,EE,001FF51C,word,8E100030 +patch=1,EE,001FF520,word,8E1000A4 +patch=1,EE,001FF524,word,00000000 +patch=1,EE,001FF528,word,00000000 +patch=1,EE,001FF52C,word,00000000 +patch=1,EE,002D8210,word,00000000 // fix items +patch=1,EE,002D8220,word,00000000 +patch=1,EE,002D8224,word,00000000 +patch=1,EE,002D823C,word,00000000 +patch=1,EE,002A3914,word,081A6B01 // fix boss battle camera +patch=1,EE,0069AC04,word,1240000B +patch=1,EE,0069AC08,word,00000000 +patch=1,EE,0069AC0C,word,8E420030 +patch=1,EE,0069AC10,word,844700A2 +patch=1,EE,0069AC14,word,20030001 +patch=1,EE,0069AC18,word,14E00006 +patch=1,EE,0069AC1C,word,00000000 +patch=1,EE,0069AC20,word,844200A4 +patch=1,EE,0069AC24,word,10430003 +patch=1,EE,0069AC28,word,00001021 +patch=1,EE,0069AC2C,word,080A8E47 +patch=1,EE,0069AC30,word,00000000 +patch=1,EE,0069AC34,word,0C0BE210 +patch=1,EE,0069AC38,word,00000000 +patch=1,EE,0069AC3C,word,080A8E47 +patch=1,EE,0069AC40,word,00000000 \ No newline at end of file diff --git a/patches/SLUS-21621_1D1F5BA9.pnach b/patches/SLUS-21621_1D1F5BA9.pnach new file mode 100644 index 00000000..3e9a7823 --- /dev/null +++ b/patches/SLUS-21621_1D1F5BA9.pnach @@ -0,0 +1,365 @@ +gametitle=Shin Megami Tensei: Persona 3 FES (NTSC-U) SLUS-21621 1D1F5BA9 (Controllable Characters - UNDUB) + +[Widescreen 16:9] +gsaspectratio=16:9 +author=nemesis2000, devina, CeruleansBlue, Arapapa, The Calculator, Alexankitty + +//Widescreen 16:9 + +//X-Fov by CeruleansBlue +patch=1,EE,007cad1c,word,3fe38e38 + +//partial HUD fix +patch=1,EE,00106e30,word,3c043f40 +patch=1,EE,00106e38,word,00701821 +patch=1,EE,00106e3c,word,24632bac +patch=1,EE,00106e44,word,00000000 +patch=1,EE,00106e48,word,24630004 +patch=1,EE,00106e4c,word,3c043f80 + +//FMV Fix by Alexankitty +patch=1,EE,0010AFC8,word,081A63AF //Jump for additional instruction space +patch=1,EE,0010AFCC,word,00000000 +patch=1,EE,0010AFD0,word,14620006 // branch depending on FMV type +patch=1,EE,0010AFD4,word,00000000 +patch=1,EE,0010AFD8,word,3C023E00 // Size Top +patch=1,EE,0010AFDC,word,3C1443E0 // Size Bottom +patch=1,EE,0010AFE0,word,3C1542A0 // Size Left +patch=1,EE,0010AFE4,word,3C160BB0 // Size Right +patch=1,EE,0010AFE8,word,10000005 // Jump to next section +patch=1,EE,0010AFEC,word,00000000 +patch=1,EE,0010AFF0,word,3C023E00 // Size Top +patch=1,EE,0010AFF4,word,3C1443E1 // Size Bottom +patch=1,EE,0010AFF8,word,3C1541F8 // Size Left +patch=1,EE,0010AFFC,word,3C161850 // Size Right +patch=1,EE,0010B000,word,AE6200E4 // Store Y Top Left +patch=1,EE,0010B004,word,AE620164 // Store Y Bottom Left +patch=1,EE,0010B008,word,AE740124 // Store Y Top Right +patch=1,EE,0010B00C,word,AE7401A4 // Store Y Bottom Right +patch=1,EE,0010B010,word,AE7500E0 // Store X Top Left +patch=1,EE,0010B014,word,AE750120 // Store X Bottom Left +patch=1,EE,0010B018,word,AE76015F // Store X Top Right +patch=1,EE,0010b01C,word,AE76019F // Store X Bottom Left +patch=1,EE,0010b020,word,0000A02D // Clear out S registers +patch=1,EE,0010b024,word,0000A82D +patch=1,EE,0010b028,word,0000B02D +//FMV Jump +patch=1,EE,00698EBC,word,3C024400 // FMV Mirroring Fix +patch=1,EE,00698EC0,word,AE620160 // Store Left +patch=1,EE,00698EC4,word,AE6201A0 // Store Right +patch=1,EE,00698EC8,word,3C02005D // Process FMV Type Check +patch=1,EE,00698ECC,word,24424B70 +patch=1,EE,00698ED0,word,00431021 +patch=1,EE,00698ED4,word,84430000 +patch=1,EE,00698ED8,word,24020005 +patch=1,EE,00698EDC,word,08042BF3 //Jump back +patch=1,EE,00698EE0,word,00000000 +//1px tiling fix +patch=1,EE,0010B0E4,word,2463FFFF +patch=1,EE,0010B0E8,word,44830000 + +//zoom fix +//(ALL cheats must be loaded via cheats_ws or else it will freeze +//upon entering the protag's bedroom for the first time) +patch=1,EE,003bb94c,word,0c132e4c +patch=1,EE,003bb950,word,0220202d +patch=1,EE,003bb954,word,0220202d +patch=1,EE,003bb958,word,0200282d +patch=1,EE,003bb95c,word,0000302d +patch=1,EE,003bb960,word,0c132dfc +patch=1,EE,003bb964,word,00000000 +patch=1,EE,003bb968,word,0c130e20 +patch=1,EE,003bb96c,word,0200202d +patch=1,EE,003bb970,word,0240202d +patch=1,EE,003bb974,word,3c013fa1 // 80=hor+, a1=moonwalk fix, aa=vert- +patch=1,EE,003bb978,word,44810000 +patch=1,EE,003bb97c,word,c66c0100 +patch=1,EE,003bb980,word,0c069160 +patch=1,EE,003bb984,word,46006303 + + +/////////////////////////////////////////////////////// +//In-Game Menu Portraits fix by Arapapa +//74008224 21104500 00004284 +//74008224 21104500 00004294 +patch=1,EE,00112b94,word,08030034 +patch=1,EE,000c00d0,word,94420000 +patch=1,EE,000c00d4,word,01224821 +patch=1,EE,000c00d8,word,00421021 +patch=1,EE,000c00dc,word,01221021 +patch=1,EE,000c00e0,word,00021082 +patch=1,EE,000c00e4,word,08044ae6 + +//Main Character X-Position +//d643033c +patch=1,EE,0011cb14,word,3c0343f0 //3c0343d6 +patch=1,EE,0011cbc4,word,3c0343f0 //3c0343d6 +patch=1,EE,0011d118,word,3c0343f0 //3c0343d6 +patch=1,EE,0011d7f4,word,3c0343f0 //3c0343d6 +patch=1,EE,0011e0dc,word,3c0343f0 //3c0343d6 +patch=1,EE,00125e94,word,3c0343f0 //3c0343d6 +patch=1,EE,001260c8,word,3c0343f0 //3c0343d6 +patch=1,EE,0014ca5c,word,3c0343f0 //3c0343d6 +patch=1,EE,00160914,word,3c0343f0 //3c0343d6 +patch=1,EE,00160b64,word,3c0343f0 //3c0343d6 +patch=1,EE,0018a744,word,3c0343f0 //3c0343d6 + +//Menu (Status) Main Character X-Position #2 +//c1010324 00008344 00000000 (2 times) +patch=1,EE,0012633c,word,240301f5 //240301c1 +patch=1,EE,00126530,word,240301f5 //240301c1 + +//Partner Character X-Position +//b343023c +patch=1,EE,00164d84,word,3c0243d8 //3c0243b3 +patch=1,EE,001653f8,word,3c0243d8 //3c0243b3 +patch=1,EE,0016573c,word,3c0243d8 //3c0243b3 +patch=1,EE,00165b90,word,3c0243d8 //3c0243b3 +patch=1,EE,00166548,word,3c0243d8 //3c0243b3 + +//Main Character (In-Game Menu) Shadow +//803f023c b000a2af +//803f023c b000a1af +patch=1,EE,00126890,word,3c013fab //00000000 +patch=1,EE,001268b0,word,afa100b0 //afa200b0 + +//Shadow (In-Game Menu) X-Position fix +//3c43023c +//3c43023c 4802a2af 4c02a0af +patch=1,EE,00126ca4,word,3c024398 //3c02433c Main Character's Shadow +patch=1,EE,00126dd8,word,3c024398 //3c02433c +patch=1,EE,00126efc,word,3c024398 //3c02433c +patch=1,EE,00127044,word,3c024398 //3c02433c +patch=1,EE,001270f0,word,3c024398 //3c02433c +patch=1,EE,00127184,word,3c024398 //3c02433c +patch=1,EE,0012729c,word,3c024398 //3c02433c +patch=1,EE,00164cf0,word,3c0243cc //3c02433c Partner's Shadow +/////////////////////////////////////////////////////// + +//Popup portraits, Clock and etc.. fix by Arapapa +//Some elaboration: By pop up portraits they ment cut ins and the clock is the animation that plays when you enter the dark hour -The Calculator +//02080046 b4f260e4 6c0080c4 +patch=1,EE,004aa460,word,08030024 +patch=1,EE,000c0090,word,46000802 +patch=1,EE,000c0094,word,3c013f40 +patch=1,EE,000c0098,word,4481f000 +patch=1,EE,000c009c,word,461e0002 +patch=1,EE,000c00a0,word,0812a919 + +//////////////////////////////////////////////// +//Detect 'Open the in-game menu' +patch=1,EE,e0020000,extended,107cdf48 +patch=1,EE,204aa460,extended,46000802 //Set original value +patch=1,EE,20112b94,extended,08030034 //84420000 jump to 'In-Game Menu Portraits fix' + +patch=1,EE,e0020000,extended,007cdf48 +patch=1,EE,204aa460,extended,08030024 //46000802 jump to 'Clock, Popup Portraits and etc fix' +patch=1,EE,20112b94,extended,84420000 //Set original value + +//Detect 'Scene changing' +//0040023c c0f2a0e4 20108046 +//00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 64 00 00 00 00 00 00 00 +patch=1,EE,e0010000,extended,107CDED4 +patch=1,EE,204aa444,extended,3c02402a //Zoom + +patch=1,EE,e0010000,extended,007CDED4 +patch=1,EE,204aa444,extended,3c024000 //Set original value +//////////////////////////////////////////////// + +//Arcana Card fix by Arapapa +//fe42023c 00608244 +//be42023c 00608244 (twice) +patch=1,EE,003a0374,word,3c0242be //3c0242fe +patch=1,EE,003a0448,word,3c0242be //3c0242fe + +//b442023c 00008244 00000000 41080046 +//4042023c 00008244 00000000 41080046(2nd) +patch=1,EE,003a0060,word,3c024240 //3c0242b4 + +//Shuffle Time (Card) fix by Arpapa +//2c0000c6 6000a0e7 +patch=1,EE,0020caf4,word,08168754 //c600002c +patch=1,EE,005a1d50,word,c600002c //00000000 +patch=1,EE,005a1d54,word,3c013f40 //00000000 +patch=1,EE,005a1d58,word,4481f000 //00000000 +patch=1,EE,005a1d5c,word,461e0002 //00000000 +patch=1,EE,005a1d60,word,080832be //00000000 + +/////////////////////////////////////////////////////////// +//S.LINK - Community (2D Characters & Cards) fix by Arapapa +//000040c4 0000e0e4 040040c4 (3rd) +//patch=1,EE,00114390,word,081FB4CB //Jump to patch check (Approach 1) *Sorry these two lines I think were a left* +//patch=1,EE,00114390,word,00000000 //nop patch check *over from my testing you can ingnore them -The Calculator* +patch=1,EE,00114390,word,0816875a //Jump to oringal patch + +patch=1,EE,005a1d68,word,c4400000 +patch=1,EE,005a1d6c,word,3c013f40 +patch=1,EE,005a1d70,word,4481f000 +patch=1,EE,005a1d74,word,461e0002 +patch=1,EE,005a1d78,word,080450e5 + +////////////////////////////// +//Calculator's Tartarous offset +//Approach 2 Just off set the position lol +//461D6B42 mul (LOL didn't even use this why would I? Did help me get to the asnswer tho) {Yeah I did kinda use it in the end} +//Select floor menu (Animation hold) +patch=1,EE,00441720,word,3C02C260 //Main Tower offset +patch=1,EE,004416E8,word,0C1FB4CB //Call offset glow/outline and draw +//Select floor menu (Animation enter) +patch=1,EE,004477F8,word,3C02C260 //Main Tower offset +patch=1,EE,0043FBB8,word,0C1FB4CB //Call offset glow/outline and draw +//Select floor menu (Animation exit) +patch=1,EE,0043FC64,word,3C02C260 //Main Tower offset +patch=1,EE,004477C0,word,0C1FB4CB //Call offset glow/outline and draw +//Progress to next block (Animation enter) +patch=1,EE,0044A4EC,word,3C02C260 //Main Tower offset +patch=1,EE,0043EA58,word,0C1FB4CB //Call offset glow/outline and draw +//Progress to next block (Animation hold) +patch=1,EE,00442CC0,word,3C02C260 //Main Tower offset +patch=1,EE,00442C88,word,0C1FB4CB //Call offset glow/outline and draw +//Progress to next block (Animation exit) +patch=1,EE,0044341C,word,3C02C260 //Main Tower offset +patch=1,EE,00443370,word,0C1FB4CB //Call offset glow/outline and draw + +//Hooked draw call to offset glow/outline +patch=1,EE,007ED32C,word,3C02C338 //Load the offset to v0 +patch=1,EE,007ED330,word,4482E800 //Loaf v0 in f29 +patch=1,EE,007ED334,word,08045034 //Jump the draw function to resume regular execution +patch=1,EE,007ED338,word,461D6B41 //f13 = f13-f29 +///////////////////////////////// + +//S.LINK - Community 2D Characters X-Position +//bb43023c 00088244 0002a0c7 +patch=1,EE,0013a2ac,word,3c024405 //3c0243bb +//b143023c 00088244 f801a0c7 +patch=1,EE,0013a350,word,3c024400 //3c0243b1 + +//S.LINK - Community Cards X-Position +//c041023c 00088244 7800a0c7 (2nd) +patch=1,EE,001373f4,word,3c024250 //3c0241c0 + +//S.LINK - Main Menu Shadows X-Position +//c842033c 00008344 00000000 410d0046 100055e4 +//c842033c 00008344 00000000 01080046 100040e4 (4 times) +patch=1,EE,001368fc,word,3c0341b0 //3c0342c8 Shadow +patch=1,EE,001379f0,word,3c0341b0 //3c0342c8 Shadow Character +patch=1,EE,0013804c,word,3c0341b0 //3c0342c8 +patch=1,EE,00138618,word,3c0341b0 //3c0342c8 +patch=1,EE,00138ce4,word,3c0341b0 //3c0342c8 + + +//S.LINK - Community Cards #2 X-Size +//000060c4 000000e5 040060c4 040000e5 +patch=1,EE,00115148,word,0803002c +patch=1,EE,000c00b0,word,c4600000 +patch=1,EE,000c00b4,word,3c013f40 +patch=1,EE,000c00b8,word,4481f000 +patch=1,EE,000c00bc,word,461e0002 +patch=1,EE,000c00c0,word,08045453 + +//S.LINK - Community Cards #2 X-Position +//e041023c 00088244 7800a0c7 400b0046 (3rd) +patch=1,EE,001395dc,word,3c024256 //3c0241e0 + +//S.LINK - Reverse Community Cards #1 X-Position +//c041023c 00088244 7800a0c7 (1st) +//8841023c 00088244 7800a0c7 (1st) +patch=1,EE,00137398,word,3c024250 //3c0241c0 Reverse Cards +patch=1,EE,0013749c,word,3c0241b6 //3c024188 Red Box + +//S.LINK - Reverse Community Cards #2 +//4041023c 00008244 00000000 010b0046 +patch=1,EE,00139544,word,3c024010 //3c024140 Red Box +//e041023c 00088244 7800a0c7 400b0046 (2nd) +patch=1,EE,00139470,word,3c024216 //3c0241e0 X-Position +/////////////////////////////////////////////////////////// + +//Popup Portraits (Left top, In the Battles) fix by Arapapa +//8045023c 00008244 00000000 42001546 (1st) +patch=1,EE,003c90ac,word,3c024540 //3c024580 + +//Popup Portraits (Left top, In the Battles) X-Position +//100040e4 00009244 00000000 (2nd) +patch=1,EE,003c9084,word,00000000 + +//8042023c 00108244 80c1023c +patch=1,EE,003ab7f8,word,3c020000 //3c024280 + +//Flare effect fix by Arapapa +//0040023c 00088244 00000000 82090046 +patch=1,EE,00347b38,word,3c023fc0 //3c024000 Zoom + +//42090046 2d180000 803f023c +patch=1,EE,00347b50,word,08030008 //Y-Fov +patch=1,EE,000c0020,word,46000942 +patch=1,EE,000c0024,word,461e2943 +patch=1,EE,000c0028,word,080d1ed5 +/////////////////////////////////////////////////////////// + +//Head Portraits (Right, In the Battles) fix by Arapapa +//10004426 7000a527 (1st) +patch=1,EE,0022d804,word,0803000c //#1 +patch=1,EE,000c0030,word,26440010 +patch=1,EE,000c0034,word,c7bf0078 +patch=1,EE,000c0038,word,3c013f40 +patch=1,EE,000c003c,word,4481f000 +patch=1,EE,000c0040,word,461effc2 +patch=1,EE,000c0044,word,e7bf0078 +patch=1,EE,000c0048,word,0808b602 + +//10014426 7000a527 (1st) +patch=1,EE,0022d904,word,08030014 //#2 +patch=1,EE,000c0050,word,26440110 +patch=1,EE,000c0054,word,c7bf0078 +patch=1,EE,000c0058,word,3c013f40 +patch=1,EE,000c005c,word,4481f000 +patch=1,EE,000c0060,word,461effc2 +patch=1,EE,000c0064,word,e7bf0078 +patch=1,EE,000c0068,word,0808b642 + +//Head Portraits (Right, In the Battles) X-Position +//f041033c 00008344 00000000 c0051746 (1st) +patch=1,EE,0022d7c4,word,3c034220 //3c0341f0 + +//Emoticon (In the Battles) fix by Arapapa +//30054426 7000a527 +patch=1,EE,0022dd98,word,0803001c +patch=1,EE,000c0070,word,26440530 +patch=1,EE,000c0074,word,c7bf0078 +patch=1,EE,000c0078,word,3c013f40 +patch=1,EE,000c007c,word,4481f000 +patch=1,EE,000c0080,word,461effc2 +patch=1,EE,000c0084,word,e7bf0078 +patch=1,EE,000c0088,word,0808b767 + +//Emoticon X-Position +//e842033c 00008344 00000000 00001946 +patch=1,EE,0022dd58,word,3c0342d0 //3c0342e8 + +///////////////////////////////////////////// +//Title Menu fix by Arapapa +patch=1,EE,0026e7d4,word,3c013fab //00000000 +patch=1,EE,0026e7e4,word,afa10068 //afa20068 #1 +patch=1,EE,0026e818,word,afa10068 //afa20068 #2 +patch=1,EE,0026e84c,word,afa10068 //afa20068 #3 +patch=1,EE,0026e880,word,afa10068 //afa20068 #4 +patch=1,EE,0026eaac,word,afa10068 //afa20068 #5 + +//Title Menu (Shadow) +patch=1,EE,0026ea50,word,3c02439b //3c024368 + +//Sub Menu - Select Episode (Shadow) +patch=1,EE,0026b524,word,c7808478 //00000000 +patch=1,EE,0026b534,word,461e0002 //c7808478 + +[Mode 480p] +author=felixthecat1970 +comment=Forces progressive scan at startup +patch=0,EE,00197AF0,extended,24040057 +patch=0,EE,1077EF3C,extended,000001C0 +patch=0,EE,204DFF34,extended,241B0050 +patch=0,EE,204E00B4,extended,A07B5762 +patch=0,EE,204E2900,extended,A05B5762 +patch=0,EE,2019D328,extended,03601020 +patch=0,EE,2019D334,extended,0000D82D +patch=0,EE,2019D348,extended,241B0001 diff --git a/patches/SLUS-21621_1EA75934.pnach b/patches/SLUS-21621_1EA75934.pnach new file mode 100644 index 00000000..3b05a0fc --- /dev/null +++ b/patches/SLUS-21621_1EA75934.pnach @@ -0,0 +1,365 @@ +gametitle=Shin Megami Tensei: Persona 3 FES (NTSC-U) SLUS-21621 1EA75934 (Controllable Characters) + +[Widescreen 16:9] +gsaspectratio=16:9 +author=nemesis2000, devina, CeruleansBlue, Arapapa, The Calculator, Alexankitty + +//Widescreen 16:9 + +//X-Fov by CeruleansBlue +patch=1,EE,007cad1c,word,3fe38e38 + +//partial HUD fix +patch=1,EE,00106e30,word,3c043f40 +patch=1,EE,00106e38,word,00701821 +patch=1,EE,00106e3c,word,24632bac +patch=1,EE,00106e44,word,00000000 +patch=1,EE,00106e48,word,24630004 +patch=1,EE,00106e4c,word,3c043f80 + +//FMV Fix by Alexankitty +patch=1,EE,0010AFC8,word,081A63AF //Jump for additional instruction space +patch=1,EE,0010AFCC,word,00000000 +patch=1,EE,0010AFD0,word,14620006 // branch depending on FMV type +patch=1,EE,0010AFD4,word,00000000 +patch=1,EE,0010AFD8,word,3C023E00 // Size Top +patch=1,EE,0010AFDC,word,3C1443E0 // Size Bottom +patch=1,EE,0010AFE0,word,3C1542A0 // Size Left +patch=1,EE,0010AFE4,word,3C160BB0 // Size Right +patch=1,EE,0010AFE8,word,10000005 // Jump to next section +patch=1,EE,0010AFEC,word,00000000 +patch=1,EE,0010AFF0,word,3C023E00 // Size Top +patch=1,EE,0010AFF4,word,3C1443E1 // Size Bottom +patch=1,EE,0010AFF8,word,3C1541F8 // Size Left +patch=1,EE,0010AFFC,word,3C161850 // Size Right +patch=1,EE,0010B000,word,AE6200E4 // Store Y Top Left +patch=1,EE,0010B004,word,AE620164 // Store Y Bottom Left +patch=1,EE,0010B008,word,AE740124 // Store Y Top Right +patch=1,EE,0010B00C,word,AE7401A4 // Store Y Bottom Right +patch=1,EE,0010B010,word,AE7500E0 // Store X Top Left +patch=1,EE,0010B014,word,AE750120 // Store X Bottom Left +patch=1,EE,0010B018,word,AE76015F // Store X Top Right +patch=1,EE,0010b01C,word,AE76019F // Store X Bottom Left +patch=1,EE,0010b020,word,0000A02D // Clear out S registers +patch=1,EE,0010b024,word,0000A82D +patch=1,EE,0010b028,word,0000B02D +//FMV Jump +patch=1,EE,00698EBC,word,3C024400 // FMV Mirroring Fix +patch=1,EE,00698EC0,word,AE620160 // Store Left +patch=1,EE,00698EC4,word,AE6201A0 // Store Right +patch=1,EE,00698EC8,word,3C02005D // Process FMV Type Check +patch=1,EE,00698ECC,word,24424B70 +patch=1,EE,00698ED0,word,00431021 +patch=1,EE,00698ED4,word,84430000 +patch=1,EE,00698ED8,word,24020005 +patch=1,EE,00698EDC,word,08042BF3 //Jump back +patch=1,EE,00698EE0,word,00000000 +//1px tiling fix +patch=1,EE,0010B0E4,word,2463FFFF +patch=1,EE,0010B0E8,word,44830000 + +//zoom fix +//(ALL cheats must be loaded via cheats_ws or else it will freeze +//upon entering the protag's bedroom for the first time) +patch=1,EE,003bb94c,word,0c132e4c +patch=1,EE,003bb950,word,0220202d +patch=1,EE,003bb954,word,0220202d +patch=1,EE,003bb958,word,0200282d +patch=1,EE,003bb95c,word,0000302d +patch=1,EE,003bb960,word,0c132dfc +patch=1,EE,003bb964,word,00000000 +patch=1,EE,003bb968,word,0c130e20 +patch=1,EE,003bb96c,word,0200202d +patch=1,EE,003bb970,word,0240202d +patch=1,EE,003bb974,word,3c013fa1 // 80=hor+, a1=moonwalk fix, aa=vert- +patch=1,EE,003bb978,word,44810000 +patch=1,EE,003bb97c,word,c66c0100 +patch=1,EE,003bb980,word,0c069160 +patch=1,EE,003bb984,word,46006303 + + +/////////////////////////////////////////////////////// +//In-Game Menu Portraits fix by Arapapa +//74008224 21104500 00004284 +//74008224 21104500 00004294 +patch=1,EE,00112b94,word,08030034 +patch=1,EE,000c00d0,word,94420000 +patch=1,EE,000c00d4,word,01224821 +patch=1,EE,000c00d8,word,00421021 +patch=1,EE,000c00dc,word,01221021 +patch=1,EE,000c00e0,word,00021082 +patch=1,EE,000c00e4,word,08044ae6 + +//Main Character X-Position +//d643033c +patch=1,EE,0011cb14,word,3c0343f0 //3c0343d6 +patch=1,EE,0011cbc4,word,3c0343f0 //3c0343d6 +patch=1,EE,0011d118,word,3c0343f0 //3c0343d6 +patch=1,EE,0011d7f4,word,3c0343f0 //3c0343d6 +patch=1,EE,0011e0dc,word,3c0343f0 //3c0343d6 +patch=1,EE,00125e94,word,3c0343f0 //3c0343d6 +patch=1,EE,001260c8,word,3c0343f0 //3c0343d6 +patch=1,EE,0014ca5c,word,3c0343f0 //3c0343d6 +patch=1,EE,00160914,word,3c0343f0 //3c0343d6 +patch=1,EE,00160b64,word,3c0343f0 //3c0343d6 +patch=1,EE,0018a744,word,3c0343f0 //3c0343d6 + +//Menu (Status) Main Character X-Position #2 +//c1010324 00008344 00000000 (2 times) +patch=1,EE,0012633c,word,240301f5 //240301c1 +patch=1,EE,00126530,word,240301f5 //240301c1 + +//Partner Character X-Position +//b343023c +patch=1,EE,00164d84,word,3c0243d8 //3c0243b3 +patch=1,EE,001653f8,word,3c0243d8 //3c0243b3 +patch=1,EE,0016573c,word,3c0243d8 //3c0243b3 +patch=1,EE,00165b90,word,3c0243d8 //3c0243b3 +patch=1,EE,00166548,word,3c0243d8 //3c0243b3 + +//Main Character (In-Game Menu) Shadow +//803f023c b000a2af +//803f023c b000a1af +patch=1,EE,00126890,word,3c013fab //00000000 +patch=1,EE,001268b0,word,afa100b0 //afa200b0 + +//Shadow (In-Game Menu) X-Position fix +//3c43023c +//3c43023c 4802a2af 4c02a0af +patch=1,EE,00126ca4,word,3c024398 //3c02433c Main Character's Shadow +patch=1,EE,00126dd8,word,3c024398 //3c02433c +patch=1,EE,00126efc,word,3c024398 //3c02433c +patch=1,EE,00127044,word,3c024398 //3c02433c +patch=1,EE,001270f0,word,3c024398 //3c02433c +patch=1,EE,00127184,word,3c024398 //3c02433c +patch=1,EE,0012729c,word,3c024398 //3c02433c +patch=1,EE,00164cf0,word,3c0243cc //3c02433c Partner's Shadow +/////////////////////////////////////////////////////// + +//Popup portraits, Clock and etc.. fix by Arapapa +//Some elaboration: By pop up portraits they ment cut ins and the clock is the animation that plays when you enter the dark hour -The Calculator +//02080046 b4f260e4 6c0080c4 +patch=1,EE,004aa460,word,08030024 +patch=1,EE,000c0090,word,46000802 +patch=1,EE,000c0094,word,3c013f40 +patch=1,EE,000c0098,word,4481f000 +patch=1,EE,000c009c,word,461e0002 +patch=1,EE,000c00a0,word,0812a919 + +//////////////////////////////////////////////// +//Detect 'Open the in-game menu' +patch=1,EE,e0020000,extended,107cdf48 +patch=1,EE,204aa460,extended,46000802 //Set original value +patch=1,EE,20112b94,extended,08030034 //84420000 jump to 'In-Game Menu Portraits fix' + +patch=1,EE,e0020000,extended,007cdf48 +patch=1,EE,204aa460,extended,08030024 //46000802 jump to 'Clock, Popup Portraits and etc fix' +patch=1,EE,20112b94,extended,84420000 //Set original value + +//Detect 'Scene changing' +//0040023c c0f2a0e4 20108046 +//00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 64 00 00 00 00 00 00 00 +patch=1,EE,e0010000,extended,107CDED4 +patch=1,EE,204aa444,extended,3c02402a //Zoom + +patch=1,EE,e0010000,extended,007CDED4 +patch=1,EE,204aa444,extended,3c024000 //Set original value +//////////////////////////////////////////////// + +//Arcana Card fix by Arapapa +//fe42023c 00608244 +//be42023c 00608244 (twice) +patch=1,EE,003a0374,word,3c0242be //3c0242fe +patch=1,EE,003a0448,word,3c0242be //3c0242fe + +//b442023c 00008244 00000000 41080046 +//4042023c 00008244 00000000 41080046(2nd) +patch=1,EE,003a0060,word,3c024240 //3c0242b4 + +//Shuffle Time (Card) fix by Arpapa +//2c0000c6 6000a0e7 +patch=1,EE,0020caf4,word,08168754 //c600002c +patch=1,EE,005a1d50,word,c600002c //00000000 +patch=1,EE,005a1d54,word,3c013f40 //00000000 +patch=1,EE,005a1d58,word,4481f000 //00000000 +patch=1,EE,005a1d5c,word,461e0002 //00000000 +patch=1,EE,005a1d60,word,080832be //00000000 + +/////////////////////////////////////////////////////////// +//S.LINK - Community (2D Characters & Cards) fix by Arapapa +//000040c4 0000e0e4 040040c4 (3rd) +//patch=1,EE,00114390,word,081FB4CB //Jump to patch check (Approach 1) *Sorry these two lines I think were a left* +//patch=1,EE,00114390,word,00000000 //nop patch check *over from my testing you can ingnore them -The Calculator* +patch=1,EE,00114390,word,0816875a //Jump to oringal patch + +patch=1,EE,005a1d68,word,c4400000 +patch=1,EE,005a1d6c,word,3c013f40 +patch=1,EE,005a1d70,word,4481f000 +patch=1,EE,005a1d74,word,461e0002 +patch=1,EE,005a1d78,word,080450e5 + +////////////////////////////// +//Calculator's Tartarous offset +//Approach 2 Just off set the position lol +//461D6B42 mul (LOL didn't even use this why would I? Did help me get to the asnswer tho) {Yeah I did kinda use it in the end} +//Select floor menu (Animation hold) +patch=1,EE,00441720,word,3C02C260 //Main Tower offset +patch=1,EE,004416E8,word,0C1FB4CB //Call offset glow/outline and draw +//Select floor menu (Animation enter) +patch=1,EE,004477F8,word,3C02C260 //Main Tower offset +patch=1,EE,0043FBB8,word,0C1FB4CB //Call offset glow/outline and draw +//Select floor menu (Animation exit) +patch=1,EE,0043FC64,word,3C02C260 //Main Tower offset +patch=1,EE,004477C0,word,0C1FB4CB //Call offset glow/outline and draw +//Progress to next block (Animation enter) +patch=1,EE,0044A4EC,word,3C02C260 //Main Tower offset +patch=1,EE,0043EA58,word,0C1FB4CB //Call offset glow/outline and draw +//Progress to next block (Animation hold) +patch=1,EE,00442CC0,word,3C02C260 //Main Tower offset +patch=1,EE,00442C88,word,0C1FB4CB //Call offset glow/outline and draw +//Progress to next block (Animation exit) +patch=1,EE,0044341C,word,3C02C260 //Main Tower offset +patch=1,EE,00443370,word,0C1FB4CB //Call offset glow/outline and draw + +//Hooked draw call to offset glow/outline +patch=1,EE,007ED32C,word,3C02C338 //Load the offset to v0 +patch=1,EE,007ED330,word,4482E800 //Loaf v0 in f29 +patch=1,EE,007ED334,word,08045034 //Jump the draw function to resume regular execution +patch=1,EE,007ED338,word,461D6B41 //f13 = f13-f29 +///////////////////////////////// + +//S.LINK - Community 2D Characters X-Position +//bb43023c 00088244 0002a0c7 +patch=1,EE,0013a2ac,word,3c024405 //3c0243bb +//b143023c 00088244 f801a0c7 +patch=1,EE,0013a350,word,3c024400 //3c0243b1 + +//S.LINK - Community Cards X-Position +//c041023c 00088244 7800a0c7 (2nd) +patch=1,EE,001373f4,word,3c024250 //3c0241c0 + +//S.LINK - Main Menu Shadows X-Position +//c842033c 00008344 00000000 410d0046 100055e4 +//c842033c 00008344 00000000 01080046 100040e4 (4 times) +patch=1,EE,001368fc,word,3c0341b0 //3c0342c8 Shadow +patch=1,EE,001379f0,word,3c0341b0 //3c0342c8 Shadow Character +patch=1,EE,0013804c,word,3c0341b0 //3c0342c8 +patch=1,EE,00138618,word,3c0341b0 //3c0342c8 +patch=1,EE,00138ce4,word,3c0341b0 //3c0342c8 + + +//S.LINK - Community Cards #2 X-Size +//000060c4 000000e5 040060c4 040000e5 +patch=1,EE,00115148,word,0803002c +patch=1,EE,000c00b0,word,c4600000 +patch=1,EE,000c00b4,word,3c013f40 +patch=1,EE,000c00b8,word,4481f000 +patch=1,EE,000c00bc,word,461e0002 +patch=1,EE,000c00c0,word,08045453 + +//S.LINK - Community Cards #2 X-Position +//e041023c 00088244 7800a0c7 400b0046 (3rd) +patch=1,EE,001395dc,word,3c024256 //3c0241e0 + +//S.LINK - Reverse Community Cards #1 X-Position +//c041023c 00088244 7800a0c7 (1st) +//8841023c 00088244 7800a0c7 (1st) +patch=1,EE,00137398,word,3c024250 //3c0241c0 Reverse Cards +patch=1,EE,0013749c,word,3c0241b6 //3c024188 Red Box + +//S.LINK - Reverse Community Cards #2 +//4041023c 00008244 00000000 010b0046 +patch=1,EE,00139544,word,3c024010 //3c024140 Red Box +//e041023c 00088244 7800a0c7 400b0046 (2nd) +patch=1,EE,00139470,word,3c024216 //3c0241e0 X-Position +/////////////////////////////////////////////////////////// + +//Popup Portraits (Left top, In the Battles) fix by Arapapa +//8045023c 00008244 00000000 42001546 (1st) +patch=1,EE,003c90ac,word,3c024540 //3c024580 + +//Popup Portraits (Left top, In the Battles) X-Position +//100040e4 00009244 00000000 (2nd) +patch=1,EE,003c9084,word,00000000 + +//8042023c 00108244 80c1023c +patch=1,EE,003ab7f8,word,3c020000 //3c024280 + +//Flare effect fix by Arapapa +//0040023c 00088244 00000000 82090046 +patch=1,EE,00347b38,word,3c023fc0 //3c024000 Zoom + +//42090046 2d180000 803f023c +patch=1,EE,00347b50,word,08030008 //Y-Fov +patch=1,EE,000c0020,word,46000942 +patch=1,EE,000c0024,word,461e2943 +patch=1,EE,000c0028,word,080d1ed5 +/////////////////////////////////////////////////////////// + +//Head Portraits (Right, In the Battles) fix by Arapapa +//10004426 7000a527 (1st) +patch=1,EE,0022d804,word,0803000c //#1 +patch=1,EE,000c0030,word,26440010 +patch=1,EE,000c0034,word,c7bf0078 +patch=1,EE,000c0038,word,3c013f40 +patch=1,EE,000c003c,word,4481f000 +patch=1,EE,000c0040,word,461effc2 +patch=1,EE,000c0044,word,e7bf0078 +patch=1,EE,000c0048,word,0808b602 + +//10014426 7000a527 (1st) +patch=1,EE,0022d904,word,08030014 //#2 +patch=1,EE,000c0050,word,26440110 +patch=1,EE,000c0054,word,c7bf0078 +patch=1,EE,000c0058,word,3c013f40 +patch=1,EE,000c005c,word,4481f000 +patch=1,EE,000c0060,word,461effc2 +patch=1,EE,000c0064,word,e7bf0078 +patch=1,EE,000c0068,word,0808b642 + +//Head Portraits (Right, In the Battles) X-Position +//f041033c 00008344 00000000 c0051746 (1st) +patch=1,EE,0022d7c4,word,3c034220 //3c0341f0 + +//Emoticon (In the Battles) fix by Arapapa +//30054426 7000a527 +patch=1,EE,0022dd98,word,0803001c +patch=1,EE,000c0070,word,26440530 +patch=1,EE,000c0074,word,c7bf0078 +patch=1,EE,000c0078,word,3c013f40 +patch=1,EE,000c007c,word,4481f000 +patch=1,EE,000c0080,word,461effc2 +patch=1,EE,000c0084,word,e7bf0078 +patch=1,EE,000c0088,word,0808b767 + +//Emoticon X-Position +//e842033c 00008344 00000000 00001946 +patch=1,EE,0022dd58,word,3c0342d0 //3c0342e8 + +///////////////////////////////////////////// +//Title Menu fix by Arapapa +patch=1,EE,0026e7d4,word,3c013fab //00000000 +patch=1,EE,0026e7e4,word,afa10068 //afa20068 #1 +patch=1,EE,0026e818,word,afa10068 //afa20068 #2 +patch=1,EE,0026e84c,word,afa10068 //afa20068 #3 +patch=1,EE,0026e880,word,afa10068 //afa20068 #4 +patch=1,EE,0026eaac,word,afa10068 //afa20068 #5 + +//Title Menu (Shadow) +patch=1,EE,0026ea50,word,3c02439b //3c024368 + +//Sub Menu - Select Episode (Shadow) +patch=1,EE,0026b524,word,c7808478 //00000000 +patch=1,EE,0026b534,word,461e0002 //c7808478 + +[Mode 480p] +author=felixthecat1970 +comment=Forces progressive scan at startup +patch=0,EE,00197AF0,extended,24040057 +patch=0,EE,1077EF3C,extended,000001C0 +patch=0,EE,204DFF34,extended,241B0050 +patch=0,EE,204E00B4,extended,A07B5762 +patch=0,EE,204E2900,extended,A05B5762 +patch=0,EE,2019D328,extended,03601020 +patch=0,EE,2019D334,extended,0000D82D +patch=0,EE,2019D348,extended,241B0001 diff --git a/patches/SLUS-21621_94A82AAA.pnach b/patches/SLUS-21621_94A82AAA.pnach index cd0d4145..003b9063 100644 --- a/patches/SLUS-21621_94A82AAA.pnach +++ b/patches/SLUS-21621_94A82AAA.pnach @@ -1,8 +1,8 @@ -gametitle=Shin Megami Tensei: Persona 3 FES (U)(SLUS-21621) +gametitle=Shin Megami Tensei: Persona 3 FES (U) SLUS-21621 94A82AAA [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000, devina, CeruleansBlue, Arapapa, The Calculator +author=nemesis2000, devina, CeruleansBlue, Arapapa, The Calculator, Alexankitty //Widescreen 16:9 @@ -351,6 +351,70 @@ patch=1,EE,0026ea50,word,3c02439b //3c024368 //Sub Menu - Select Episode (Shadow) patch=1,EE,0026b524,word,c7808478 //00000000 patch=1,EE,0026b534,word,461e0002 //c7808478 -////////////////////////////////////////// - +[Mode 480p] +author=felixthecat1970 +comment=Forces progressive scan at startup +patch=0,EE,00197AF0,extended,24040057 +patch=0,EE,1077EF3C,extended,000001C0 +patch=0,EE,204DFF34,extended,241B0050 +patch=0,EE,204E00B4,extended,A07B5762 +patch=0,EE,204E2900,extended,A05B5762 +patch=0,EE,2019D328,extended,03601020 +patch=0,EE,2019D334,extended,0000D82D +patch=0,EE,2019D348,extended,241B0001 + +[Controllable Party Members] +author=TGE +comment=The entire party is controllable like Persona 4/5 +patch=1,EE,0029AFC8,word,00000000 // nop check for if battle unit is not mc -> ai +patch=1,EE,0020207C,word,00000000 // load proper unit id for battle menu skill list +patch=1,EE,0020208C,word,8F84B6FC +patch=1,EE,00202090,word,8C840254 +patch=1,EE,00202094,word,8C840030 +patch=1,EE,00202098,word,8C8400A4 +patch=1,EE,0028DE14,word,2405001B // fix escape +patch=1,EE,0029692C,word,00000000 +patch=1,EE,0028AC5C,word,9683001A // disable persona menu for non-mc +patch=1,EE,0028AC60,word,3063FFBF +patch=1,EE,0028AC64,word,A683001A +patch=1,EE,0028AC68,word,96830018 +patch=1,EE,0028AC6C,word,00000000 +patch=1,EE,0028AC70,word,081A6AF8 +patch=1,EE,0028AC74,word,00000000 +patch=1,EE,0069ABE0,word,8F82B6FC +patch=1,EE,0069ABE4,word,8C420148 +patch=1,EE,0069ABE8,word,14540004 +patch=1,EE,0069ABEC,word,00000000 +patch=1,EE,0069ABF0,word,34630400 +patch=1,EE,0069ABF4,word,A6830018 +patch=1,EE,0069ABF8,word,34630400 +patch=1,EE,0069ABFC,word,080A2B1D +patch=1,EE,0069AC00,word,00000000 +patch=1,EE,001FF518,word,8E300254 // fix skill requirements +patch=1,EE,001FF51C,word,8E100030 +patch=1,EE,001FF520,word,8E1000A4 +patch=1,EE,001FF524,word,00000000 +patch=1,EE,001FF528,word,00000000 +patch=1,EE,001FF52C,word,00000000 +patch=1,EE,002D8210,word,00000000 // fix items +patch=1,EE,002D8220,word,00000000 +patch=1,EE,002D8224,word,00000000 +patch=1,EE,002D823C,word,00000000 +patch=1,EE,002A3914,word,081A6B01 // fix boss battle camera +patch=1,EE,0069AC04,word,1240000B +patch=1,EE,0069AC08,word,00000000 +patch=1,EE,0069AC0C,word,8E420030 +patch=1,EE,0069AC10,word,844700A2 +patch=1,EE,0069AC14,word,20030001 +patch=1,EE,0069AC18,word,14E00006 +patch=1,EE,0069AC1C,word,00000000 +patch=1,EE,0069AC20,word,844200A4 +patch=1,EE,0069AC24,word,10430003 +patch=1,EE,0069AC28,word,00001021 +patch=1,EE,0069AC2C,word,080A8E47 +patch=1,EE,0069AC30,word,00000000 +patch=1,EE,0069AC34,word,0C0BE210 +patch=1,EE,0069AC38,word,00000000 +patch=1,EE,0069AC3C,word,080A8E47 +patch=1,EE,0069AC40,word,00000000 diff --git a/patches/SLUS-21621_97102837.pnach b/patches/SLUS-21621_97102837.pnach new file mode 100644 index 00000000..e8c971f4 --- /dev/null +++ b/patches/SLUS-21621_97102837.pnach @@ -0,0 +1,420 @@ +gametitle=Shin Megami Tensei: Persona 3 FES (NTSC-U) SLUS-21621 97102837 (UNDUB) + +[Widescreen 16:9] +gsaspectratio=16:9 +author=nemesis2000, devina, CeruleansBlue, Arapapa, The Calculator, Alexankitty + +//Widescreen 16:9 + +//X-Fov by CeruleansBlue +patch=1,EE,007cad1c,word,3fe38e38 + +//partial HUD fix +patch=1,EE,00106e30,word,3c043f40 +patch=1,EE,00106e38,word,00701821 +patch=1,EE,00106e3c,word,24632bac +patch=1,EE,00106e44,word,00000000 +patch=1,EE,00106e48,word,24630004 +patch=1,EE,00106e4c,word,3c043f80 + +//FMV Fix by Alexankitty +patch=1,EE,0010AFC8,word,081A63AF //Jump for additional instruction space +patch=1,EE,0010AFCC,word,00000000 +patch=1,EE,0010AFD0,word,14620006 // branch depending on FMV type +patch=1,EE,0010AFD4,word,00000000 +patch=1,EE,0010AFD8,word,3C023E00 // Size Top +patch=1,EE,0010AFDC,word,3C1443E0 // Size Bottom +patch=1,EE,0010AFE0,word,3C1542A0 // Size Left +patch=1,EE,0010AFE4,word,3C160BB0 // Size Right +patch=1,EE,0010AFE8,word,10000005 // Jump to next section +patch=1,EE,0010AFEC,word,00000000 +patch=1,EE,0010AFF0,word,3C023E00 // Size Top +patch=1,EE,0010AFF4,word,3C1443E1 // Size Bottom +patch=1,EE,0010AFF8,word,3C1541F8 // Size Left +patch=1,EE,0010AFFC,word,3C161850 // Size Right +patch=1,EE,0010B000,word,AE6200E4 // Store Y Top Left +patch=1,EE,0010B004,word,AE620164 // Store Y Bottom Left +patch=1,EE,0010B008,word,AE740124 // Store Y Top Right +patch=1,EE,0010B00C,word,AE7401A4 // Store Y Bottom Right +patch=1,EE,0010B010,word,AE7500E0 // Store X Top Left +patch=1,EE,0010B014,word,AE750120 // Store X Bottom Left +patch=1,EE,0010B018,word,AE76015F // Store X Top Right +patch=1,EE,0010b01C,word,AE76019F // Store X Bottom Left +patch=1,EE,0010b020,word,0000A02D // Clear out S registers +patch=1,EE,0010b024,word,0000A82D +patch=1,EE,0010b028,word,0000B02D +//FMV Jump +patch=1,EE,00698EBC,word,3C024400 // FMV Mirroring Fix +patch=1,EE,00698EC0,word,AE620160 // Store Left +patch=1,EE,00698EC4,word,AE6201A0 // Store Right +patch=1,EE,00698EC8,word,3C02005D // Process FMV Type Check +patch=1,EE,00698ECC,word,24424B70 +patch=1,EE,00698ED0,word,00431021 +patch=1,EE,00698ED4,word,84430000 +patch=1,EE,00698ED8,word,24020005 +patch=1,EE,00698EDC,word,08042BF3 //Jump back +patch=1,EE,00698EE0,word,00000000 +//1px tiling fix +patch=1,EE,0010B0E4,word,2463FFFF +patch=1,EE,0010B0E8,word,44830000 + +//zoom fix +//(ALL cheats must be loaded via cheats_ws or else it will freeze +//upon entering the protag's bedroom for the first time) +patch=1,EE,003bb94c,word,0c132e4c +patch=1,EE,003bb950,word,0220202d +patch=1,EE,003bb954,word,0220202d +patch=1,EE,003bb958,word,0200282d +patch=1,EE,003bb95c,word,0000302d +patch=1,EE,003bb960,word,0c132dfc +patch=1,EE,003bb964,word,00000000 +patch=1,EE,003bb968,word,0c130e20 +patch=1,EE,003bb96c,word,0200202d +patch=1,EE,003bb970,word,0240202d +patch=1,EE,003bb974,word,3c013fa1 // 80=hor+, a1=moonwalk fix, aa=vert- +patch=1,EE,003bb978,word,44810000 +patch=1,EE,003bb97c,word,c66c0100 +patch=1,EE,003bb980,word,0c069160 +patch=1,EE,003bb984,word,46006303 + + +/////////////////////////////////////////////////////// +//In-Game Menu Portraits fix by Arapapa +//74008224 21104500 00004284 +//74008224 21104500 00004294 +patch=1,EE,00112b94,word,08030034 +patch=1,EE,000c00d0,word,94420000 +patch=1,EE,000c00d4,word,01224821 +patch=1,EE,000c00d8,word,00421021 +patch=1,EE,000c00dc,word,01221021 +patch=1,EE,000c00e0,word,00021082 +patch=1,EE,000c00e4,word,08044ae6 + +//Main Character X-Position +//d643033c +patch=1,EE,0011cb14,word,3c0343f0 //3c0343d6 +patch=1,EE,0011cbc4,word,3c0343f0 //3c0343d6 +patch=1,EE,0011d118,word,3c0343f0 //3c0343d6 +patch=1,EE,0011d7f4,word,3c0343f0 //3c0343d6 +patch=1,EE,0011e0dc,word,3c0343f0 //3c0343d6 +patch=1,EE,00125e94,word,3c0343f0 //3c0343d6 +patch=1,EE,001260c8,word,3c0343f0 //3c0343d6 +patch=1,EE,0014ca5c,word,3c0343f0 //3c0343d6 +patch=1,EE,00160914,word,3c0343f0 //3c0343d6 +patch=1,EE,00160b64,word,3c0343f0 //3c0343d6 +patch=1,EE,0018a744,word,3c0343f0 //3c0343d6 + +//Menu (Status) Main Character X-Position #2 +//c1010324 00008344 00000000 (2 times) +patch=1,EE,0012633c,word,240301f5 //240301c1 +patch=1,EE,00126530,word,240301f5 //240301c1 + +//Partner Character X-Position +//b343023c +patch=1,EE,00164d84,word,3c0243d8 //3c0243b3 +patch=1,EE,001653f8,word,3c0243d8 //3c0243b3 +patch=1,EE,0016573c,word,3c0243d8 //3c0243b3 +patch=1,EE,00165b90,word,3c0243d8 //3c0243b3 +patch=1,EE,00166548,word,3c0243d8 //3c0243b3 + +//Main Character (In-Game Menu) Shadow +//803f023c b000a2af +//803f023c b000a1af +patch=1,EE,00126890,word,3c013fab //00000000 +patch=1,EE,001268b0,word,afa100b0 //afa200b0 + +//Shadow (In-Game Menu) X-Position fix +//3c43023c +//3c43023c 4802a2af 4c02a0af +patch=1,EE,00126ca4,word,3c024398 //3c02433c Main Character's Shadow +patch=1,EE,00126dd8,word,3c024398 //3c02433c +patch=1,EE,00126efc,word,3c024398 //3c02433c +patch=1,EE,00127044,word,3c024398 //3c02433c +patch=1,EE,001270f0,word,3c024398 //3c02433c +patch=1,EE,00127184,word,3c024398 //3c02433c +patch=1,EE,0012729c,word,3c024398 //3c02433c +patch=1,EE,00164cf0,word,3c0243cc //3c02433c Partner's Shadow +/////////////////////////////////////////////////////// + +//Popup portraits, Clock and etc.. fix by Arapapa +//Some elaboration: By pop up portraits they ment cut ins and the clock is the animation that plays when you enter the dark hour -The Calculator +//02080046 b4f260e4 6c0080c4 +patch=1,EE,004aa460,word,08030024 +patch=1,EE,000c0090,word,46000802 +patch=1,EE,000c0094,word,3c013f40 +patch=1,EE,000c0098,word,4481f000 +patch=1,EE,000c009c,word,461e0002 +patch=1,EE,000c00a0,word,0812a919 + +//////////////////////////////////////////////// +//Detect 'Open the in-game menu' +patch=1,EE,e0020000,extended,107cdf48 +patch=1,EE,204aa460,extended,46000802 //Set original value +patch=1,EE,20112b94,extended,08030034 //84420000 jump to 'In-Game Menu Portraits fix' + +patch=1,EE,e0020000,extended,007cdf48 +patch=1,EE,204aa460,extended,08030024 //46000802 jump to 'Clock, Popup Portraits and etc fix' +patch=1,EE,20112b94,extended,84420000 //Set original value + +//Detect 'Scene changing' +//0040023c c0f2a0e4 20108046 +//00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 64 00 00 00 00 00 00 00 +patch=1,EE,e0010000,extended,107CDED4 +patch=1,EE,204aa444,extended,3c02402a //Zoom + +patch=1,EE,e0010000,extended,007CDED4 +patch=1,EE,204aa444,extended,3c024000 //Set original value +//////////////////////////////////////////////// + +//Arcana Card fix by Arapapa +//fe42023c 00608244 +//be42023c 00608244 (twice) +patch=1,EE,003a0374,word,3c0242be //3c0242fe +patch=1,EE,003a0448,word,3c0242be //3c0242fe + +//b442023c 00008244 00000000 41080046 +//4042023c 00008244 00000000 41080046(2nd) +patch=1,EE,003a0060,word,3c024240 //3c0242b4 + +//Shuffle Time (Card) fix by Arpapa +//2c0000c6 6000a0e7 +patch=1,EE,0020caf4,word,08168754 //c600002c +patch=1,EE,005a1d50,word,c600002c //00000000 +patch=1,EE,005a1d54,word,3c013f40 //00000000 +patch=1,EE,005a1d58,word,4481f000 //00000000 +patch=1,EE,005a1d5c,word,461e0002 //00000000 +patch=1,EE,005a1d60,word,080832be //00000000 + +/////////////////////////////////////////////////////////// +//S.LINK - Community (2D Characters & Cards) fix by Arapapa +//000040c4 0000e0e4 040040c4 (3rd) +//patch=1,EE,00114390,word,081FB4CB //Jump to patch check (Approach 1) *Sorry these two lines I think were a left* +//patch=1,EE,00114390,word,00000000 //nop patch check *over from my testing you can ingnore them -The Calculator* +patch=1,EE,00114390,word,0816875a //Jump to oringal patch + +patch=1,EE,005a1d68,word,c4400000 +patch=1,EE,005a1d6c,word,3c013f40 +patch=1,EE,005a1d70,word,4481f000 +patch=1,EE,005a1d74,word,461e0002 +patch=1,EE,005a1d78,word,080450e5 + +////////////////////////////// +//Calculator's Tartarous offset +//Approach 2 Just off set the position lol +//461D6B42 mul (LOL didn't even use this why would I? Did help me get to the asnswer tho) {Yeah I did kinda use it in the end} +//Select floor menu (Animation hold) +patch=1,EE,00441720,word,3C02C260 //Main Tower offset +patch=1,EE,004416E8,word,0C1FB4CB //Call offset glow/outline and draw +//Select floor menu (Animation enter) +patch=1,EE,004477F8,word,3C02C260 //Main Tower offset +patch=1,EE,0043FBB8,word,0C1FB4CB //Call offset glow/outline and draw +//Select floor menu (Animation exit) +patch=1,EE,0043FC64,word,3C02C260 //Main Tower offset +patch=1,EE,004477C0,word,0C1FB4CB //Call offset glow/outline and draw +//Progress to next block (Animation enter) +patch=1,EE,0044A4EC,word,3C02C260 //Main Tower offset +patch=1,EE,0043EA58,word,0C1FB4CB //Call offset glow/outline and draw +//Progress to next block (Animation hold) +patch=1,EE,00442CC0,word,3C02C260 //Main Tower offset +patch=1,EE,00442C88,word,0C1FB4CB //Call offset glow/outline and draw +//Progress to next block (Animation exit) +patch=1,EE,0044341C,word,3C02C260 //Main Tower offset +patch=1,EE,00443370,word,0C1FB4CB //Call offset glow/outline and draw + +//Hooked draw call to offset glow/outline +patch=1,EE,007ED32C,word,3C02C338 //Load the offset to v0 +patch=1,EE,007ED330,word,4482E800 //Loaf v0 in f29 +patch=1,EE,007ED334,word,08045034 //Jump the draw function to resume regular execution +patch=1,EE,007ED338,word,461D6B41 //f13 = f13-f29 +///////////////////////////////// + +//S.LINK - Community 2D Characters X-Position +//bb43023c 00088244 0002a0c7 +patch=1,EE,0013a2ac,word,3c024405 //3c0243bb +//b143023c 00088244 f801a0c7 +patch=1,EE,0013a350,word,3c024400 //3c0243b1 + +//S.LINK - Community Cards X-Position +//c041023c 00088244 7800a0c7 (2nd) +patch=1,EE,001373f4,word,3c024250 //3c0241c0 + +//S.LINK - Main Menu Shadows X-Position +//c842033c 00008344 00000000 410d0046 100055e4 +//c842033c 00008344 00000000 01080046 100040e4 (4 times) +patch=1,EE,001368fc,word,3c0341b0 //3c0342c8 Shadow +patch=1,EE,001379f0,word,3c0341b0 //3c0342c8 Shadow Character +patch=1,EE,0013804c,word,3c0341b0 //3c0342c8 +patch=1,EE,00138618,word,3c0341b0 //3c0342c8 +patch=1,EE,00138ce4,word,3c0341b0 //3c0342c8 + + +//S.LINK - Community Cards #2 X-Size +//000060c4 000000e5 040060c4 040000e5 +patch=1,EE,00115148,word,0803002c +patch=1,EE,000c00b0,word,c4600000 +patch=1,EE,000c00b4,word,3c013f40 +patch=1,EE,000c00b8,word,4481f000 +patch=1,EE,000c00bc,word,461e0002 +patch=1,EE,000c00c0,word,08045453 + +//S.LINK - Community Cards #2 X-Position +//e041023c 00088244 7800a0c7 400b0046 (3rd) +patch=1,EE,001395dc,word,3c024256 //3c0241e0 + +//S.LINK - Reverse Community Cards #1 X-Position +//c041023c 00088244 7800a0c7 (1st) +//8841023c 00088244 7800a0c7 (1st) +patch=1,EE,00137398,word,3c024250 //3c0241c0 Reverse Cards +patch=1,EE,0013749c,word,3c0241b6 //3c024188 Red Box + +//S.LINK - Reverse Community Cards #2 +//4041023c 00008244 00000000 010b0046 +patch=1,EE,00139544,word,3c024010 //3c024140 Red Box +//e041023c 00088244 7800a0c7 400b0046 (2nd) +patch=1,EE,00139470,word,3c024216 //3c0241e0 X-Position +/////////////////////////////////////////////////////////// + +//Popup Portraits (Left top, In the Battles) fix by Arapapa +//8045023c 00008244 00000000 42001546 (1st) +patch=1,EE,003c90ac,word,3c024540 //3c024580 + +//Popup Portraits (Left top, In the Battles) X-Position +//100040e4 00009244 00000000 (2nd) +patch=1,EE,003c9084,word,00000000 + +//8042023c 00108244 80c1023c +patch=1,EE,003ab7f8,word,3c020000 //3c024280 + +//Flare effect fix by Arapapa +//0040023c 00088244 00000000 82090046 +patch=1,EE,00347b38,word,3c023fc0 //3c024000 Zoom + +//42090046 2d180000 803f023c +patch=1,EE,00347b50,word,08030008 //Y-Fov +patch=1,EE,000c0020,word,46000942 +patch=1,EE,000c0024,word,461e2943 +patch=1,EE,000c0028,word,080d1ed5 +/////////////////////////////////////////////////////////// + +//Head Portraits (Right, In the Battles) fix by Arapapa +//10004426 7000a527 (1st) +patch=1,EE,0022d804,word,0803000c //#1 +patch=1,EE,000c0030,word,26440010 +patch=1,EE,000c0034,word,c7bf0078 +patch=1,EE,000c0038,word,3c013f40 +patch=1,EE,000c003c,word,4481f000 +patch=1,EE,000c0040,word,461effc2 +patch=1,EE,000c0044,word,e7bf0078 +patch=1,EE,000c0048,word,0808b602 + +//10014426 7000a527 (1st) +patch=1,EE,0022d904,word,08030014 //#2 +patch=1,EE,000c0050,word,26440110 +patch=1,EE,000c0054,word,c7bf0078 +patch=1,EE,000c0058,word,3c013f40 +patch=1,EE,000c005c,word,4481f000 +patch=1,EE,000c0060,word,461effc2 +patch=1,EE,000c0064,word,e7bf0078 +patch=1,EE,000c0068,word,0808b642 + +//Head Portraits (Right, In the Battles) X-Position +//f041033c 00008344 00000000 c0051746 (1st) +patch=1,EE,0022d7c4,word,3c034220 //3c0341f0 + +//Emoticon (In the Battles) fix by Arapapa +//30054426 7000a527 +patch=1,EE,0022dd98,word,0803001c +patch=1,EE,000c0070,word,26440530 +patch=1,EE,000c0074,word,c7bf0078 +patch=1,EE,000c0078,word,3c013f40 +patch=1,EE,000c007c,word,4481f000 +patch=1,EE,000c0080,word,461effc2 +patch=1,EE,000c0084,word,e7bf0078 +patch=1,EE,000c0088,word,0808b767 + +//Emoticon X-Position +//e842033c 00008344 00000000 00001946 +patch=1,EE,0022dd58,word,3c0342d0 //3c0342e8 + +///////////////////////////////////////////// +//Title Menu fix by Arapapa +patch=1,EE,0026e7d4,word,3c013fab //00000000 +patch=1,EE,0026e7e4,word,afa10068 //afa20068 #1 +patch=1,EE,0026e818,word,afa10068 //afa20068 #2 +patch=1,EE,0026e84c,word,afa10068 //afa20068 #3 +patch=1,EE,0026e880,word,afa10068 //afa20068 #4 +patch=1,EE,0026eaac,word,afa10068 //afa20068 #5 + +//Title Menu (Shadow) +patch=1,EE,0026ea50,word,3c02439b //3c024368 + +//Sub Menu - Select Episode (Shadow) +patch=1,EE,0026b524,word,c7808478 //00000000 +patch=1,EE,0026b534,word,461e0002 //c7808478 + +[Mode 480p] +author=felixthecat1970 +comment=Forces progressive scan at startup +patch=0,EE,00197AF0,extended,24040057 +patch=0,EE,1077EF3C,extended,000001C0 +patch=0,EE,204DFF34,extended,241B0050 +patch=0,EE,204E00B4,extended,A07B5762 +patch=0,EE,204E2900,extended,A05B5762 +patch=0,EE,2019D328,extended,03601020 +patch=0,EE,2019D334,extended,0000D82D +patch=0,EE,2019D348,extended,241B0001 + +[Controllable Party Members] +author=TGE +comment=The entire party is controllable like Persona 4/5 +patch=1,EE,0029AFC8,word,00000000 // nop check for if battle unit is not mc -> ai +patch=1,EE,0020207C,word,00000000 // load proper unit id for battle menu skill list +patch=1,EE,0020208C,word,8F84B6FC +patch=1,EE,00202090,word,8C840254 +patch=1,EE,00202094,word,8C840030 +patch=1,EE,00202098,word,8C8400A4 +patch=1,EE,0028DE14,word,2405001B // fix escape +patch=1,EE,0029692C,word,00000000 +patch=1,EE,0028AC5C,word,9683001A // disable persona menu for non-mc +patch=1,EE,0028AC60,word,3063FFBF +patch=1,EE,0028AC64,word,A683001A +patch=1,EE,0028AC68,word,96830018 +patch=1,EE,0028AC6C,word,00000000 +patch=1,EE,0028AC70,word,081A6AF8 +patch=1,EE,0028AC74,word,00000000 +patch=1,EE,0069ABE0,word,8F82B6FC +patch=1,EE,0069ABE4,word,8C420148 +patch=1,EE,0069ABE8,word,14540004 +patch=1,EE,0069ABEC,word,00000000 +patch=1,EE,0069ABF0,word,34630400 +patch=1,EE,0069ABF4,word,A6830018 +patch=1,EE,0069ABF8,word,34630400 +patch=1,EE,0069ABFC,word,080A2B1D +patch=1,EE,0069AC00,word,00000000 +patch=1,EE,001FF518,word,8E300254 // fix skill requirements +patch=1,EE,001FF51C,word,8E100030 +patch=1,EE,001FF520,word,8E1000A4 +patch=1,EE,001FF524,word,00000000 +patch=1,EE,001FF528,word,00000000 +patch=1,EE,001FF52C,word,00000000 +patch=1,EE,002D8210,word,00000000 // fix items +patch=1,EE,002D8220,word,00000000 +patch=1,EE,002D8224,word,00000000 +patch=1,EE,002D823C,word,00000000 +patch=1,EE,002A3914,word,081A6B01 // fix boss battle camera +patch=1,EE,0069AC04,word,1240000B +patch=1,EE,0069AC08,word,00000000 +patch=1,EE,0069AC0C,word,8E420030 +patch=1,EE,0069AC10,word,844700A2 +patch=1,EE,0069AC14,word,20030001 +patch=1,EE,0069AC18,word,14E00006 +patch=1,EE,0069AC1C,word,00000000 +patch=1,EE,0069AC20,word,844200A4 +patch=1,EE,0069AC24,word,10430003 +patch=1,EE,0069AC28,word,00001021 +patch=1,EE,0069AC2C,word,080A8E47 +patch=1,EE,0069AC30,word,00000000 +patch=1,EE,0069AC34,word,0C0BE210 +patch=1,EE,0069AC38,word,00000000 +patch=1,EE,0069AC3C,word,080A8E47 +patch=1,EE,0069AC40,word,00000000 diff --git a/patches/SLUS-21623_81FF8198.pnach b/patches/SLUS-21623_81FF8198.pnach index 01c33432..14499230 100644 --- a/patches/SLUS-21623_81FF8198.pnach +++ b/patches/SLUS-21623_81FF8198.pnach @@ -1,8 +1,8 @@ -gametitle=The BIGS (NTSC-U)(SLUS-21623) +gametitle=The Bigs NTSC-U SLUS-21623 81FF8198 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -17,4 +17,7 @@ patch=1,EE,20BDF5C4,extended,3FE38E32 //3FAAAAAB patch=1,EE,20BDF67C,extended,3FE38E32 //3FAAAAAB patch=1,EE,20BDF730,extended,3FE38E32 //3FAAAAAB - +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,003F490C,word,2c420001 //2c420002 \ No newline at end of file diff --git a/patches/SLUS-21624_0576A188.pnach b/patches/SLUS-21624_0576A188.pnach index 58c13fe6..b00ebea6 100644 --- a/patches/SLUS-21624_0576A188.pnach +++ b/patches/SLUS-21624_0576A188.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's Trophy Bucks (U)(SLUS-21624) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Zoom diff --git a/patches/SLUS-21625_66A43859.pnach b/patches/SLUS-21625_66A43859.pnach index ecbecca3..539c8019 100644 --- a/patches/SLUS-21625_66A43859.pnach +++ b/patches/SLUS-21625_66A43859.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's Big Game Hunter 2008 (U)(SLUS-21625) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Zoom diff --git a/patches/SLUS-21626_BFF1C010.pnach b/patches/SLUS-21626_BFF1C010.pnach index f0508a61..8f7a95d4 100644 --- a/patches/SLUS-21626_BFF1C010.pnach +++ b/patches/SLUS-21626_BFF1C010.pnach @@ -2,7 +2,7 @@ gametitle=Stuntman Ignition (U)(SLUS-21626) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21628_8EA70682.pnach b/patches/SLUS-21628_8EA70682.pnach index e0718463..a014e981 100644 --- a/patches/SLUS-21628_8EA70682.pnach +++ b/patches/SLUS-21628_8EA70682.pnach @@ -2,7 +2,7 @@ gametitle=Hot Wheels - Beat That! (U)(SLUS-21628) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21631_5EA50CB0.pnach b/patches/SLUS-21631_5EA50CB0.pnach index cce4b2a6..cd41e260 100644 --- a/patches/SLUS-21631_5EA50CB0.pnach +++ b/patches/SLUS-21631_5EA50CB0.pnach @@ -2,7 +2,7 @@ gametitle=Phantasy Star Universe - Ambition of the Illuminus (NTSC-U) (SLUS-2163 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Patch by TechieSaru +author=TechieSaru //Widescreen patch=1,EE,E008FF90,extended,0026CE80 diff --git a/patches/SLUS-21633_504D1A7A.pnach b/patches/SLUS-21633_504D1A7A.pnach index 06ebaed5..18f82c71 100644 --- a/patches/SLUS-21633_504D1A7A.pnach +++ b/patches/SLUS-21633_504D1A7A.pnach @@ -2,7 +2,7 @@ gametitle=Aqua Teen Hunger Force - Zombie Ninja Pro-Am (U)(SLUS-21633) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21634_DB53D06D.pnach b/patches/SLUS-21634_DB53D06D.pnach index 515492ae..72497a9d 100644 --- a/patches/SLUS-21634_DB53D06D.pnach +++ b/patches/SLUS-21634_DB53D06D.pnach @@ -2,7 +2,7 @@ gametitle=Crazy Frog Arcade Racer (U)(SLUS-21634) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21635_C9F5FE15.pnach b/patches/SLUS-21635_C9F5FE15.pnach index 987856bc..b2ac48d5 100644 --- a/patches/SLUS-21635_C9F5FE15.pnach +++ b/patches/SLUS-21635_C9F5FE15.pnach @@ -2,7 +2,7 @@ gametitle=Monster Jam (U)(SLUS-21635) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21636_77689D8B.pnach b/patches/SLUS-21636_77689D8B.pnach new file mode 100644 index 00000000..8d6c516c --- /dev/null +++ b/patches/SLUS-21636_77689D8B.pnach @@ -0,0 +1,34 @@ +gametitle=Looney Tunes - ACME Arsenal (NTSC-U) SLUS-21636 77689D8B + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,208269D0,extended,3F100000 +patch=1,EE,208269E8,extended,3F400000 +patch=1,EE,208269F4,extended,3F160000 +patch=1,EE,2032FFDC,extended,3C054000 //HUD +patch=1,EE,002EAF1C,extended,3C063F22 //render fix +patch=1,EE,00826434,extended,00000002 //fix submenu +patch=1,EE,E0013000,extended,00826710 //fix submenu +patch=1,EE,00826434,extended,00000001 //fix submenu +patch=1,EE,E0040001,extended,00666B90 +patch=1,EE,208269D0,extended,3F800000 +patch=1,EE,208269E8,extended,3F800000 +patch=1,EE,208269F4,extended,3F800000 +patch=1,EE,2032FFDC,extended,3C053F80 +patch=1,EE,00826444,extended,00000000 //00000031 Black bands +patch=1,EE,0082644C,extended,000001BF //0000015E + +[Remove Blackbars] +author=PeterDelta +description=Original image without black bars, showing 16:9 aspect ratio +patch=1,EE,00826434,extended,00000002 //fix submenu +patch=1,EE,E0013000,extended,00826710 //fix submenu +patch=1,EE,00826434,extended,00000001 //fix submenu +patch=1,EE,208269D0,extended,3F800000 +patch=1,EE,208269E8,extended,3F800000 +patch=1,EE,208269F4,extended,3F800000 +patch=1,EE,2032FFDC,extended,3C053F80 +patch=1,EE,00826444,extended,00000000 //00000031 Black bands +patch=1,EE,0082644C,extended,000001BF //0000015E \ No newline at end of file diff --git a/patches/SLUS-21637_57F534F4.pnach b/patches/SLUS-21637_57F534F4.pnach index b37a856d..56177155 100644 --- a/patches/SLUS-21637_57F534F4.pnach +++ b/patches/SLUS-21637_57F534F4.pnach @@ -1,8 +1,8 @@ -gametitle=Cars: Mater-National Championship [NTSC-U] (SLUS_216.37) +gametitle=Disney/Pixar Cars - Mater-National Championship NTSC-U SLUS-21637 57F534F4 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,00119550,word,3C033CAE //3C033C8E Zoom @@ -18,4 +18,9 @@ patch=1,EE,001DE9C8,word,3C023FAB //3C023F80 //patch=1,EE,00119554,word,34635555 //3463FA34 //patch=1,EE,00119548,word,3C023FAB //3C023F80 Y-FOV - +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,201B8AE4,extended,24040001 //24040002 +patch=1,EE,E0010001,extended,004B8138 +patch=1,EE,201B8AE4,extended,24040002 \ No newline at end of file diff --git a/patches/SLUS-21641_9AEF9126.pnach b/patches/SLUS-21641_9AEF9126.pnach index 5d7242a3..0bce0fa1 100644 --- a/patches/SLUS-21641_9AEF9126.pnach +++ b/patches/SLUS-21641_9AEF9126.pnach @@ -2,7 +2,7 @@ gametitle=Innocent Life - A Futuristic Harvest Moon (NTSC-U) (SLUS-21641) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by VIRGIN KLM +author=VIRGIN KLM //Widescreen patch=1,EE,2023BDB0,extended,3F199999 //3F4CCCCC diff --git a/patches/SLUS-21642_D04516EE.pnach b/patches/SLUS-21642_D04516EE.pnach index 6d6fcee1..2e95874e 100644 --- a/patches/SLUS-21642_D04516EE.pnach +++ b/patches/SLUS-21642_D04516EE.pnach @@ -2,7 +2,7 @@ gametitle=Sonic Riders Zero Gravity (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by JLB +author=JLB patch=1,EE,205FE740,word,43700000 patch=1,EE,205FE7A0,word,43700000 // shop, character patch=1,EE,00149964,word,3c023fab // 3c023f80 renderfix diff --git a/patches/SLUS-21643_3217BCCC.pnach b/patches/SLUS-21643_3217BCCC.pnach index 239ea5e2..ee4d545c 100644 --- a/patches/SLUS-21643_3217BCCC.pnach +++ b/patches/SLUS-21643_3217BCCC.pnach @@ -2,7 +2,7 @@ gametitle=Bratz - The Movie (U)(SLUS-21643) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21645_6CFEFAC1.pnach b/patches/SLUS-21645_6CFEFAC1.pnach index b023acab..796a2113 100644 --- a/patches/SLUS-21645_6CFEFAC1.pnach +++ b/patches/SLUS-21645_6CFEFAC1.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown vs. Raw 2008 (SLUS-21645) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,00288b50,word,3c033f40 diff --git a/patches/SLUS-21650_D14CB5F0.pnach b/patches/SLUS-21650_D14CB5F0.pnach new file mode 100644 index 00000000..a379ad57 --- /dev/null +++ b/patches/SLUS-21650_D14CB5F0.pnach @@ -0,0 +1,8 @@ +gametitle=Mercenaries 2 - World in Flames SLUS-21650 D14CB5F0 + +[60 FPS] +author=asasega & Gabominated +description=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,003FD4F8,word,2C420001 //2C420002 +patch=1,EE,E0010001,extended,004FB450 +patch=1,EE,203FD4F8,extended,2C420002 \ No newline at end of file diff --git a/patches/SLUS-21655_033C16DC.pnach b/patches/SLUS-21655_033C16DC.pnach index 3a869f11..d79ea744 100644 --- a/patches/SLUS-21655_033C16DC.pnach +++ b/patches/SLUS-21655_033C16DC.pnach @@ -2,7 +2,7 @@ gametitle=CSI - Crime Scene Investigation - 3 Dimensions of Murder (NTSC-U) (SLU [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0027d5f0,word,3c033f40 // 3c033f80 hor fov diff --git a/patches/SLUS-21656_E9FFA1F2.pnach b/patches/SLUS-21656_E9FFA1F2.pnach index a670122b..66a4b881 100644 --- a/patches/SLUS-21656_E9FFA1F2.pnach +++ b/patches/SLUS-21656_E9FFA1F2.pnach @@ -2,7 +2,7 @@ gametitle=Hannspree Ten Kate Honda - SBK-07 Superbike World Championship (U)(SLU [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 //00088344 00000000 020b0046 diff --git a/patches/SLUS-21662_2030F647.pnach b/patches/SLUS-21662_2030F647.pnach index d8e15e9a..82af2da2 100644 --- a/patches/SLUS-21662_2030F647.pnach +++ b/patches/SLUS-21662_2030F647.pnach @@ -2,7 +2,7 @@ gametitle=Warriors Orochi (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht +author=ElHecht // 16:9 patch=1,EE,0019a3a8,word,3c023f19 // 3c023f4c hor fov 1-player x diff --git a/patches/SLUS-21663_93352BA1.pnach b/patches/SLUS-21663_93352BA1.pnach index 6ce1cccd..9d0cab2c 100644 --- a/patches/SLUS-21663_93352BA1.pnach +++ b/patches/SLUS-21663_93352BA1.pnach @@ -2,7 +2,7 @@ gametitle=Cocoto Fishing Master (U)(SLUS-21663) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21664_6DF2F39E.pnach b/patches/SLUS-21664_6DF2F39E.pnach index 1486838e..9aa7cabb 100644 --- a/patches/SLUS-21664_6DF2F39E.pnach +++ b/patches/SLUS-21664_6DF2F39E.pnach @@ -2,7 +2,7 @@ gametitle=The Sims 2 - Castaway (U)(SLUS-21664) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21665_BBE4D862.pnach b/patches/SLUS-21665_BBE4D862.pnach index 83e03291..df25449f 100644 --- a/patches/SLUS-21665_BBE4D862.pnach +++ b/patches/SLUS-21665_BBE4D862.pnach @@ -1,7 +1,6 @@ gametitle=Simpsons Game, The (NTSC-U) SLUS-21665 BBE4D862 [60 FPS] -author=asasega -comment=Unlocked at 60 FPS. Set EE Cycle Skipping to Mild Underclock to prevent framedrops and 130% EE Overclock to be stable. -patch=1,EE,002158DC,word,00000000 //1440FFFA -patch=1,EE,0035FEA4,word,00000000 //1040FFF8 \ No newline at end of file +author=PeterDelta +description=Might need EE Overclock (130%). +patch=1,EE,002158A4,word,14800011 \ No newline at end of file diff --git a/patches/SLUS-21666_856ACEB6.pnach b/patches/SLUS-21666_856ACEB6.pnach index f210985f..2a5dd5c9 100644 --- a/patches/SLUS-21666_856ACEB6.pnach +++ b/patches/SLUS-21666_856ACEB6.pnach @@ -2,7 +2,7 @@ gametitle=Mountain Bike Adrenaline (U)(SLUS-21666) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21668_028AAFC8.pnach b/patches/SLUS-21668_028AAFC8.pnach index b2d4c8bf..ee0d7eeb 100644 --- a/patches/SLUS-21668_028AAFC8.pnach +++ b/patches/SLUS-21668_028AAFC8.pnach @@ -1,8 +1,8 @@ -gametitle=George of the Jungle and the Search for the Secret (U)(SLUS-21668) +gametitle=George of the Jungle and the Search for the Secret NTSC-U SLUS-21668 028AAFC8 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 @@ -10,4 +10,9 @@ comment=Widescreen hack by Arapapa //A8 AA AA 3F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 B0 84 4D 00 78 01 00 00 C0 AA 47 00 80 B6 42 00 patch=1,EE,206F2A08,extended,3fe38e39 //3faaaaa8 - +[60 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,20286928,extended,00000000 +patch=1,EE,E0010001,extended,00469BD0 +patch=1,EE,20286928,extended,0C0DE852 \ No newline at end of file diff --git a/patches/SLUS-21670_408D540D.pnach b/patches/SLUS-21670_408D540D.pnach index 2f966234..e71cd7b5 100644 --- a/patches/SLUS-21670_408D540D.pnach +++ b/patches/SLUS-21670_408D540D.pnach @@ -2,7 +2,7 @@ gametitle=Backyard Football '08 (U)(SLUS-21670) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21671_8D5A0F43.pnach b/patches/SLUS-21671_8D5A0F43.pnach index 1edb2b00..108aa618 100644 --- a/patches/SLUS-21671_8D5A0F43.pnach +++ b/patches/SLUS-21671_8D5A0F43.pnach @@ -2,7 +2,7 @@ gametitle=MLB Power Pros (U)(SLUS-21671) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLUS-21677_E514BA51.pnach b/patches/SLUS-21677_E514BA51.pnach new file mode 100644 index 00000000..3f8536ca --- /dev/null +++ b/patches/SLUS-21677_E514BA51.pnach @@ -0,0 +1,6 @@ +gametitle=The Golden Compass NTSC-U SLUS-21677 E514BA51 + +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0021D794,word,28630001 //28630002 \ No newline at end of file diff --git a/patches/SLUS-21685_C7A1EFF2.pnach b/patches/SLUS-21685_C7A1EFF2.pnach index 2b08c32d..36909bac 100644 --- a/patches/SLUS-21685_C7A1EFF2.pnach +++ b/patches/SLUS-21685_C7A1EFF2.pnach @@ -2,7 +2,7 @@ gametitle=Pro Evolution Soccer 2008 (USA) [SLUS-21685] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLUS-21688_FF46F4C4.pnach b/patches/SLUS-21688_FF46F4C4.pnach index 58fd60c3..20f2d9b2 100644 --- a/patches/SLUS-21688_FF46F4C4.pnach +++ b/patches/SLUS-21688_FF46F4C4.pnach @@ -2,7 +2,7 @@ gametitle=MotoGP 07 (U)(SLUS-21688) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas (NTSC-U by Arapapa) +author=El_Patas (NTSC-U by Arapapa) //Gameplay 16:9 patch=1,EE,0020e264,word,4483E800 //44830800 diff --git a/patches/SLUS-21697_304497E5.pnach b/patches/SLUS-21697_304497E5.pnach index fd60cd80..3ffa929f 100644 --- a/patches/SLUS-21697_304497E5.pnach +++ b/patches/SLUS-21697_304497E5.pnach @@ -2,7 +2,7 @@ gametitle=Iridium Runners (U)(SLUS-21697) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21701_08FE7DFD.pnach b/patches/SLUS-21701_08FE7DFD.pnach index 985ef7b8..84c59e6f 100644 --- a/patches/SLUS-21701_08FE7DFD.pnach +++ b/patches/SLUS-21701_08FE7DFD.pnach @@ -2,7 +2,7 @@ gametitle=MX vs ATV Untamed [NTSC-U] (SLUS_217.01) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,001119F0,word,3C033CAE //3C033C8E Zoom diff --git a/patches/SLUS-21702_63435086.pnach b/patches/SLUS-21702_63435086.pnach index 3e2319e4..6f7e6574 100644 --- a/patches/SLUS-21702_63435086.pnach +++ b/patches/SLUS-21702_63435086.pnach @@ -2,7 +2,7 @@ gametitle=Fire Pro Wrestling Returns (U)(SLUS-21702) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21707_179470B4.pnach b/patches/SLUS-21707_179470B4.pnach new file mode 100644 index 00000000..1a301408 --- /dev/null +++ b/patches/SLUS-21707_179470B4.pnach @@ -0,0 +1,8 @@ +gametitle=Godzilla Unleashed NTSC-U SLUS-21707 179470B4 + +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,20128278,extended,14400003 //10400003 +patch=1,EE,E0010001,extended,00531390 +patch=1,EE,20128278,extended,10400003 \ No newline at end of file diff --git a/patches/SLUS-21709_408DFB9C.pnach b/patches/SLUS-21709_408DFB9C.pnach index cfb51438..fc51c41a 100644 --- a/patches/SLUS-21709_408DFB9C.pnach +++ b/patches/SLUS-21709_408DFB9C.pnach @@ -24,12 +24,6 @@ patch=1,EE,00256234,word,3c033f2b //resolution fix (upped from 512x448 to 640x448) by nemesis2000 patch=1,EE,002125b4,word,24020280 -//480p -patch=1,EE,0010cedc,word,3c050000 -patch=1,EE,0010cee4,word,3c060050 -patch=1,EE,0010ceec,word,3c070001 -patch=1,EE,0010d1ac,word,3c090010 - //FMV's fix by nemesis2000 patch=1,EE,0021114c,word,24020188 patch=1,EE,00211150,word,14480003 @@ -62,6 +56,13 @@ patch=1,EE,002111b8,word,468000e0 patch=1,EE,002111bc,word,8c8301e8 patch=1,EE,002111c0,word,46021043 +[480p Mode] +description=Forces progressive scan mode +patch=1,EE,0010cedc,word,3c050000 +patch=1,EE,0010cee4,word,3c060050 +patch=1,EE,0010ceec,word,3c070001 +patch=1,EE,0010d1ac,word,3c090010 + [Remove Blackbars] description=Removes black bars in cutscenes patch=1,EE,001f4b58,word,3c020000 diff --git a/patches/SLUS-21711_495F76EF.pnach b/patches/SLUS-21711_495F76EF.pnach index 340b78e1..3c2bdc5b 100644 --- a/patches/SLUS-21711_495F76EF.pnach +++ b/patches/SLUS-21711_495F76EF.pnach @@ -2,7 +2,7 @@ gametitle=Biathlon 2008 (U)(SLUS-21711) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21712_551E3E7A.pnach b/patches/SLUS-21712_551E3E7A.pnach index 6dacb3c8..cece09d7 100644 --- a/patches/SLUS-21712_551E3E7A.pnach +++ b/patches/SLUS-21712_551E3E7A.pnach @@ -2,7 +2,7 @@ gametitle=The History Channel - Battle for the Pacific (U)(SLUS-21712) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLUS-21715_8FCC33A2.pnach b/patches/SLUS-21715_8FCC33A2.pnach index cdb1fba3..1b240d7e 100644 --- a/patches/SLUS-21715_8FCC33A2.pnach +++ b/patches/SLUS-21715_8FCC33A2.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's Monster Bass (U)(SLUS-21715) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Zoom diff --git a/patches/SLUS-21717_3340FC2C.pnach b/patches/SLUS-21717_3340FC2C.pnach new file mode 100644 index 00000000..b5f601da --- /dev/null +++ b/patches/SLUS-21717_3340FC2C.pnach @@ -0,0 +1,9 @@ +gametitle=Dora the Explorer - Dora Saves the Mermaids NTSC-U SLUS-21717 3340FC2C + +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,20177FA8,extended,00000000 +patch=1,EE,E0010001,extended,003C9848 +patch=1,EE,20177FA8,extended,0C09FE78 +patch=1,EE,201AF35C,extended,2403003c \ No newline at end of file diff --git a/patches/SLUS-21718_E3029E2B.pnach b/patches/SLUS-21718_E3029E2B.pnach index b5a8a537..a4c066ab 100644 --- a/patches/SLUS-21718_E3029E2B.pnach +++ b/patches/SLUS-21718_E3029E2B.pnach @@ -2,7 +2,7 @@ gametitle=Go, Diego, Go! Safari Rescue (U)(SLUS-21718) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21728_6A8448BA.pnach b/patches/SLUS-21728_6A8448BA.pnach index 62c6bfeb..ba9d7557 100644 --- a/patches/SLUS-21728_6A8448BA.pnach +++ b/patches/SLUS-21728_6A8448BA.pnach @@ -3,17 +3,18 @@ gametitle=Crash - Mind Over Mutant (NTSC-U) [Widescreen 16:9] gsaspectratio=16:9 author=CRASHARKI -comment=Run the game at 16:9 Widescreen Aspect Ratio from the start. +description=Run the game at 16:9 Widescreen Aspect Ratio from the start. patch=1,EE,21A2A3B8,byte,1 //00000000 //HUD patch=1,EE,21A2A3F2,byte,10 //40 //Zoom 1 -patch=1,EE,21A2A3F8,word,3F066666 //3F333333 //Zoom 2 +patch=1,EE,21A2A3F8,extended,3F100000 //3F066666 //Y-Axis +patch=1,EE,21A2A3F4,extended,3F7FA68A //3F63F7CD //X-Axis [Progressive Scan] author=CRASHARKI -comment=Run the game with Progressive Scan enabled from the start. +description=Run the game with Progressive Scan enabled from the start. patch=1,EE,207155B0,byte,1 //00000000 //Progressive Scan from the beginning [60 FPS] author=asasega description=Patches the game to run at 60 FPS. -patch=1,EE,205823A0,extended,24020000 +patch=1,EE,205823A0,extended,24020000 \ No newline at end of file diff --git a/patches/SLUS-21730_E164CB28.pnach b/patches/SLUS-21730_E164CB28.pnach index 75960dd4..0ed7165d 100644 --- a/patches/SLUS-21730_E164CB28.pnach +++ b/patches/SLUS-21730_E164CB28.pnach @@ -2,7 +2,7 @@ gametitle=Jumper - Griffin's Story (U)(SLUS-21730) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21733_E46EDD51.pnach b/patches/SLUS-21733_E46EDD51.pnach new file mode 100644 index 00000000..518c33a9 --- /dev/null +++ b/patches/SLUS-21733_E46EDD51.pnach @@ -0,0 +1,8 @@ +gametitle=Sega Superstars Tennis (NTSC-U) SLUS-21733 E46EDD51 + +[Widescreen 16:9] +gsaspectratio=16:9 +author=PeterDelta +description=Renders the game in 16:9 aspect ratio +patch=1,EE,00234A0C,word,3C013FE3 +patch=1,EE,003D75EC,word,00000001 \ No newline at end of file diff --git a/patches/SLUS-21734_0C6E5A80.pnach b/patches/SLUS-21734_0C6E5A80.pnach index 365982c7..d6a3809b 100644 --- a/patches/SLUS-21734_0C6E5A80.pnach +++ b/patches/SLUS-21734_0C6E5A80.pnach @@ -2,7 +2,7 @@ gametitle=Falling Stars (U)(SLUS-21734) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21735_77B0236F.pnach b/patches/SLUS-21735_77B0236F.pnach index bd16a84d..89e399b0 100644 --- a/patches/SLUS-21735_77B0236F.pnach +++ b/patches/SLUS-21735_77B0236F.pnach @@ -2,7 +2,7 @@ gametitle=Mana Khemia: Alchemists of Al-Revis (SLUS-21735) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //3D scenes patch=1,EE,0046cc7c,word,3c013f40 //hor value diff --git a/patches/SLUS-21737_050C429A.pnach b/patches/SLUS-21737_050C429A.pnach index 79b2edb0..5f5f5f62 100644 --- a/patches/SLUS-21737_050C429A.pnach +++ b/patches/SLUS-21737_050C429A.pnach @@ -2,7 +2,7 @@ gametitle=Riding Star (U)(SLUS-21737) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21738_F5FE754D.pnach b/patches/SLUS-21738_F5FE754D.pnach index 314ab0d4..87e8cdc5 100644 --- a/patches/SLUS-21738_F5FE754D.pnach +++ b/patches/SLUS-21738_F5FE754D.pnach @@ -1,8 +1,8 @@ -gametitle=Nitrobike (U)(SLUS-21738) +gametitle=Nitro Bike NTSC-U SLUS-21738 F5FE754D [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -20,4 +20,8 @@ patch=1,EE,0039bf14,word,3c013f16 //3c013f00 //patch=1,EE,00429eb0,word,44810000 //00000000 //patch=1,EE,00429eb8,word,4600c602 //00000000 - +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0039C584,word,10400003 //14400003 +patch=1,EE,003816d0,word,3c013c88 //3c013d08 \ No newline at end of file diff --git a/patches/SLUS-21742_1E1D2995.pnach b/patches/SLUS-21742_1E1D2995.pnach index a75e85c2..50ac34d3 100644 --- a/patches/SLUS-21742_1E1D2995.pnach +++ b/patches/SLUS-21742_1E1D2995.pnach @@ -2,7 +2,7 @@ gametitle=Women's Volleyball Championship (U)(SLUS-21742) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21743_4EECA3D0.pnach b/patches/SLUS-21743_4EECA3D0.pnach index 8790588f..286a2492 100644 --- a/patches/SLUS-21743_4EECA3D0.pnach +++ b/patches/SLUS-21743_4EECA3D0.pnach @@ -2,7 +2,7 @@ gametitle=Code Lyoko - Quest for Infinity (U)(SLUS-21743) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21748_EE662389.pnach b/patches/SLUS-21748_EE662389.pnach index d979fff9..fc2651a4 100644 --- a/patches/SLUS-21748_EE662389.pnach +++ b/patches/SLUS-21748_EE662389.pnach @@ -2,7 +2,7 @@ gametitle=MLB Power Pros 2008 (U)(SLUS-21748) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLUS-21751_A929EC81.pnach b/patches/SLUS-21751_A929EC81.pnach index c625ca69..d53a000d 100644 --- a/patches/SLUS-21751_A929EC81.pnach +++ b/patches/SLUS-21751_A929EC81.pnach @@ -2,7 +2,7 @@ gametitle=Backyard Baseball '09 (U)(SLUS-21751) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21754_A06BD445.pnach b/patches/SLUS-21754_A06BD445.pnach index e34c25bc..c1ea3401 100644 --- a/patches/SLUS-21754_A06BD445.pnach +++ b/patches/SLUS-21754_A06BD445.pnach @@ -2,7 +2,7 @@ gametitle=CID the Dummy (U)(SLUS-21754) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21756_E43E46E6.pnach b/patches/SLUS-21756_E43E46E6.pnach index 490a5f83..fbc81ffc 100644 --- a/patches/SLUS-21756_E43E46E6.pnach +++ b/patches/SLUS-21756_E43E46E6.pnach @@ -2,5 +2,5 @@ gametitle=The Chronicles of Narnia - Prince Caspian (NTSC-U) SLUS-21756 E43E46E6 [60 FPS] author=PeterDelta -comment=Unlocked at 60 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,003BE188,word,00000000 \ No newline at end of file diff --git a/patches/SLUS-21757_436D2C83.pnach b/patches/SLUS-21757_436D2C83.pnach index 03c23bf5..90f7b3d8 100644 --- a/patches/SLUS-21757_436D2C83.pnach +++ b/patches/SLUS-21757_436D2C83.pnach @@ -2,7 +2,7 @@ gametitle=Kung Fu Panda (U) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21759_6B1E796A.pnach b/patches/SLUS-21759_6B1E796A.pnach index ff96119a..8ae44836 100644 --- a/patches/SLUS-21759_6B1E796A.pnach +++ b/patches/SLUS-21759_6B1E796A.pnach @@ -2,7 +2,7 @@ gametitle=LEGO Indiana Jones - The Original Adventures (U)(SLUS-21759) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21760_3DDBDB2C.pnach b/patches/SLUS-21760_3DDBDB2C.pnach index a0e2ecbf..2260c149 100644 --- a/patches/SLUS-21760_3DDBDB2C.pnach +++ b/patches/SLUS-21760_3DDBDB2C.pnach @@ -1,8 +1,8 @@ -gametitle=Jeep Thrills (U)(SLUS 21760) +gametitle=Jeep Thrills NTSC-U SLUS-21760 3DDBDB2C [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -20,4 +20,8 @@ patch=1,EE,000c000c,word,4481f000 patch=1,EE,000c0010,word,461e6b42 patch=1,EE,000c0014,word,0805a141 - +[60 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,0019E3E0,word,14600007 //10600007 +patch=1,EE,00144A44,word,24420003 //24420001 \ No newline at end of file diff --git a/patches/SLUS-21761_FBB6D448.pnach b/patches/SLUS-21761_FBB6D448.pnach index 2107bb5d..a4819c95 100644 --- a/patches/SLUS-21761_FBB6D448.pnach +++ b/patches/SLUS-21761_FBB6D448.pnach @@ -2,7 +2,7 @@ gametitle=B-Boy (U)(SLUS-21761) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Wide Screen 16:9 diff --git a/patches/SLUS-21772_56D7AC28.pnach b/patches/SLUS-21772_56D7AC28.pnach index b09ade95..5dbc8c9c 100644 --- a/patches/SLUS-21772_56D7AC28.pnach +++ b/patches/SLUS-21772_56D7AC28.pnach @@ -2,7 +2,7 @@ gametitle=Tiger Woods PGA Tour 09 (NTSC-U) (SLUS-21722) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by VIRGIN KLM +author=VIRGIN KLM //Game Play Fov patch=1,EE,008CC390,extended,3f400000 //3f800000 diff --git a/patches/SLUS-21774_047571F1.pnach b/patches/SLUS-21774_047571F1.pnach index 05623d6e..5014d8ce 100644 --- a/patches/SLUS-21774_047571F1.pnach +++ b/patches/SLUS-21774_047571F1.pnach @@ -2,7 +2,7 @@ gametitle=Dynasty Warriors 6 (NTSC-U) (SLUS-21774) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht // // 16:9 patch=1,EE,00147178,word,3c0243b4 // 3c0243a0 hor fov value1 diff --git a/patches/SLUS-21775_CFE7B625.pnach b/patches/SLUS-21775_CFE7B625.pnach new file mode 100644 index 00000000..db37c427 --- /dev/null +++ b/patches/SLUS-21775_CFE7B625.pnach @@ -0,0 +1,6 @@ +gametitle=The Munmmy - Tomb of the Dragon Emperor [SLUS_21775] [cfe7b625] + +[60 FPS] +author=asasega +comment=Unlocked at 60 FPS. Might need enable EE Overclock to be stable. +patch=1,EE,2037be98,extended,0000003c //0000001e \ No newline at end of file diff --git a/patches/SLUS-21779_2BE55519.pnach b/patches/SLUS-21779_2BE55519.pnach index 7ae5a78d..f768ae23 100644 --- a/patches/SLUS-21779_2BE55519.pnach +++ b/patches/SLUS-21779_2BE55519.pnach @@ -2,7 +2,7 @@ gametitle=Eternal Poison (U) (SLUS-21779) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -93,4 +93,10 @@ patch=1,EE,0042cd14,word,0808f377 // 00000000 //patch=1,EE,0042cd0c,word,461e0002 // 00000000 //patch=1,EE,0042cd10,word,0808893e // 00000000 - +[No-Interlacing] +author=NineKain +description=Attempts to disable interlaced offset rendering. +gsinterlacemode=1 +//Remove Interlacing +patch=1,EE,0032DC7C,word,00000000 +patch=1,EE,0032DD04,word,00000000 diff --git a/patches/SLUS-21785_E01F57EC.pnach b/patches/SLUS-21785_E01F57EC.pnach index 26ed6b12..ada676ee 100644 --- a/patches/SLUS-21785_E01F57EC.pnach +++ b/patches/SLUS-21785_E01F57EC.pnach @@ -2,7 +2,7 @@ gametitle=LEGO Batman - The Videogame (U)(SLUS-21785) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21787_5A31AA5B.pnach b/patches/SLUS-21787_5A31AA5B.pnach index cef2b857..41222987 100644 --- a/patches/SLUS-21787_5A31AA5B.pnach +++ b/patches/SLUS-21787_5A31AA5B.pnach @@ -2,7 +2,7 @@ gametitle=TNA iMPACT! (U)(SLUS-21787) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by ElHecht (NTSC-U by Arapapa) +author=ElHecht (NTSC-U by Arapapa) // 16:9 // note: data is stored in "TNAPOV.ELF" diff --git a/patches/SLUS-21788_F95F37EE.pnach b/patches/SLUS-21788_F95F37EE.pnach index 9e390786..2fe40f08 100644 --- a/patches/SLUS-21788_F95F37EE.pnach +++ b/patches/SLUS-21788_F95F37EE.pnach @@ -2,7 +2,7 @@ gametitle=Ar tonelico II: Melody of Metafalica (SLUS-21788P) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen patch by nemesis2000 (pnach by nemesis2000 ) +author=nemesis2000 //3D scenes patch=1,EE,002bc554,word,3c013f40 //hor value diff --git a/patches/SLUS-21789_407F494D.pnach b/patches/SLUS-21789_407F494D.pnach index cb0d87eb..36ad4b80 100644 --- a/patches/SLUS-21789_407F494D.pnach +++ b/patches/SLUS-21789_407F494D.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's Legendary Adventures (U)(SLUS-21789) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Zoom diff --git a/patches/SLUS-21791_8071EB8E.pnach b/patches/SLUS-21791_8071EB8E.pnach index c295f1dc..6d3092b8 100644 --- a/patches/SLUS-21791_8071EB8E.pnach +++ b/patches/SLUS-21791_8071EB8E.pnach @@ -2,7 +2,7 @@ gametitle=Bratz - Girlz Really Rock (U)(SLUS-21791) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21796_4D6B5DE5.pnach b/patches/SLUS-21796_4D6B5DE5.pnach index d963afbe..8958d87e 100644 --- a/patches/SLUS-21796_4D6B5DE5.pnach +++ b/patches/SLUS-21796_4D6B5DE5.pnach @@ -2,7 +2,7 @@ gametitle=Dora the Explorer - Dora Saves the Snow Princess (U)(SLUS-21796) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21796_EAEDE6E8.pnach b/patches/SLUS-21796_EAEDE6E8.pnach index 81404344..5774f9d5 100644 --- a/patches/SLUS-21796_EAEDE6E8.pnach +++ b/patches/SLUS-21796_EAEDE6E8.pnach @@ -2,7 +2,7 @@ gametitle=Dora the Explorer - Dora Saves the Snow Princess (U)(SLUS-21796) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21797_63A9B931.pnach b/patches/SLUS-21797_63A9B931.pnach index 898f5e35..409ee398 100644 --- a/patches/SLUS-21797_63A9B931.pnach +++ b/patches/SLUS-21797_63A9B931.pnach @@ -2,7 +2,7 @@ gametitle=Tak and the Guardians of Gross (U)(SLUS-21797) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21804_04FB3B0E.pnach b/patches/SLUS-21804_04FB3B0E.pnach index bed6f6af..d7fba8dd 100644 --- a/patches/SLUS-21804_04FB3B0E.pnach +++ b/patches/SLUS-21804_04FB3B0E.pnach @@ -2,7 +2,7 @@ gametitle=Avatar - The Legend of Aang - Into the Inferno (NTSC-U / PAL) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack (16:9) by ElHecht +author=ElHecht //16:9 patch=1,EE,00148364,word,3c023fe3 // 3c023faa diff --git a/patches/SLUS-21805_3D96DC04.pnach b/patches/SLUS-21805_3D96DC04.pnach index 04a9eafa..7989eb85 100644 --- a/patches/SLUS-21805_3D96DC04.pnach +++ b/patches/SLUS-21805_3D96DC04.pnach @@ -2,7 +2,7 @@ gametitle=Hasbro Family Game Night (U)(SLUS 21805) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21806_EA79D106.pnach b/patches/SLUS-21806_EA79D106.pnach index ef743d17..fa4e3f90 100644 --- a/patches/SLUS-21806_EA79D106.pnach +++ b/patches/SLUS-21806_EA79D106.pnach @@ -2,7 +2,7 @@ gametitle=Barbie Horse Adventures - Riding Camp (U)(SLUS-21806) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21807_55BC9C93.pnach b/patches/SLUS-21807_55BC9C93.pnach index 2f1e80d5..ee7e3feb 100644 --- a/patches/SLUS-21807_55BC9C93.pnach +++ b/patches/SLUS-21807_55BC9C93.pnach @@ -2,7 +2,7 @@ gametitle=Monster Jam - Urban Assault (U)(SLUS-21807) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21809_1DAA15B5.pnach b/patches/SLUS-21809_1DAA15B5.pnach index b0001c21..ec7f6ba1 100644 --- a/patches/SLUS-21809_1DAA15B5.pnach +++ b/patches/SLUS-21809_1DAA15B5.pnach @@ -2,7 +2,7 @@ gametitle=Backyard Football '09 (U)(SLUS-21809) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21810_02A3F34D.pnach b/patches/SLUS-21810_02A3F34D.pnach index 7e3fd0bd..c744456d 100644 --- a/patches/SLUS-21810_02A3F34D.pnach +++ b/patches/SLUS-21810_02A3F34D.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown vs. Raw 2009 (SLUS-21810) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,002a4310,word,3c033f40 diff --git a/patches/SLUS-21811_73DA9F6F.pnach b/patches/SLUS-21811_73DA9F6F.pnach index e8365021..f9891818 100644 --- a/patches/SLUS-21811_73DA9F6F.pnach +++ b/patches/SLUS-21811_73DA9F6F.pnach @@ -2,7 +2,7 @@ gametitle=MotoGP 08 (USA) [SLUS-21811] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas (NTSC-U by Arapapa) +author=El_Patas (NTSC-U by Arapapa) //Gameplay 16:9 patch=1,EE,0020ee98,word,4482e000 //44820000 diff --git a/patches/SLUS-21812_F2980E1A.pnach b/patches/SLUS-21812_F2980E1A.pnach index a3b7f3af..22125b8d 100644 --- a/patches/SLUS-21812_F2980E1A.pnach +++ b/patches/SLUS-21812_F2980E1A.pnach @@ -2,7 +2,7 @@ gametitle=Speed Racer SLUS_218.12 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by pelvicthrustman +author=pelvicthrustman patch=1,EE,004c314c,word,3c013f00 //00000000 patch=1,EE,004c315c,word,4481f800 //00000000 diff --git a/patches/SLUS-21818_A1DB02D9.pnach b/patches/SLUS-21818_A1DB02D9.pnach new file mode 100644 index 00000000..02ca3a53 --- /dev/null +++ b/patches/SLUS-21818_A1DB02D9.pnach @@ -0,0 +1,8 @@ +gametitle=Spongebob SquarePants Featuring Nicktoons - Globs of Doom (NTSC-U) + +[Widescreen 16:9] +gsaspectratio=16:9 +author=CRASHARKI +description=Run the game at 16:9 Widescreen Aspect Ratio from the start. +patch=1,EE,20413CB4,extended,3F9F49F4 //3F6EEEEE +patch=1,EE,204B4684,extended,00000001 //00000000 \ No newline at end of file diff --git a/patches/SLUS-21819_D3F40C6A.pnach b/patches/SLUS-21819_D3F40C6A.pnach index 937aae29..8a260a3d 100644 --- a/patches/SLUS-21819_D3F40C6A.pnach +++ b/patches/SLUS-21819_D3F40C6A.pnach @@ -1,7 +1,7 @@ [Widescreen 16:9] gsaspectratio=16:9 gametitle=Disney High School Musical 3 - Senior Year Dance! (U)(SLUS-21819) -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21821_7FCDAAAD.pnach b/patches/SLUS-21821_7FCDAAAD.pnach index d9b9b347..725433a6 100644 --- a/patches/SLUS-21821_7FCDAAAD.pnach +++ b/patches/SLUS-21821_7FCDAAAD.pnach @@ -2,7 +2,7 @@ gametitle=Pro Evolution Soccer 2009 (U)(SLUS-21821) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLUS-21831_4BB40113.pnach b/patches/SLUS-21831_4BB40113.pnach index 32d94a68..ac163079 100644 --- a/patches/SLUS-21831_4BB40113.pnach +++ b/patches/SLUS-21831_4BB40113.pnach @@ -2,7 +2,7 @@ gametitle=Army Men - Soldiers of Misfortune (U)(SLUS-21831) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21834_02FDFF19.pnach b/patches/SLUS-21834_02FDFF19.pnach index 450deb86..884e37ab 100644 --- a/patches/SLUS-21834_02FDFF19.pnach +++ b/patches/SLUS-21834_02FDFF19.pnach @@ -2,7 +2,7 @@ gametitle=Goosebumps Horrorland - Happy Halloween (U)(SLUS 21834) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21836_5AA9405C.pnach b/patches/SLUS-21836_5AA9405C.pnach index 7cca2fa2..4e7fc3bb 100644 --- a/patches/SLUS-21836_5AA9405C.pnach +++ b/patches/SLUS-21836_5AA9405C.pnach @@ -2,7 +2,7 @@ gametitle=Secret Service (U)(SLUS-21836) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLUS-21838_A6BDA6BE.pnach b/patches/SLUS-21838_A6BDA6BE.pnach index b06f84fb..48895457 100644 --- a/patches/SLUS-21838_A6BDA6BE.pnach +++ b/patches/SLUS-21838_A6BDA6BE.pnach @@ -2,7 +2,7 @@ gametitle=Monster Lab (U)(SLUS-21838) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21839_FD37553A.pnach b/patches/SLUS-21839_FD37553A.pnach new file mode 100644 index 00000000..02818612 --- /dev/null +++ b/patches/SLUS-21839_FD37553A.pnach @@ -0,0 +1,6 @@ +gametitle=Ski and Shoot NTSC-U SLUS-21839 FD37553A + +[60 FPS] +author=Gabominated +description=Might need EE Overclock (180%). +patch=1,EE,0018A6A0,word,240F0001 //240F0002 \ No newline at end of file diff --git a/patches/SLUS-21840_6EC0C6C3.pnach b/patches/SLUS-21840_6EC0C6C3.pnach index bcd44409..2f1f1fbe 100644 --- a/patches/SLUS-21840_6EC0C6C3.pnach +++ b/patches/SLUS-21840_6EC0C6C3.pnach @@ -2,7 +2,7 @@ gametitle=DreamWorks Madagascar 2 - Escape 2 Africa (U)(SLUS-21840) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21841_2EC2432C.pnach b/patches/SLUS-21841_2EC2432C.pnach index c6d00216..314b83d2 100644 --- a/patches/SLUS-21841_2EC2432C.pnach +++ b/patches/SLUS-21841_2EC2432C.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's Dangerous Hunts 2009 (U)(SLUS-21841) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21852_F989A710.pnach b/patches/SLUS-21852_F989A710.pnach index 66a35985..3ea72afc 100644 --- a/patches/SLUS-21852_F989A710.pnach +++ b/patches/SLUS-21852_F989A710.pnach @@ -2,7 +2,7 @@ gametitle=The Tale Of Despereauxe (U)(SLUS-21852) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21855_1B0BF18E.pnach b/patches/SLUS-21855_1B0BF18E.pnach index bf1ab7c3..2c0f16e7 100644 --- a/patches/SLUS-21855_1B0BF18E.pnach +++ b/patches/SLUS-21855_1B0BF18E.pnach @@ -2,7 +2,7 @@ gametitle=NPPL Championship Paintball 2009 (U)(SLUS-21855) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLUS-21857_C56B0941.pnach b/patches/SLUS-21857_C56B0941.pnach index 23300138..18639f2c 100644 --- a/patches/SLUS-21857_C56B0941.pnach +++ b/patches/SLUS-21857_C56B0941.pnach @@ -2,7 +2,7 @@ gametitle=Short Track Racing - Trading Paint (U)(SLUS-21857) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa // FOV (16:9) diff --git a/patches/SLUS-21860_BC94F047.pnach b/patches/SLUS-21860_BC94F047.pnach index 7cdc096c..cff90e24 100644 --- a/patches/SLUS-21860_BC94F047.pnach +++ b/patches/SLUS-21860_BC94F047.pnach @@ -1,8 +1,8 @@ -gametitle=The Bigs 2 (U)(SLUS-21860) +gametitle=The Bigs 2 NTSC-U SLUS-21860 BC94F047 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -17,4 +17,7 @@ patch=1,EE,20C74A94,extended,3FE38E32 //3AAAAAAB patch=1,EE,20C74B4C,extended,3FE38E32 //3AAAAAAB patch=1,EE,20C74C00,extended,3FE38E32 //3AAAAAAB - +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,003697ec,word,2c420001 //2c420002 \ No newline at end of file diff --git a/patches/SLUS-21870_084CC895.pnach b/patches/SLUS-21870_084CC895.pnach index cfa318e0..141f7de3 100644 --- a/patches/SLUS-21870_084CC895.pnach +++ b/patches/SLUS-21870_084CC895.pnach @@ -2,7 +2,7 @@ gametitle=Monsters vs. Aliens (U)(SLUS-21870) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21870_D3C84C28.pnach b/patches/SLUS-21870_D3C84C28.pnach index 0d57ee11..358595a0 100644 --- a/patches/SLUS-21870_D3C84C28.pnach +++ b/patches/SLUS-21870_D3C84C28.pnach @@ -1,16 +1,14 @@ -gametitle=Monsters vs. Aliens (U)(SLUS-21870) +gametitle=Monsters vs. Aliens (NTSC-U) (SLUS-21870) D3C84C28 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa - -//Widescreen hack 16:9 - +author=Arapapa +description=Renders the game in 16:9 aspect ratio //Zoom (Menu and Cutscenes) //003f023c ec0081c6 patch=1,EE,001abcf0,word,3c023f1b //3c023f00 -////Y-Fov (Menu and Cutscenes) +//Y-Fov (Menu and Cutscenes) //03081546 1401a0e7 patch=1,EE,001abd6c,word,080a06f0 @@ -21,7 +19,6 @@ patch=1,EE,00281bcc,word,4481f800 patch=1,EE,00281bd0,word,461f0002 patch=1,EE,00281bd4,word,0806af5c - //Zoom (Gameplay) //003f023c 00008244 f00097c4 patch=1,EE,00233734,word,3c023f1b //3c023f00 @@ -35,7 +32,7 @@ patch=1,EE,00281ba8,word,4481f000 patch=1,EE,00281bac,word,461ebdc2 patch=1,EE,00281bb0,word,0808cdd0 -[50 FPS] +[60 FPS] author=PeterDelta -comment=Unlocked at 50 FPS. Might need enable 130% EE Overclock to be stable. +description=Might need EE Overclock at 130%. patch=1,EE,002338EC,word,28420001 //28420002 \ No newline at end of file diff --git a/patches/SLUS-21878_3488C365.pnach b/patches/SLUS-21878_3488C365.pnach new file mode 100644 index 00000000..5e62fe3e --- /dev/null +++ b/patches/SLUS-21878_3488C365.pnach @@ -0,0 +1,8 @@ +gametitle=Ice Age 3 - Dawn of the Dinosaurs NTSC-U SLUS-21878 3488C365 + +[60 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,20582290,extended,0000003c +patch=1,EE,E0010001,extended,00580E90 +patch=1,EE,20582290,extended,0000001e \ No newline at end of file diff --git a/patches/SLUS-21882_7030A01C.pnach b/patches/SLUS-21882_7030A01C.pnach index e6a64af5..2d89dc78 100644 --- a/patches/SLUS-21882_7030A01C.pnach +++ b/patches/SLUS-21882_7030A01C.pnach @@ -3,23 +3,28 @@ gametitle=Ghostbusters - The Video Game (NTSC-U/PAL) [Widescreen 16:9] gsaspectratio=16:9 author=ElHecht -comment=Widescreen hack +description=Renders the game in 16:9 aspect ratio patch=1,EE,0037e54c,word,3c013fdb // 3c013fa4 hor fov gameplay / ver fov cut-scenes patch=1,EE,0037e550,word,3421a5ef // 3421bc76 hor fov gameplay / ver fov cut-scenes patch=1,EE,002d1594,word,3c014158 // 3c014190 zoom cut-scenes patch=1,EE,0037d694,word,3c013fa4 // 3c013faa zoom fix patch=1,EE,0037d698,word,3421bc76 // 3421aaab zoom fix -patch=1,EE,0031d1f4,word,3c013f80 // 3c014000 remove black bars in cut-scenes +[Remove Blackbars] +author=ElHecht +description=Removes black bars in cutscenes +patch=1,EE,0031d1f4,word,3c013f80 // 3c014000 [60 FPS] author=PeterDelta -comment=Requires having a save game before enabling it. Might need enable 300% EE Overclock. -patch=1,EE,003194C0,word,00000000 +description=Might need EE Overclock at 300%. +patch=1,EE,E0010001,extended,00700EA0 //to avoid a bug if there is no profile +patch=1,EE,203194C0,extended,00000000 //1440FFF5 -[Mode 480p] +[480p Mode] +gsinterlacemode=1 author=PeterDelta -comment=Forces progressive scan mode 480p at startup +description=SDTV 480p mode at start. patch=1,EE,00412E2C,word,3C050000 patch=1,EE,00412E34,word,3C060050 patch=1,EE,00412E3C,word,3C070001 \ No newline at end of file diff --git a/patches/SLUS-21883_E4278493.pnach b/patches/SLUS-21883_E4278493.pnach index 53297dcd..f00afc5f 100644 --- a/patches/SLUS-21883_E4278493.pnach +++ b/patches/SLUS-21883_E4278493.pnach @@ -1,8 +1,8 @@ -gametitle=Cars Race-O-Rama (U)(SLUS-21883) +gametitle=Disney/Pixar Cars - Race-O-Rama NTSC-U SLUS-21883 E4278493 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -28,4 +28,9 @@ patch=1,EE,00313360,word,08051d51 //patch=1,EE,00112edc,word,3c033cae //3c033c8e //patch=1,EE,00112ee0,word,34633000 //3c033c8e - +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,201A07D4,extended,0060102D //0060202D +patch=1,EE,E0010001,extended,003FCD38 +patch=1,EE,201A07D4,extended,0060202D \ No newline at end of file diff --git a/patches/SLUS-21884_560BF7BB.pnach b/patches/SLUS-21884_560BF7BB.pnach index d53d4bd4..c6ef11e5 100644 --- a/patches/SLUS-21884_560BF7BB.pnach +++ b/patches/SLUS-21884_560BF7BB.pnach @@ -2,7 +2,7 @@ gametitle=Backyard Baseball '10 (U)(SLUS-21884) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21886_4EC21458.pnach b/patches/SLUS-21886_4EC21458.pnach index c6236133..5928a6eb 100644 --- a/patches/SLUS-21886_4EC21458.pnach +++ b/patches/SLUS-21886_4EC21458.pnach @@ -1,8 +1,8 @@ -gametitle=G.I. Joe - The Rise of Cobra (NTSC-U)(SLUS-21886) +gametitle=G.I. Joe - The Rise of Cobra NTSC-U SLUS-21886 4EC21458 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -26,4 +26,7 @@ patch=1,EE,00224450,word,461e18c2 //Render fix //patch=1,EE,00253ffc,word,3c013fb0 //3c013f80 - +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,00253BA4,word,28630001 //28630002 \ No newline at end of file diff --git a/patches/SLUS-21890_433951E7.pnach b/patches/SLUS-21890_433951E7.pnach index 2ab6facd..68952e15 100644 --- a/patches/SLUS-21890_433951E7.pnach +++ b/patches/SLUS-21890_433951E7.pnach @@ -2,7 +2,7 @@ gametitle=Mana Khemia 2: Fall of Alchemy (SLUS-21890) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //3D scenes patch=1,EE,005e1fb4,word,3c013f40 //hor value diff --git a/patches/SLUS-21899_61A7E622.pnach b/patches/SLUS-21899_61A7E622.pnach index 313b926c..9c752e7c 100644 --- a/patches/SLUS-21899_61A7E622.pnach +++ b/patches/SLUS-21899_61A7E622.pnach @@ -2,7 +2,7 @@ gametitle=Silent Hill: Shattered Memories (SLUS-21899) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 //widescreen fix patch=1,EE,002c4524,word,3c013faa diff --git a/patches/SLUS-21901_A00ED0D5.pnach b/patches/SLUS-21901_A00ED0D5.pnach index c7e37d62..b7154271 100644 --- a/patches/SLUS-21901_A00ED0D5.pnach +++ b/patches/SLUS-21901_A00ED0D5.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown vs. Raw 2010 (SLUS-21901) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,002d97bc,word,3c033f40 diff --git a/patches/SLUS-21906_6712AFD7.pnach b/patches/SLUS-21906_6712AFD7.pnach index 0bae8138..cac7d678 100644 --- a/patches/SLUS-21906_6712AFD7.pnach +++ b/patches/SLUS-21906_6712AFD7.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's Outdoor Adventures (2009) (U)(SLUS-21906) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Zoom diff --git a/patches/SLUS-21907_EFE4448F.pnach b/patches/SLUS-21907_EFE4448F.pnach index b939fc0c..84a6ed4a 100644 --- a/patches/SLUS-21907_EFE4448F.pnach +++ b/patches/SLUS-21907_EFE4448F.pnach @@ -2,7 +2,7 @@ gametitle=Jurassic - The Hunted (U)(SLUS-21907) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21914_82CA153C.pnach b/patches/SLUS-21914_82CA153C.pnach index 3fe71ea1..b51aa0df 100644 --- a/patches/SLUS-21914_82CA153C.pnach +++ b/patches/SLUS-21914_82CA153C.pnach @@ -2,7 +2,7 @@ gametitle=NHL 2K10 (U)(SLUS-21914) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21915_40619A71.pnach b/patches/SLUS-21915_40619A71.pnach new file mode 100644 index 00000000..793d6533 --- /dev/null +++ b/patches/SLUS-21915_40619A71.pnach @@ -0,0 +1,7 @@ +gametitle=The Lord of the Rings - Aragorn's Quest NTSC-U SLUS-21915 40619A71 + +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,002D5938,word,00000001 //00000002 +patch=1,EE,002B5D3C,word,0000003c //0000001E \ No newline at end of file diff --git a/patches/SLUS-21918_6579BD4D.pnach b/patches/SLUS-21918_6579BD4D.pnach index e4c9dac7..526f11e5 100644 --- a/patches/SLUS-21918_6579BD4D.pnach +++ b/patches/SLUS-21918_6579BD4D.pnach @@ -2,7 +2,7 @@ gametitle=Pro Evolution Soccer 2010 (USA) [SLUS-21918] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLUS-21919_6BA3B492.pnach b/patches/SLUS-21919_6BA3B492.pnach index f9d027a4..8704fd58 100644 --- a/patches/SLUS-21919_6BA3B492.pnach +++ b/patches/SLUS-21919_6BA3B492.pnach @@ -2,7 +2,7 @@ gametitle=Backyard Football '10 (U)(SLUS-21919) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21923_643BED21.pnach b/patches/SLUS-21923_643BED21.pnach index 25d94884..117479c5 100644 --- a/patches/SLUS-21923_643BED21.pnach +++ b/patches/SLUS-21923_643BED21.pnach @@ -1,8 +1,8 @@ -gametitle=Dora the Explorer - Dora Saves the Crystal Kingdom (U)(SLUS-21923) +gametitle=Dora the Explorer - Dora Saves the Crystal Kingdom NTSC-U SLUS-21923 643BED21 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -15,4 +15,7 @@ patch=1,EE,000c0008,word,4481f000 patch=1,EE,000c000c,word,461e1082 patch=1,EE,000c0010,word,0804688a - +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,003EBC78,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLUS-21926_C20B1822.pnach b/patches/SLUS-21926_C20B1822.pnach index 9adc28c3..d270ace6 100644 --- a/patches/SLUS-21926_C20B1822.pnach +++ b/patches/SLUS-21926_C20B1822.pnach @@ -2,7 +2,7 @@ gametitle=Ni Hao, Kai-Lan - Super Game Day (U)(SLUS-21926) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21931_EA6A9009.pnach b/patches/SLUS-21931_EA6A9009.pnach index 19506720..f35998e9 100644 --- a/patches/SLUS-21931_EA6A9009.pnach +++ b/patches/SLUS-21931_EA6A9009.pnach @@ -2,7 +2,7 @@ gametitle=Disney-Pixar Toy Story 3 (U)(SLUS-21931) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21933_4106DBA1.pnach b/patches/SLUS-21933_4106DBA1.pnach index a84a372f..3b327d1b 100644 --- a/patches/SLUS-21933_4106DBA1.pnach +++ b/patches/SLUS-21933_4106DBA1.pnach @@ -1,8 +1,8 @@ -gametitle=Despicable Me - The Game (U)(SLUS-21933) +gametitle=Despicable Me - The Game NTSC-U SLUS-21933 4106DBA1 [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 @@ -20,4 +20,10 @@ patch=1,EE,00119844,word,3421e327 //Zoom //patch=1,EE,001197ec,word,3c013faa - +[60 FPS] +author=Gabominated +description=Might need EE Overclock (130%). +patch=1,EE,2023749C,extended,2C420000 +patch=1,EE,E0010001,extended,005FBFB4 +patch=1,EE,2023749C,extended,2C420001 +patch=1,EE,2012fb54,extended,2402003c \ No newline at end of file diff --git a/patches/SLUS-21935_47EB5E7D.pnach b/patches/SLUS-21935_47EB5E7D.pnach index 0a0a2969..622266d3 100644 --- a/patches/SLUS-21935_47EB5E7D.pnach +++ b/patches/SLUS-21935_47EB5E7D.pnach @@ -2,7 +2,7 @@ gametitle=Cabela's North American Adventures (U)(SLUS-21935) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by Arapapa +author=Arapapa //Widescreen hack 16:9 //Zoom diff --git a/patches/SLUS-21938_5902F6D2.pnach b/patches/SLUS-21938_5902F6D2.pnach index f6137a9c..54bb09a2 100644 --- a/patches/SLUS-21938_5902F6D2.pnach +++ b/patches/SLUS-21938_5902F6D2.pnach @@ -2,7 +2,7 @@ gametitle=Ben 10: Ultimate Alien Cosmic Destruction [NTSC-U] (SLUS_219.38) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen Hack by El_Patas +author=El_Patas //Gameplay 16:9 patch=1,EE,20764A54,extended,3FE38E38 //3FAAAAAB (Increases hor. axis) diff --git a/patches/SLUS-21939_E599BD40.pnach b/patches/SLUS-21939_E599BD40.pnach index a26e551d..c8881729 100644 --- a/patches/SLUS-21939_E599BD40.pnach +++ b/patches/SLUS-21939_E599BD40.pnach @@ -2,7 +2,7 @@ gametitle=WWE SmackDown vs. Raw 2011 (SLUS-21939) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by nemesis2000 (pnach by nemesis2000) +author=nemesis2000 patch=1,EE,0022ed0c,word,3c033f40 diff --git a/patches/SLUS-21940_BEB62AA6.pnach b/patches/SLUS-21940_BEB62AA6.pnach index eec6e7dc..af0b7719 100644 --- a/patches/SLUS-21940_BEB62AA6.pnach +++ b/patches/SLUS-21940_BEB62AA6.pnach @@ -2,7 +2,7 @@ gametitle=WWE All-Stars (U)(SLUS-21940) [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen hack 16:9 diff --git a/patches/SLUS-21942_FF55109B.pnach b/patches/SLUS-21942_FF55109B.pnach index 23c2b830..3da8fe6b 100644 --- a/patches/SLUS-21942_FF55109B.pnach +++ b/patches/SLUS-21942_FF55109B.pnach @@ -2,7 +2,7 @@ gametitle=Pro Evolution Soccer 2011 (USA) [SLUS-21942] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9 diff --git a/patches/SLUS-21944_EAEDE6E8.pnach b/patches/SLUS-21944_EAEDE6E8.pnach new file mode 100644 index 00000000..100edfd6 --- /dev/null +++ b/patches/SLUS-21944_EAEDE6E8.pnach @@ -0,0 +1,6 @@ +gametitle=Dora's Big Birthday Adventure NTSC-U SLUS-21944 EAEDE6E8 + +[60 FPS] +author=Gabominated +description=Might need EE Overclock. +patch=1,EE,0040B278,word,00000001 //00000002 \ No newline at end of file diff --git a/patches/SLUS-21948_B04FC443.pnach b/patches/SLUS-21948_B04FC443.pnach index 9c129282..4276798f 100644 --- a/patches/SLUS-21948_B04FC443.pnach +++ b/patches/SLUS-21948_B04FC443.pnach @@ -2,7 +2,7 @@ gametitle=Pro Evolution Soccer 2012 [NTSC-U] [SLUS-21948] [Widescreen 16:9] gsaspectratio=16:9 -comment=Widescreen hack by Arapapa +author=Arapapa //Widescreen 16:9