Fix interface bar position when using custom resolution

This commit is contained in:
Jan Šimek 2022-05-20 14:18:53 -07:00
parent 8565a55540
commit 560c460633
1 changed files with 4 additions and 1 deletions

View File

@ -351,7 +351,10 @@ int interfaceInit()
gInterfaceBarInitialized = 1;
gInterfaceBarWindow = windowCreate(0, 379, 640, 100, _colorTable[0], WINDOW_HIDDEN);
int xPos = (_scr_size.right - 640) / 2;
int yPos = _scr_size.bottom - 99;
gInterfaceBarWindow = windowCreate(xPos, yPos, 640, 100, _colorTable[0], WINDOW_HIDDEN);
if (gInterfaceBarWindow == -1) {
goto err;
}