Update Poolbox with FontWriter changes

This commit is contained in:
2024-01-05 12:33:31 -06:00
parent d37bff2f66
commit 80a65598ac
5 changed files with 10 additions and 10 deletions

View File

@@ -24,12 +24,12 @@ namespace FontWriter {
timer.reset();
}
State update(const GPU::PositionI16& start) {
Cursor update(const GPU::PositionI16& start) {
if(timer.is_expired_for(50_ms)) {
timer.reset();
wiggle_count++;
}
return State::create(start, wiggle_count);
return Cursor::create(start, wiggle_count);
}
}