diff --git a/pcsx2/GS/GSRingHeap.cpp b/pcsx2/GS/GSRingHeap.cpp index 81cdd0aa21..684ff33dae 100644 --- a/pcsx2/GS/GSRingHeap.cpp +++ b/pcsx2/GS/GSRingHeap.cpp @@ -219,7 +219,7 @@ void* GSRingHeap::alloc_internal(size_t size, size_t align_mask, size_t prefix_s size_t used = m_current_buffer->m_amt_allocated.load(std::memory_order_relaxed) - 1; if (used * 4 < total) { - fprintf(stderr, "GSRingHeap: Orphaning %zdmb buffer with low usage of %d%%, check that allocations are actually being deallocated approximately in order\n", total / mb, static_cast((used * 100) / total)); + fprintf(stderr, "GSRingHeap: Orphaning %zumb buffer with low usage of %d%%, check that allocations are actually being deallocated approximately in order\n", total / mb, static_cast((used * 100) / total)); } } }