WELCOME TO INFOCHEATS.NET

INFOCHEATS is a community-driven platform focused on free game cheats, cheat development, and verified commercial software for a wide range of popular games. We provide a large collection of free cheats shared by the community. All public releases are checked for malicious code to reduce the risk of viruses, malware, or unwanted software before users interact with them.

Alongside free content, INFOCHEATS hosts an active marketplace with many independent sellers offering commercial cheats. Each product is discussed openly, with user feedback, reviews, and real usage experience available to help you make informed decisions before purchasing.

Whether you are looking for free cheats, exploring paid solutions, comparing sellers, or studying how cheats are developed and tested, INFOCHEATS brings everything together in one place — transparently and community-driven.

Question ImGui pop up problem

Devolus

Newbie
Newbie

Devolus

Newbie
Newbie
Status
Offline
Joined
Apr 12, 2019
Messages
5
Reaction score
8
Hi, i currently use CSGOSIMPLE base and trying to work on it, i thought about adding popup when trying to save current config and i came up with this

C++:
if (ImGui::Button("Save"))
        {
            if (ImGui::BeginPopup("WARNING", ImGuiWindowFlags_AlwaysAutoResize))
            {
                ImGui::Text("Are you sure that you want to rewrite config?");
                if (ImGui::Button("Yes"))
                {
                    Config->save(current_config);
                }
                if (ImGui::Button("No"))
                    ImGui::EndPopup();
            }
        }


Problem is.. it won't open any window when trying to save existing config with changes u applied
 

quelz

Newbie
Newbie

quelz

Newbie
Newbie
Status
Offline
Joined
Mar 19, 2020
Messages
35
Reaction score
14
сын бляди нихуя не поняттно пиши по руски
 

designer

Newbie
Newbie

designer

Newbie
Newbie
Status
Offline
Joined
Jun 15, 2019
Messages
6
Reaction score
2
ImGui::OpenPopup("WARNING")
 
Top