From 65ad4bb7b5189a93665aff08f80717057e4a0bd4 Mon Sep 17 00:00:00 2001 From: beerpsi Date: Fri, 12 Apr 2024 04:03:06 +0700 Subject: [PATCH] Add hide credit text patch --- patterns.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/patterns.yaml b/patterns.yaml index 222b3d8..773f483 100644 --- a/patterns.yaml +++ b/patterns.yaml @@ -79,12 +79,28 @@ - offset: 0x06 off: [0x00] on: [0x01] +# When making a patcher, these two patches should be a "union" patch. +# One is based off another, and both must not be on at the same time. - name: "Force FREE PLAY text" signature: "3C 01 75 10 6A 09 68 ?? ?? ?? ??" patches: - offset: 0x00 off: [0x3C, 0x01] on: [0x38, 0xC0] +- name: "Hide credit text" + patches: + - signature: "3C 01 75 10 6A 09 68 ?? ?? ?? ??" + offset: 0x00 + off: [0x3C, 0x01] + on: [0x38, 0xC0] + - signature: "3C 01 75 10 6A 09 68 ?? ?? ?? ??" + offset: 0x05 + off: [0x09] + on: [0x00] + - signature: "46 52 45 45 20 50 4C 41 59" + offset: 0x00 + off: [0x46] + on: [0x00] - name: "Disable shop close lockout" danger: "[DEPRECATED] Just disable it in the test menu" signature: "56 8B CB E8 ?? ?? ?? ?? 84 C0 ?? 0E"