mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-20 03:24:49 +00:00
fix: mask_jump32 target
This commit is contained in:
parent
5b3e156197
commit
6860bb7349
1 changed files with 1 additions and 3 deletions
|
@ -148,7 +148,6 @@ void OnGameLoaded() {
|
|||
std::string targetStr = "";
|
||||
std::string sizeStr = "";
|
||||
if (type == "mask_jump32") {
|
||||
std::string patchValue = patchLineIt->attribute("Value").value();
|
||||
targetStr = patchLineIt->attribute("Target").value();
|
||||
sizeStr = patchLineIt->attribute("Size").value();
|
||||
} else {
|
||||
|
@ -301,8 +300,7 @@ void OnGameLoaded() {
|
|||
QString targetStr;
|
||||
QString sizeStr;
|
||||
if (type == "mask_jump32") {
|
||||
QString valueAttributeStr = lineObject["Value"].toString();
|
||||
targetStr = lineObject["Value"].toString();
|
||||
targetStr = lineObject["Target"].toString();
|
||||
sizeStr = lineObject["Size"].toString();
|
||||
} else {
|
||||
patchValue = QString::fromStdString(convertValueToHex(
|
||||
|
|
Loading…
Add table
Reference in a new issue