Skip to content

Commit

Permalink
Update ConfigSaver.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
MaYecha authored Aug 16, 2024
1 parent 5dbd54c commit 0f2e72c
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions CS2_External/Utils/ConfigSaver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,6 @@ namespace MyConfigSaver {
{
return node.IsDefined() ? node.as<T>() : defaultValue;
}
static int ReadOffset(const YAML::Node& node, int defaultValue)
{
return node.IsDefined() ? std::stoi(node.as<std::string>(), nullptr, 16) : defaultValue;

}
static uint32_t ImColorToUInt32(const ImColor& color)
{
uint32_t r = static_cast<uint32_t>(color.Value.x * 255);
Expand Down

0 comments on commit 0f2e72c

Please sign in to comment.