| 1572 | } |
| 1573 | |
| 1574 | void WriteInt(const astr_t &key, int value) |
| 1575 | { |
| 1576 | if (m_File != nullptr) |
| 1577 | { |
| 1578 | fputs(astr_t(key + "=" + str_from(value) + "\n").c_str(), m_File); |
| 1579 | } |
| 1580 | } |
| 1581 | |
| 1582 | void WriteBool(const astr_t &key, bool value) |
| 1583 | { |