Merge pull request #1394 from Sonicadvance1/fix-arm-cpudetect

Fixes ARM CPU detection routine for the hardware.
This commit is contained in:
Ryan Houdek 2014-10-27 05:07:24 -06:00
commit 043bd710a0

View File

@ -30,7 +30,6 @@ static std::string GetCPUString()
if (line.find(marker) != std::string::npos)
{
cpu_string = line.substr(marker.length());
cpu_string.pop_back(); // Drop the new-line character
break;
}
}