comparison Discovery/Src/tMenu.c @ 658:4df22790dc0c

Bugfix handling of new menu tab in flipped mode: The missing handling of the new menu tab cause the OSTC to hang during iteration through tab while CCR mode was selected. The missing code has been added to fix the issue.
author Ideenmodellierer
date Tue, 27 Apr 2021 21:29:26 +0200
parents 5f0d3dce5ef4
children 1b995079c045
comparison
equal deleted inserted replaced
657:9513a92b293b 658:4df22790dc0c
1360 } 1360 }
1361 1361
1362 pDestination -= (800) * 480; 1362 pDestination -= (800) * 480;
1363 positionText += 70; 1363 positionText += 70;
1364 1364
1365 if((k == 4) || ((k == 6) && (menu.pageCountNumber[5] == 0))) 1365 if(((k == 4) && (actual_menu_content != MENU_SURFACE)) || ((k == 6) && (menu.pageCountNumber[5] == 0)))
1366 { 1366 {
1367 pDestination -= 70 * 480; 1367 pDestination -= 70 * 480;
1368 positionText += 70; 1368 positionText += 70;
1369 } 1369 }
1370 1370