chore: clean up typos

This commit is contained in:
Łukasz Niemier
2024-08-05 13:56:57 +02:00
parent 1b386faee9
commit f9be02a20f
46 changed files with 135 additions and 66 deletions

View File

@@ -230,7 +230,7 @@ fn threadMain_(self: *Thread) !void {
}
fn startDrawTimer(self: *Thread) void {
// If our renderer doesn't suppoort animations then we never run this.
// If our renderer doesn't support animations then we never run this.
if (!@hasDecl(renderer.Renderer, "hasAnimations")) return;
if (!self.renderer.hasAnimations()) return;
if (self.config.custom_shader_animation == .false) return;