mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Vulkan: Fix a log formatting issue.
This commit is contained in:
parent
26f5b5b938
commit
f65481668c
1 changed files with 1 additions and 2 deletions
|
@ -450,7 +450,7 @@ void VulkanDeviceAllocator::ReportOldUsage() {
|
|||
}
|
||||
|
||||
if (hasOldAllocs) {
|
||||
NOTICE_LOG(G3D, "Slab %d usage:", i);
|
||||
NOTICE_LOG(G3D, "Slab %d usage:", (int)i);
|
||||
for (auto it : slab.tags) {
|
||||
const auto info = it.second;
|
||||
|
||||
|
@ -458,7 +458,6 @@ void VulkanDeviceAllocator::ReportOldUsage() {
|
|||
float touchedAge = now - info.touched;
|
||||
NOTICE_LOG(G3D, " * %s (created %fs ago, used %fs ago)", info.tag.c_str(), createAge, touchedAge);
|
||||
}
|
||||
NOTICE_LOG(G3D, "");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue