Skip to content

Commit

Permalink
fuck that shit
Browse files Browse the repository at this point in the history
  • Loading branch information
Arisotura committed Nov 19, 2024
1 parent 13096f9 commit 86c6740
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/qt_sdl/Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ void Table::SetString(const std::string& path, const std::string& val)
void Table::SetDouble(const std::string& path, double val)
{
toml::value& tval = ResolvePath(path);
tval = val;
tval = toml::value(val, {.prec=10});
}

toml::value& Table::ResolvePath(const std::string& path)
Expand Down

0 comments on commit 86c6740

Please sign in to comment.