mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-28 04:54:30 +00:00
Try to fix macOS build
This commit is contained in:
parent
20aacec41f
commit
5bb71458c0
@ -328,8 +328,8 @@ BufferId BufferCache::FindBuffer(VAddr device_addr, u32 size) {
|
|||||||
|
|
||||||
void BufferCache::QueueMemoryImport(VAddr device_addr, u64 size) {
|
void BufferCache::QueueMemoryImport(VAddr device_addr, u64 size) {
|
||||||
std::scoped_lock lk{mutex};
|
std::scoped_lock lk{mutex};
|
||||||
const u64 start = device_addr;
|
const VAddr start = device_addr;
|
||||||
const u64 end = device_addr + size;
|
const VAddr end = device_addr + size;
|
||||||
auto queue_range = decltype(imported_regions)::interval_type::right_open(start, end);
|
auto queue_range = decltype(imported_regions)::interval_type::right_open(start, end);
|
||||||
queued_imports += queue_range;
|
queued_imports += queue_range;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user