Qt: Fix final return condition for PatchStringHasUnlabelledPatch

This commit is contained in:
Dan McCarthy 2023-11-26 00:18:02 -06:00 committed by Connor McLaughlin
parent cc62825081
commit 5e450388f9
1 changed files with 1 additions and 1 deletions

View File

@ -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)