From cdae0052453e8257d332fae2c6ebf391decb082b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Wed, 12 Jun 2019 08:30:06 -0400 Subject: [PATCH] [ion] Flasher: change text color to black --- ion/src/device/shared/usb/flasher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ion/src/device/shared/usb/flasher.cpp b/ion/src/device/shared/usb/flasher.cpp index 844dcc064..7526e88c5 100644 --- a/ion/src/device/shared/usb/flasher.cpp +++ b/ion/src/device/shared/usb/flasher.cpp @@ -35,7 +35,7 @@ void ion_main(int argc, char * argv[]) { currentHeight += margin; const char * title = sMessages[i][0]; KDSize titleSize = KDFont::LargeFont->stringSize(title); - ctx->drawString(title, KDPoint((Ion::Display::Width-titleSize.width())/2, currentHeight), KDFont::LargeFont, KDColor::RGB24(0xffb734)); + ctx->drawString(title, KDPoint((Ion::Display::Width-titleSize.width())/2, currentHeight), KDFont::LargeFont); currentHeight += 2*titleSize.height(); for (int j = 1; j < sNumberOfMessages; j++) { const char * message = sMessages[i][j];