mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-11 16:49:28 +02:00
DeviceQualifier: small cleanup
This commit is contained in:
@ -87,15 +87,17 @@ std::string DeviceQualifier::ToString() const
|
||||
//
|
||||
void DeviceQualifier::FromString(const std::string& str)
|
||||
{
|
||||
*this = {};
|
||||
|
||||
std::istringstream ss(str);
|
||||
|
||||
std::getline(ss, source = "", '/');
|
||||
std::getline(ss, source, '/');
|
||||
|
||||
// silly
|
||||
std::getline(ss, name, '/');
|
||||
std::istringstream(name) >> (cid = -1);
|
||||
std::istringstream(name) >> cid;
|
||||
|
||||
std::getline(ss, name = "");
|
||||
std::getline(ss, name);
|
||||
}
|
||||
|
||||
//
|
||||
|
Reference in New Issue
Block a user