mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
parent
c435eabf3f
commit
ce106a4113
2 changed files with 1 additions and 3 deletions
|
@ -147,8 +147,6 @@ void TestUtilities::testIsYes()
|
|||
UASSERT(is_yes("0") == false);
|
||||
UASSERT(is_yes("1") == true);
|
||||
UASSERT(is_yes("2") == true);
|
||||
UASSERT(is_yes("on") == true);
|
||||
UASSERT(is_yes("off") == false);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -272,7 +272,7 @@ inline bool is_yes(const std::string &str)
|
|||
{
|
||||
std::string s2 = lowercase(trim(str));
|
||||
|
||||
return s2 == "y" || s2 == "yes" || s2 == "true" || s2 == "on" || atoi(s2.c_str()) != 0;
|
||||
return s2 == "y" || s2 == "yes" || s2 == "true" || atoi(s2.c_str()) != 0;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue