Log: Simplify macros

This commit is contained in:
Stenzek
2024-05-23 20:55:28 +10:00
parent 792717e03e
commit 4e922a34a7
144 changed files with 2273 additions and 2363 deletions

View File

@ -183,7 +183,7 @@ void GPUBackend::StartGPUThread()
m_gpu_loop_done.store(false);
m_use_gpu_thread = true;
m_gpu_thread.Start([this]() { RunGPULoop(); });
Log_InfoPrint("GPU thread started.");
INFO_LOG("GPU thread started.");
}
void GPUBackend::StopGPUThread()
@ -195,7 +195,7 @@ void GPUBackend::StopGPUThread()
WakeGPUThread();
m_gpu_thread.Join();
m_use_gpu_thread = false;
Log_InfoPrint("GPU thread stopped.");
INFO_LOG("GPU thread stopped.");
}
void GPUBackend::Sync(bool allow_sleep)