game: remove unuse variable

This commit is contained in:
Crypto City 2021-05-16 10:47:50 +00:00
parent a6be1d2703
commit 1542fb1bcc

View File

@ -2027,7 +2027,6 @@ void UIPlayerInfoDialog::Export(const std::string &filename, const std::string &
{
std::stringstream ss;
const bool csv = format == "CSV";
const bool tsv = format == "TSV";
const std::string delim = csv ? "," : "\t";
auto escape = [](std::string s) {
boost::replace_all(s, "\"", "\\\"");