mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-26 06:18:32 +00:00
Merge pull request #10876 from shuffle2/cpudetect
CPUDetect: improve win/arm64 support
This commit is contained in:
commit
6b419c7ca3
9 changed files with 422 additions and 229 deletions
|
@ -259,6 +259,13 @@ void ReplaceBreaksWithSpaces(std::string& str)
|
|||
std::replace(str.begin(), str.end(), '\n', ' ');
|
||||
}
|
||||
|
||||
void TruncateToCString(std::string* s)
|
||||
{
|
||||
const size_t terminator = s->find_first_of('\0');
|
||||
if (terminator != s->npos)
|
||||
s->resize(terminator);
|
||||
}
|
||||
|
||||
bool TryParse(const std::string& str, bool* const output)
|
||||
{
|
||||
float value;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue