aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drv_generic_graphic.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drv_generic_graphic.c b/drv_generic_graphic.c
index 57d4cdc..a8ac4d5 100644
--- a/drv_generic_graphic.c
+++ b/drv_generic_graphic.c
@@ -256,9 +256,9 @@ static void drv_generic_graphic_render(const int layer, const int row, const int
/* magic char to toggle bold */
if (*txt == '\a') {
- bold ^= 1;
- txt++;
- continue;
+ bold ^= 1;
+ txt++;
+ continue;
}
if (bold || strstr(style, "bold") != NULL) {
chr = Font_6x8_bold[(int) *(unsigned char *) txt];