Skip to content

Commit

Permalink
fix: uppercase #3
Browse files Browse the repository at this point in the history
  • Loading branch information
RodrigoDornelles committed Nov 10, 2024
1 parent 5a64a13 commit 5384d19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gly_type_render.h
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ gly_type_render(GLY_TYPE_INT x,
} else if (m & 1 || m & (1 << 4)) {
draw_line(x2, y1, x2, y3);
} else {
switch ((*t - 'v' + 1) >> 1) {
switch ((c + 'a' - 'v' + 1) >> 1) {
case 0:
draw_line(x1, y2, x2, y3);
draw_line(x2, y3, x3, y2);
Expand Down

0 comments on commit 5384d19

Please sign in to comment.