Mark error spot

This commit is contained in:
David Chavez 2025-03-12 18:23:14 +01:00
parent b1fd1e798e
commit 9d5f0a945a

View file

@ -561,6 +561,7 @@ void patch_func(recomp_func_t* target_func, recomp::mods::GenericFunction replac
size_t offset = 0;
auto write_bytes = [&](const void* bytes, size_t count) {
// TODO: This is failing for macOS, investigate why.
memcpy(target_func_u8 + offset, bytes, count);
offset += count;
};