1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-22 15:46:14 +01:00

Update DisplayInterface.cpp

Remove dummy display driver object - it's unnecessary now as a null pointer is benign in this context.
This commit is contained in:
Neil McKechnie 2023-02-23 20:24:42 +00:00
parent eddd6382d9
commit a23f5839b7

View File

@ -21,7 +21,7 @@
#include "DisplayInterface.h"
// Install null display driver initially - will be replaced if required.
DisplayInterface *DisplayInterface::_displayHandler = new DisplayInterface();
// Start of chain of display handlers.
DisplayInterface *DisplayInterface::_displayHandler = NULL;
uint8_t DisplayInterface::_selectedDisplayNo = 255;