Cheats: Update notes on how PNACH 2.0 works

Co-Authored-By: Mrlinkwii <Mrlinkwii@users.noreply.github.com>
This commit is contained in:
KamFretoZ 2024-12-12 20:47:36 +07:00 committed by Ty
parent cc9f7e723a
commit 57fc87061d
1 changed files with 9 additions and 11 deletions

View File

@ -4,18 +4,16 @@
#pragma once #pragma once
// Note about terminology: // Note about terminology:
// "patch" in pcsx2 terminology is a single pnach style patch line, e.g. patch=1,EE,001110e0,word,00000000 // "Patch" in PCSX2 terminology refers to a single pnach style patch line, e.g. `patch=1,EE,001110e0,word,00000000`
// Such patches can appear in several places: // Such patches can appear in several places:
// - At <CRC>.pnach files where each file could have several such patches: // - At the "patches" folder or on the "patches.zip file inside the 'resources' folder
// - At the "cheats" folder // - UI name: "Patch", Controlled via Per-Game Settings -> Patches
// - UI name: "Cheats", controlled via system -> enable cheats // - At the "cheats" folder
// - At the "cheats_ws" folder or inside "cheats_ws.zip" (the zip also called "widescreen cheats DB") // - UI name: "Cheats", Controlled via Per-Game Settings -> Cheats -> Enable Cheat
// - the latter is searched if the former is not found for a CRC // - At GameIndex.yaml inside a [patches] section
// - UI name: "Widescreen hacks/patches", controlled via system -> enable widescreen patches // - UI name: "Enable Compatibility Patches", controlled via Advanced section -> Enable compatability settings
// - At GameIndex.yaml inside a [patches] section // Note: The file name has to be exactly "<Serial>_<CRC>.pnach" (For example "SLPS-25399_CD62245A.pnach")
// - UI name: "Patches", controlled via system -> enable automatic game fixes // Note #2: the old sytle of cheats are also supported but arent supported by the UI
// - note that automatic game fixes also controls automatic config changes from GameIndex.dbf (UI name: "fixes")
//
#include "Config.h" #include "Config.h"