aboutsummaryrefslogtreecommitdiff
path: root/Core.cpp
diff options
context:
space:
mode:
authorBDKPlayer <fabian.stotz@yahoo.de>2020-03-04 21:48:47 +0100
committerBDKPlayer <fabian.stotz@yahoo.de>2020-03-04 21:48:47 +0100
commitaa75847f5770c3bbd2840ff5c52af32761e475aa (patch)
treecba1cb06267919837be32372b76f5ea098781042 /Core.cpp
parent39be1b0e1ecebf73fbda16a99c4d2aeb3ca5010a (diff)
Added: playernames
Diffstat (limited to 'Core.cpp')
-rw-r--r--Core.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Core.cpp b/Core.cpp
index 34c8bb1..e9be09d 100644
--- a/Core.cpp
+++ b/Core.cpp
@@ -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);