Naming convention

This commit is contained in:
peterc-s
2024-10-23 12:58:53 +01:00
parent 1ddccf2683
commit 7e69260511
3 changed files with 4 additions and 4 deletions

View File

@@ -388,7 +388,7 @@ pub fn main() !void {
.doom => {
if (animation_timer.read() / std.time.ns_per_ms > config.animation_refresh_ms) {
animation_timer.reset();
doom.draw_with_update();
doom.drawWithUpdate();
} else {
doom.draw();
}
@@ -396,7 +396,7 @@ pub fn main() !void {
.matrix => {
if (animation_timer.read() / std.time.ns_per_ms > config.animation_refresh_ms) {
animation_timer.reset();
matrix.draw_with_update();
matrix.drawWithUpdate();
} else {
matrix.draw();
}