aboutsummaryrefslogtreecommitdiff
path: root/Core.cpp
diff options
context:
space:
mode:
authorBDKPlayer <fabian.stotz@yahoo.de>2020-03-03 18:54:24 +0100
committerBDKPlayer <fabian.stotz@yahoo.de>2020-03-03 18:54:24 +0100
commit39be1b0e1ecebf73fbda16a99c4d2aeb3ca5010a (patch)
treec0454193e52ec04a01710553387fdcf33786dcfc /Core.cpp
parent2eb506165d3d451d9daafdec8b499444bb34351b (diff)
Disabled: minimapText feature
Diffstat (limited to 'Core.cpp')
-rw-r--r--Core.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/Core.cpp b/Core.cpp
index 0d86fee..34c8bb1 100644
--- a/Core.cpp
+++ b/Core.cpp
@@ -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;
}