diff --git a/radio/src/gui/screenshot.cpp b/radio/src/gui/screenshot.cpp index 32312dab5..1cd5d00c4 100644 --- a/radio/src/gui/screenshot.cpp +++ b/radio/src/gui/screenshot.cpp @@ -80,7 +80,7 @@ const char * writeScreenshot() #if defined(COLORLCD) for (int y = LCD_H - 1; y >= 0; y--) { for (int x = 0; x < LCD_W; x++) { - pixel_t pixel = *lcd->getPixelPtr(x, y); + auto pixel = *lcd->getPixelPtr(x, y); uint32_t dst = (0xFF << 24) + (GET_RED(pixel) << 16) + (GET_GREEN(pixel) << 8) + (GET_BLUE(pixel) << 0); if (f_write(&bmpFile, &dst, sizeof(dst), &written) != FR_OK || written != sizeof(dst)) { f_close(&bmpFile); diff --git a/radio/src/thirdparty/libopenui b/radio/src/thirdparty/libopenui index 9f0cff2c9..1164767d5 160000 --- a/radio/src/thirdparty/libopenui +++ b/radio/src/thirdparty/libopenui @@ -1 +1 @@ -Subproject commit 9f0cff2c987974c487565ba908199918d25a5b2f +Subproject commit 1164767d532ca63c55db1071d4d940b0d5a97de2