mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-27 12:34:37 +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) {
|
||||
std::scoped_lock lk{mutex};
|
||||
const u64 start = device_addr;
|
||||
const u64 end = device_addr + size;
|
||||
const VAddr start = device_addr;
|
||||
const VAddr end = device_addr + size;
|
||||
auto queue_range = decltype(imported_regions)::interval_type::right_open(start, end);
|
||||
queued_imports += queue_range;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user