diff --git a/src/Components/Modules/QuickPatch.cpp b/src/Components/Modules/QuickPatch.cpp index abd9a64c..c38fe5d9 100644 --- a/src/Components/Modules/QuickPatch.cpp +++ b/src/Components/Modules/QuickPatch.cpp @@ -172,11 +172,6 @@ namespace Components }, nullptr, false); } - void QuickPatch::testFunc() - { - - } - QuickPatch::QuickPatch() { // protocol version (workaround for hacks) @@ -447,11 +442,6 @@ namespace Components QuickPatch::CompareMaterialStateBits(); }); - Command::Add("test", [](Command::Params*) - { - QuickPatch::testFunc(); - }); - // Dvars Dvar::Register("ui_streamFriendly", false, Game::DVAR_FLAG_SAVED, "Stream friendly UI"); diff --git a/src/Components/Modules/QuickPatch.hpp b/src/Components/Modules/QuickPatch.hpp index c2eb05c2..774d8d49 100644 --- a/src/Components/Modules/QuickPatch.hpp +++ b/src/Components/Modules/QuickPatch.hpp @@ -34,7 +34,5 @@ namespace Components static int MsgReadBitsCompressCheckCL(const char *from, char *to, int size); static void CompareMaterialStateBits(); - - static void testFunc(); }; }