mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
Modernize std::reverse with ranges
This commit is contained in:
@@ -660,7 +660,7 @@ bool PopulateConfig(GLContext* m_main_gl_context)
|
||||
}
|
||||
g_Config.backend_info.AAModes.push_back(1);
|
||||
// The UI wants ascending order
|
||||
std::reverse(g_Config.backend_info.AAModes.begin(), g_Config.backend_info.AAModes.end());
|
||||
std::ranges::reverse(g_Config.backend_info.AAModes);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user