Make player panel not center

This commit is contained in:
Agent X 2023-12-11 16:20:16 -05:00
parent 8401530f41
commit 6b9888162f
1 changed files with 3 additions and 1 deletions

View File

@ -55,7 +55,9 @@ struct DjuiThreePanel* djui_panel_menu_create(char* headerText) {
strcmp(headerText, DLANG(HOST_MODS, ROMHACKS)) &&
strcmp(headerText, DLANG(LOBBIES, PUBLIC_LOBBIES)) &&
strcmp(headerText, DLANG(LOBBIES, PRIVATE_LOBBIES)) &&
strcmp(headerText, DLANG(JOIN_MESSAGE, JOINING));
strcmp(headerText, DLANG(JOIN_MESSAGE, JOINING)) &&
strcmp(headerText, DLANG(PLAYER, PLAYER_TITLE)) &&
strcmp(headerText, DLANG(PLAYER, PALETTE));
f32 widthMultiplier = center ? DJUI_THEME_CENTERED_WIDTH : 1.0f;
f32 heightMultiplier = center ? DJUI_THEME_CENTERED_HEIGHT : 1.0f;