mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 23:11:14 +01:00
StringUtil: Require TryParse of float types to use the entire string.
This commit is contained in:
parent
4a613dad20
commit
0d254d9cb8
@ -61,7 +61,7 @@ static bool TryParse(const std::string& str, N* const output)
|
||||
iss.imbue(std::locale("C"));
|
||||
|
||||
N tmp;
|
||||
if (iss >> tmp)
|
||||
if (iss >> tmp && iss.eof())
|
||||
{
|
||||
*output = tmp;
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user