remove extra debug msgs

This commit is contained in:
nullifiedcat 2017-03-17 21:23:12 +03:00
parent 0ecbcd0dd5
commit 11079a0f84
2 changed files with 0 additions and 5 deletions

View File

@ -36,15 +36,11 @@ CatGUI::~CatGUI() {
}
void CatGUI::Setup() {
logging::Info("A");
m_pRootWindow = new RootWindow();
logging::Info("A");
m_pRootWindow->Setup();
logging::Info("A");
gui_visible.OnRegister([](CatVar* var) {
var->convar->InstallChangeCallback(GUIVisibleCallback);
});
logging::Info("A");
}
void CatGUI::ShowTooltip(std::string text) {

View File

@ -57,7 +57,6 @@ T* BruteforceInterface(std::string name, sharedobj::SharedObject* object, int st
else if (i < 100) zeros = 1;
for (int j = 0; j < zeros; j++) stream << '0';
stream << i;
logging::Info("trying %s", stream.str().c_str());
result = reinterpret_cast<T*>(object->CreateInterface(stream.str()));
if (result) return result;
}