From a160772ccb66d3047e601869669b451145a9adf3 Mon Sep 17 00:00:00 2001 From: Asura <69095614+asuramaru@users.noreply.github.com> Date: Sat, 24 Oct 2020 11:14:32 +0900 Subject: [PATCH] Update timing.cpp I have updated the comment to reflect the new stepOnce() name, instead of the older step() name. --- bsnes/sfc/cpu/timing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsnes/sfc/cpu/timing.cpp b/bsnes/sfc/cpu/timing.cpp index d3f78a22..e443e5a5 100644 --- a/bsnes/sfc/cpu/timing.cpp +++ b/bsnes/sfc/cpu/timing.cpp @@ -200,7 +200,7 @@ auto CPU::dmaEdge() -> void { } } -//called every 128 clocks; see CPU::step() +//called every 128 clocks from inside the CPU::stepOnce() function auto CPU::joypadEdge() -> void { //it is not yet confirmed if polling can be stopped early and/or (re)started later if(!io.autoJoypadPoll) return;