DRAGONS: Fix alignment of French main menu

This commit is contained in:
Walter Agazzi 2023-01-03 19:37:37 +01:00 committed by Eugene Sandulenko
parent 4c59e2c23a
commit aae59da8e8

View File

@ -1757,7 +1757,7 @@ void DragonsEngine::mainMenu() {
uint16 curMenuItem = 0;
do {
for (int i = 0; i <= lastMenuItem; i++) {
_fontManager->addText((i == 0 ? 17 : 16) * 8, (0x12 + i) * 8, menuItems[lang_index][i], wideStrLen(menuItems[lang_index][i]),
_fontManager->addText( ((i == 0) && (lang_index != 3) ? 17 : 16) * 8, (0x12 + i) * 8, menuItems[lang_index][i], wideStrLen(menuItems[lang_index][i]),
i == curMenuItem ? 0 : 1);
}
if (checkForDownKeyRelease() || checkForWheelDown()) {