diff options
author | BDKPlayer <fabian.stotz@yahoo.de> | 2020-03-03 18:54:24 +0100 |
---|---|---|
committer | BDKPlayer <fabian.stotz@yahoo.de> | 2020-03-03 18:54:24 +0100 |
commit | 39be1b0e1ecebf73fbda16a99c4d2aeb3ca5010a (patch) | |
tree | c0454193e52ec04a01710553387fdcf33786dcfc /Core.cpp | |
parent | 2eb506165d3d451d9daafdec8b499444bb34351b (diff) |
Disabled: minimapText feature
Diffstat (limited to 'Core.cpp')
-rw-r--r-- | Core.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -31,7 +31,6 @@ void createPlayerTreeNode(Player* player, int playerIndex) { ImGui::PushStyleColor(ImGuiCol_Text, Engine::Get()->GetPlayerColorImGUI(*player->playerColor)); - std::string playerText = "Player " + std::to_string(playerIndex); if (ImGui::TreeNode(playerText.c_str())) { @@ -77,6 +76,7 @@ void createPlayerTreeNode(Player* player, int playerIndex) ImGui::PopStyleColor(); } + void Core::OnPresent() { printf("OnPresent\n"); @@ -86,9 +86,6 @@ void Core::OnPresent() //printf("mainScreen: %p\n", mainScreen); if (!mainScreen) { - ImGui::Begin("AoE Hackbase - BDKPlayer", (bool*)0, ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_NoFocusOnAppearing | ImGuiWindowFlags_NoNav); - ImGui::Text("Waiting for game to start..."); - ImGui::End(); return; } |