aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore
diff options
context:
space:
mode:
authornegativeExponent2020-08-03 08:14:45 +0800
committernegativeExponent2020-08-03 08:14:45 +0800
commit6205159e4f51b9d79064fd1ce8dd6baa3809c3bc (patch)
tree4b3fef437db6c06f5892d9459ae9c30a1efad884 /libpcsxcore
parentd23e64c18b3306f9cd95372745bed7172639720e (diff)
downloadpcsx_rearmed-6205159e4f51b9d79064fd1ce8dd6baa3809c3bc.tar.gz
pcsx_rearmed-6205159e4f51b9d79064fd1ce8dd6baa3809c3bc.tar.bz2
pcsx_rearmed-6205159e4f51b9d79064fd1ce8dd6baa3809c3bc.zip
lightrec/plugin.c: Use logging interface instead of printf
Diffstat (limited to 'libpcsxcore')
-rw-r--r--libpcsxcore/lightrec/plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpcsxcore/lightrec/plugin.c b/libpcsxcore/lightrec/plugin.c
index 79bf021..9e3c0c7 100644
--- a/libpcsxcore/lightrec/plugin.c
+++ b/libpcsxcore/lightrec/plugin.c
@@ -549,7 +549,7 @@ static void lightrec_plugin_execute_block(void)
}
if ((psxRegs.cycle & ~0xfffffff) != old_cycle_counter) {
- printf("RAM usage: Lightrec %u KiB, IR %u KiB, CODE %u KiB, "
+ SysDLog("RAM usage: Lightrec %u KiB, IR %u KiB, CODE %u KiB, "
"MIPS %u KiB, TOTAL %u KiB, avg. IPI %f\n",
lightrec_get_mem_usage(MEM_FOR_LIGHTREC) / 1024,
lightrec_get_mem_usage(MEM_FOR_IR) / 1024,