ini class update .

This commit is contained in:
Zero Fanker 2024-04-04 00:24:48 -04:00
parent 32c743a4c1
commit 5741bd2322
2 changed files with 26 additions and 5 deletions

View file

@ -35,7 +35,7 @@ public:
template<>
static CString ToString<bool>(const bool& origin)
{
static CString result[] = { "false", "true" };
static CString result[] = { "no", "yes" };
return result[origin];
}
};