remove extra debug msgs
This commit is contained in:
parent
0ecbcd0dd5
commit
11079a0f84
@ -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) {
|
||||
|
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user