Removed extranneous m_display.startscrolldiagleft func.

This commit is contained in:
Chipster
2023-06-11 10:35:39 -05:00
parent 8664e65221
commit 3a7d087628
2 changed files with 2 additions and 6 deletions

View File

@@ -258,10 +258,6 @@ void COLED::setIdleInt()
m_display.clearDisplay(); m_display.clearDisplay();
OLED_statusbar(); OLED_statusbar();
if (m_displayScroll && m_displayLogoScreensaver)
m_display.startscrolldiagleft(0x00,0x0f); //the MMDVM logo scrolls the whole screen
m_display.display();
unsigned char info[100U]; unsigned char info[100U];
CNetworkInfo* m_network; CNetworkInfo* m_network;
@@ -325,7 +321,7 @@ void COLED::setIdleInt()
} }
if (m_displayScroll && m_displayLogoScreensaver) if (m_displayScroll && m_displayLogoScreensaver)
m_display.startscrolldiagleft(0x00, 0x0f); // the MMDVM logo scrolls the whole screen m_display.startscrolldiagleft(0x00,0x0f); // the MMDVM logo scrolls the whole screen
m_display.display(); m_display.display();
} }

View File

@@ -19,6 +19,6 @@
#if !defined(VERSION_H) #if !defined(VERSION_H)
#define VERSION_H #define VERSION_H
const char* VERSION = "20220523"; const char* VERSION = "20230611";
#endif #endif