Skip to content

Commit

Permalink
fix up the regexes in Config.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Arisotura committed Jun 15, 2024
1 parent ccc5c95 commit d449888
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/frontend/qt_sdl/Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ int Table::GetInt(const std::string& path)

int ret = (int)tval.as_integer();

std::regex rng_re("\\d+");
std::regex rng_re("(\\d+)");
std::string rngkey = std::regex_replace(PathPrefix+path, rng_re, "*");
if (IntRanges.count(rngkey) != 0)
{
Expand Down Expand Up @@ -524,7 +524,7 @@ std::string Table::GetString(const std::string& path)

void Table::SetInt(const std::string& path, int val)
{
std::regex rng_re("\\d+");
std::regex rng_re("(\\d+)");
std::string rngkey = std::regex_replace(PathPrefix+path, rng_re, "*");
if (IntRanges.count(rngkey) != 0)
{
Expand Down Expand Up @@ -571,7 +571,7 @@ toml::value& Table::ResolvePath(const std::string& path)

template<typename T> T Table::FindDefault(const std::string& path, T def, DefaultList<T> list)
{
std::regex def_re("\\d+");
std::regex def_re("(\\d+)");
std::string defkey = std::regex_replace(PathPrefix+path, def_re, "*");

T ret = def;
Expand Down

0 comments on commit d449888

Please sign in to comment.