mirror of https://github.com/PCSX2/pcsx2.git
Qt: Fix final return condition for PatchStringHasUnlabelledPatch
This commit is contained in:
parent
cc62825081
commit
5e450388f9
|
@ -449,8 +449,8 @@ bool Patch::PatchStringHasUnlabelledPatch(std::string pnach_data)
|
|||
|
||||
foundPatch = true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
void Patch::ExtractPatchInfo(PatchInfoList* dst, const std::string& pnach_data, u32* num_unlabelled_patches)
|
||||
|
|
Loading…
Reference in New Issue