mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-26 06:18:32 +00:00
Remove redundant initialization
This commit is contained in:
parent
8e1fb126d7
commit
c110ffcdaa
17 changed files with 25 additions and 25 deletions
|
@ -275,7 +275,7 @@ void PostProcessingConfiguration::SaveOptionsConfiguration()
|
|||
break;
|
||||
case ConfigurationOption::OptionType::OPTION_INTEGER:
|
||||
{
|
||||
std::string value = "";
|
||||
std::string value;
|
||||
for (size_t i = 0; i < it.second.m_integer_values.size(); ++i)
|
||||
value += StringFromFormat("%d%s", it.second.m_integer_values[i],
|
||||
i == (it.second.m_integer_values.size() - 1) ? "" : ", ");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue