diff --git a/src/game/poker/ui/pokerplayerui.c b/src/game/poker/ui/pokerplayerui.c index c8c33a8a..c55751db 100644 --- a/src/game/poker/ui/pokerplayerui.c +++ b/src/game/poker/ui/pokerplayerui.c @@ -102,7 +102,7 @@ void pokerPlayerUiRender( gridSetSize( &ui->grid, engine->render.width, engine->render.height, align.width, align.height, - align.x, align.y + align.x + x, align.y + y ); // Render face @@ -119,7 +119,7 @@ void pokerPlayerUiRender( labelSetText(&ui->label, font, buffer); align = gridAlignChild( &ui->grid, ui->grid.breakpointCurrent, ui->grid.children + 1, &sCol, &sRow, - ALIGN_POS_END | ALIGN_SIZE_ORIGINAL, ALIGN_POS_START | ALIGN_SIZE_ORIGINAL, + ALIGN_POS_END | ALIGN_SIZE_ORIGINAL, ALIGN_POS_CENTER | ALIGN_SIZE_ORIGINAL, ui->label.info.width, ui->label.info.height ); labelRender(&ui->label, shader, align.x, align.y); @@ -140,7 +140,7 @@ void pokerPlayerUiRender( labelSetText(&ui->label, font, buffer); align = gridAlignChild( &ui->grid, ui->grid.breakpointCurrent, ui->grid.children + 2, &sCol, &sRow, - ALIGN_POS_END | ALIGN_SIZE_ORIGINAL, ALIGN_POS_START | ALIGN_SIZE_ORIGINAL, + ALIGN_POS_END | ALIGN_SIZE_ORIGINAL, ALIGN_POS_CENTER | ALIGN_SIZE_ORIGINAL, ui->label.info.width, ui->label.info.height ); labelRender(&ui->label, shader, align.x, align.y); diff --git a/src/game/poker/ui/pokerui.c b/src/game/poker/ui/pokerui.c index f30a8937..6bbe6961 100644 --- a/src/game/poker/ui/pokerui.c +++ b/src/game/poker/ui/pokerui.c @@ -42,7 +42,7 @@ void pokerUiRender(pokergame_t *pokerGame, engine_t *engine) { pokerPlayerUiRender( ui, pokerGame, &pokerGame->assets.shader, &pokerGame->assets.font, engine, - i, engine->render.width, j * 75.0f + i, 0, j * 75.0f ); j++; }