Force refresh when switching decode Levels
This should fix palettes not updating when switching in and out of Level 3.5
This commit is contained in:
@@ -68,7 +68,13 @@ void TeletextPageDecode::setLevel(int level)
|
|||||||
{
|
{
|
||||||
if (level == m_level)
|
if (level == m_level)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
m_level = level;
|
m_level = level;
|
||||||
|
|
||||||
|
for (int r=0; r<25; r++)
|
||||||
|
for (int c=0; c<72; c++)
|
||||||
|
m_refresh[r][c] = true;
|
||||||
|
|
||||||
decodePage();
|
decodePage();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user