FormatUsingClangFormatWhenCCode and TrimTrailingWhitespace

This commit is contained in:
Krzosa Karol
2026-01-01 14:44:11 +01:00
parent 65a6c372e0
commit e4f2401633

View File

@@ -57,7 +57,7 @@ void DrawVisibleText(Window *window, Color tint) {
p.x += text_offset_x; p.x += text_offset_x;
Rect2 rect = Rect2FromSize(p + g->offset, g->size); Rect2 rect = Rect2FromSize(p + g->offset, g->size);
if (codepoint != '\n' && codepoint != '\r' && codepoint != ' ') { if (codepoint != '\n' && codepoint != '\r' && codepoint != ' ' && codepoint != '\t') {
PushQuad2D(RenderArena, &Vertices, rect, g->atlas_bounding_box, tint); PushQuad2D(RenderArena, &Vertices, rect, g->atlas_bounding_box, tint);
} }