videoctrl: Init palette to black.

This commit is contained in:
joevt 2024-04-16 01:53:22 -07:00 committed by dingusdev
parent a5241d27c1
commit 382246905b
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ protected:
float refresh_rate;
bool draw_fb = true;
uint32_t palette[256]; // internal DAC palette in RGBA format
uint32_t palette[256] = {0}; // internal DAC palette in RGBA format
// Framebuffer parameters
uint8_t* fb_ptr = nullptr;