From af996c55bae29d53cd02d5e973d08c03c6029cc0 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Mon, 22 Jan 2024 04:10:47 +0200 Subject: [PATCH] Remove debug printfs --- src/core/CPU/cpu_dynarmic.cpp | 2 -- src/core/kernel/timers.cpp | 1 - src/emulator.cpp | 1 - 3 files changed, 4 deletions(-) diff --git a/src/core/CPU/cpu_dynarmic.cpp b/src/core/CPU/cpu_dynarmic.cpp index 94ce335e..da5270b4 100644 --- a/src/core/CPU/cpu_dynarmic.cpp +++ b/src/core/CPU/cpu_dynarmic.cpp @@ -54,8 +54,6 @@ void CPU::runFrame() { } } } - - printf("CPU END!\n"); } #endif // CPU_DYNARMIC \ No newline at end of file diff --git a/src/core/kernel/timers.cpp b/src/core/kernel/timers.cpp index f245f9dc..35fc57a4 100644 --- a/src/core/kernel/timers.cpp +++ b/src/core/kernel/timers.cpp @@ -57,7 +57,6 @@ void Kernel::cancelTimer(Timer* timer) { } void Kernel::signalTimer(Handle timerHandle, Timer* timer) { - printf("DEEPFRIED\n"); timer->fired = true; requireReschedule(); diff --git a/src/emulator.cpp b/src/emulator.cpp index 058fe868..098aba8c 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -129,7 +129,6 @@ void Emulator::pollScheduler() { switch (eventType) { case Scheduler::EventType::VBlank: { - printf("VBLANK!!!!!!\n"); // Signal that we've reached the end of a frame frameDone = true; lua.signalEvent(LuaEvent::Frame);