improve board view with visual cues of the properties owned

This commit is contained in:
Adolfo Reyna
2026-01-31 23:02:25 -05:00
parent 63c4324561
commit d5a80235b4
5 changed files with 95 additions and 70 deletions

View File

@@ -380,7 +380,7 @@ bool MonopolyGame::update(const InputEvent& event) {
}
if (active_modal) delete active_modal;
if (selected_action == (menu_count - 1)) {
active_modal = new BoardModalGame(width, height, renderer, gui, input_manager, players, players_count);
active_modal = new BoardModalGame(width, height, renderer, gui, input_manager, players, players_count, current_player_idx);
needs_redraw = true;
} else if (!has_rolled) {
roll_dice_logic: