Migrate missing forceLog_printf statement to new logging (#800)

This commit is contained in:
why-keith 2023-04-25 17:15:37 +01:00 committed by GitHub
parent e58a84629f
commit 1f16e999c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -190,7 +190,7 @@ private:
if (it == list_chunks[addr.chunkIndex]->map_allocatedRange.end())
{
cemuLog_log(LogType::Force, "Internal heap error. {:08x} {:08x}", addr.chunkIndex, addr.offset);
forceLog_printf("Debug info:");
cemuLog_log(LogType::Force, "Debug info:");
for (auto& rangeItr : list_chunks[addr.chunkIndex]->map_allocatedRange)
{
cemuLog_log(LogType::Force, "{:08x} {:08x}", rangeItr.second->offset, rangeItr.second->size);