Update timing.cpp

I have updated the comment to reflect the new stepOnce() name, instead of the older step() name.
This commit is contained in:
Asura 2020-10-24 11:14:32 +09:00 committed by Screwtapello
parent 39c37ec2d1
commit 42f9e68fb2
1 changed files with 1 additions and 1 deletions

View File

@ -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;