This commit is contained in:
nullifiedcat 2017-04-30 10:37:23 +03:00
parent f4161c3200
commit 4654019326
2 changed files with 4 additions and 2 deletions

View File

@ -189,6 +189,7 @@ void hack::Initialize() {
//for (CScreenSpaceEffectRegistration* reg = *g_ppScreenSpaceRegistrationHead; reg; reg = reg->m_pNext) { //for (CScreenSpaceEffectRegistration* reg = *g_ppScreenSpaceRegistrationHead; reg; reg = reg->m_pNext) {
// logging::Info("%s", reg->m_pEffectName); // logging::Info("%s", reg->m_pEffectName);
//} //}
g_ICvar->FindVar("cl_software_cursor")->SetValue(1);
logging::Info("SSE enabled.."); logging::Info("SSE enabled..");
} }

View File

@ -93,9 +93,10 @@ void PaintTraverse_hook(void* p, unsigned int vp, bool fr, bool ar) {
if (info_text) { if (info_text) {
AddSideString("cathook by nullifiedcat", colors::RainbowCurrent()); AddSideString("cathook by nullifiedcat", colors::RainbowCurrent());
#if defined(GIT_COMMIT_HASH) && defined(GIT_COMMIT_DATE) #if defined(GIT_COMMIT_HASH) && defined(GIT_COMMIT_DATE)
AddSideString("commit #" GIT_COMMIT_HASH); AddSideString("Version: #" GIT_COMMIT_HASH " " GIT_COMMIT_DATE, GUIColor());
AddSideString("at " GIT_COMMIT_DATE);
#endif #endif
AddSideString("Press 'INSERT' key to open/close cheat menu.", GUIColor());
AddSideString("Use mouse to navigate in menu.", GUIColor());
} }
if (CE_GOOD(g_pLocalPlayer->entity) && !g_Settings.bInvalid) { if (CE_GOOD(g_pLocalPlayer->entity) && !g_Settings.bInvalid) {