diff options
author | BDKPlayer <fabian.stotz@yahoo.de> | 2020-03-04 21:48:47 +0100 |
---|---|---|
committer | BDKPlayer <fabian.stotz@yahoo.de> | 2020-03-04 21:48:47 +0100 |
commit | aa75847f5770c3bbd2840ff5c52af32761e475aa (patch) | |
tree | cba1cb06267919837be32372b76f5ea098781042 /Core.cpp | |
parent | 39be1b0e1ecebf73fbda16a99c4d2aeb3ca5010a (diff) |
Added: playernames
Diffstat (limited to 'Core.cpp')
-rw-r--r-- | Core.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -29,10 +29,10 @@ Core::Core() void createPlayerTreeNode(Player* player, int playerIndex) { - ImGui::PushStyleColor(ImGuiCol_Text, Engine::Get()->GetPlayerColorImGUI(*player->playerColor)); + ImGui::PushStyleColor(ImGuiCol_Text, Engine::Get()->GetPlayerColorImGUI(*player->color)); std::string playerText = "Player " + std::to_string(playerIndex); - if (ImGui::TreeNode(playerText.c_str())) + if (ImGui::TreeNode(player->name)) { ImGui::Text("Player %p", player); FeatureManager::Get()->OnMenuPlayerTreenode(player, playerIndex); |