lcdd: ignore Mode parameter in showPercentOver

This commit is contained in:
Stefan Seyfried
2013-11-15 11:58:20 +01:00
parent e508ba1fe8
commit 88e52bc563

View File

@@ -711,7 +711,8 @@ void CLCD::showVolume(const char vol, const bool perform_update)
void CLCD::showPercentOver(const unsigned char perc, const bool perform_update, const MODES m) void CLCD::showPercentOver(const unsigned char perc, const bool perform_update, const MODES m)
{ {
if (mode != m) if (mode != m)
return; printf("CLCD::showPercentOver: mode (%d) != m (%d), please report\n", (int)mode, (int)m);
// return;
int left, top, width, height = 5; int left, top, width, height = 5;
bool draw = true; bool draw = true;