mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 22:55:40 +12:00
Remove debug printfs
This commit is contained in:
parent
0be099d1ea
commit
af996c55ba
3 changed files with 0 additions and 4 deletions
|
@ -54,8 +54,6 @@ void CPU::runFrame() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("CPU END!\n");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // CPU_DYNARMIC
|
#endif // CPU_DYNARMIC
|
|
@ -57,7 +57,6 @@ void Kernel::cancelTimer(Timer* timer) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Kernel::signalTimer(Handle timerHandle, Timer* timer) {
|
void Kernel::signalTimer(Handle timerHandle, Timer* timer) {
|
||||||
printf("DEEPFRIED\n");
|
|
||||||
timer->fired = true;
|
timer->fired = true;
|
||||||
requireReschedule();
|
requireReschedule();
|
||||||
|
|
||||||
|
|
|
@ -129,7 +129,6 @@ void Emulator::pollScheduler() {
|
||||||
|
|
||||||
switch (eventType) {
|
switch (eventType) {
|
||||||
case Scheduler::EventType::VBlank: {
|
case Scheduler::EventType::VBlank: {
|
||||||
printf("VBLANK!!!!!!\n");
|
|
||||||
// Signal that we've reached the end of a frame
|
// Signal that we've reached the end of a frame
|
||||||
frameDone = true;
|
frameDone = true;
|
||||||
lua.signalEvent(LuaEvent::Frame);
|
lua.signalEvent(LuaEvent::Frame);
|
||||||
|
|
Loading…
Add table
Reference in a new issue