diff --git a/CS2_External/Utils/ConfigSaver.hpp b/CS2_External/Utils/ConfigSaver.hpp index fc82357..75d0690 100644 --- a/CS2_External/Utils/ConfigSaver.hpp +++ b/CS2_External/Utils/ConfigSaver.hpp @@ -13,11 +13,6 @@ namespace MyConfigSaver { { return node.IsDefined() ? node.as() : defaultValue; } - static int ReadOffset(const YAML::Node& node, int defaultValue) - { - return node.IsDefined() ? std::stoi(node.as(), nullptr, 16) : defaultValue; - - } static uint32_t ImColorToUInt32(const ImColor& color) { uint32_t r = static_cast(color.Value.x * 255);