remove commented code for no-PSRAM boards

*sigh* changing gifdecoder parameters seems to have _no_ effect on RAM needed
This commit is contained in:
Frank
2025-11-09 20:24:57 +01:00
parent 29d2f7fc1b
commit a96e88043d

View File

@@ -11,11 +11,7 @@
static File file;
static char lastFilename[34] = "/";
//#if !defined(BOARD_HAS_PSRAM) //removed, to avoid compilcations in external tools that assume WLED allows 320 pixels width
// static GifDecoder<256,256,11,true> decoder; // use less RAM on boards without PSRAM - avoids crashes due to out-of-memory
//#else
static GifDecoder<320,320,12,true> decoder;
//#endif
static GifDecoder<320,320,12,true> decoder; // this creates the basic object; parameter lzwMaxBits is not used; decoder.alloc() always allocated "everything else" = 24Kb
static bool gifDecodeFailed = false;
static unsigned long lastFrameDisplayTime = 0, currentFrameDelay = 0;