forked from organicmaps/organicmaps
separating benchmark results by deviceID.
This commit is contained in:
parent
8203289a3b
commit
29ef8ca329
1 changed files with 4 additions and 1 deletions
|
@ -420,7 +420,10 @@ bool InformationDisplay::addBenchmarkInfo(string const & name, m2::RectD const &
|
|||
info.m_rect = globalRect;
|
||||
m_benchmarkInfo.push_back(info);
|
||||
|
||||
ofstream fout(GetPlatform().WritablePathForFile("benchmark_results.txt").c_str(), ios::app);
|
||||
string deviceID = GetPlatform().DeviceID();
|
||||
transform(deviceID.begin(), deviceID.end(), deviceID.begin(), ::tolower);
|
||||
|
||||
ofstream fout(GetPlatform().WritablePathForFile(deviceID + "_benchmark_results.txt").c_str(), ios::app);
|
||||
fout << GetPlatform().DeviceID() << " "
|
||||
<< VERSION_STRING << " "
|
||||
<< info.m_name << " "
|
||||
|
|
Loading…
Add table
Reference in a new issue