1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-25 09:15:38 +03:00

BMP also works (1bit bitmaps are not supported by stb-image library)

This commit is contained in:
Damjan Adamic 2016-01-02 20:44:38 +01:00
parent acaa77daab
commit d7112b5dd7
2 changed files with 2 additions and 1 deletions

View file

@ -360,7 +360,7 @@ bool menuGeneralSdManager(evt_t _event)
if (ext && !strcasecmp(ext, BITMAPS_EXT)) {
if (lastBitmap != menuVerticalPosition) {
lastBitmap = menuVerticalPosition;
if (bmpLoad(modelBitmap, reusableBuffer.sdmanager.lines[index], MODEL_BITMAP_WIDTH, MODEL_BITMAP_HEIGHT)) {
if (imgLoad(modelBitmap, reusableBuffer.sdmanager.lines[index], MODEL_BITMAP_WIDTH, MODEL_BITMAP_HEIGHT)) {
((uint32_t *)modelBitmap)[0] = 0;
}
}