From f7e0d514dc2ec552fc62988abc25845ef18cff62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Thu, 11 Aug 2022 14:23:12 +0200 Subject: [PATCH] app: fix artnet text display --- application.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application.c b/application.c index bc3dc15..5676ebd 100644 --- a/application.c +++ b/application.c @@ -1209,7 +1209,7 @@ void main(void) case UNIVERSE_OFFSET + 6: // back front line 2 if (dmx_length >= 5 && strlen((char*)&radio_esp8266_received[18 + 5]) + 5 < dmx_length) { const int16_t position = (radio_esp8266_received[18 + 3] << 8) + radio_esp8266_received[18 + 4]; - matrix_puts(true, position, 8, (char*)&radio_esp8266_received[18 + 5], FONT_KING10, radio_esp8266_received[18 + 0], radio_esp8266_received[18 + 1], radio_esp8266_received[18 + 2]); + matrix_puts(true, position, 8, (char*)&radio_esp8266_received[18 + 5], FONT_KING8, radio_esp8266_received[18 + 0], radio_esp8266_received[18 + 1], radio_esp8266_received[18 + 2]); } break; default: