mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00:00
Merge pull request #9707 from JosJuice/remove-atomic-header
Remove Atomic.h
This commit is contained in:
commit
964fed77c5
13 changed files with 178 additions and 319 deletions
|
@ -890,7 +890,9 @@ void Renderer::CheckFifoRecording()
|
|||
RecordVideoMemory();
|
||||
}
|
||||
|
||||
FifoRecorder::GetInstance().EndFrame(CommandProcessor::fifo.CPBase, CommandProcessor::fifo.CPEnd);
|
||||
FifoRecorder::GetInstance().EndFrame(
|
||||
CommandProcessor::fifo.CPBase.load(std::memory_order_relaxed),
|
||||
CommandProcessor::fifo.CPEnd.load(std::memory_order_relaxed));
|
||||
}
|
||||
|
||||
void Renderer::RecordVideoMemory()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue