mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
IniFile: Replace a character erase with pop_back()
Same thing, more straightforward.
This commit is contained in:
parent
35959bdaf9
commit
29ca22905b
@ -427,9 +427,9 @@ bool IniFile::Load(const std::string& filename, bool keep_current_data)
|
||||
|
||||
#ifndef _WIN32
|
||||
// Check for CRLF eol and convert it to LF
|
||||
if (!line.empty() && line.at(line.size() - 1) == '\r')
|
||||
if (!line.empty() && line.back() == '\r')
|
||||
{
|
||||
line.erase(line.size() - 1);
|
||||
line.pop_back();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user