summaryrefslogtreecommitdiff
path: root/Source/Core/Common/ArmCPUDetect.cpp
diff options
context:
space:
mode:
authorRyan Houdek <Sonicadvance1@gmail.com>2014-10-27 05:07:24 -0600
committerRyan Houdek <Sonicadvance1@gmail.com>2014-10-27 05:07:24 -0600
commit043bd710a0ca2daaf31afdf755cfac75975a1af0 (patch)
tree3cab68b4feb430a9c7be595f940e781945ea6747 /Source/Core/Common/ArmCPUDetect.cpp
parent2b710929f91b8c57311b36bd71d816ba97b79f05 (diff)
parentb66a7f83c26a9a8f00c5c55f4c4d7ce6db9b71e7 (diff)
Merge pull request #1394 from Sonicadvance1/fix-arm-cpudetect
Fixes ARM CPU detection routine for the hardware.
Diffstat (limited to 'Source/Core/Common/ArmCPUDetect.cpp')
-rw-r--r--Source/Core/Common/ArmCPUDetect.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/Core/Common/ArmCPUDetect.cpp b/Source/Core/Common/ArmCPUDetect.cpp
index 7935577ebc..f673383f43 100644
--- a/Source/Core/Common/ArmCPUDetect.cpp
+++ b/Source/Core/Common/ArmCPUDetect.cpp
@@ -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;
}
}