mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 02:08:49 +12:00
rsx: Apply Clang-Tidy fix "modernize-use-emplace"
This commit is contained in:
parent
a555504142
commit
635695ac78
9 changed files with 41 additions and 41 deletions
|
@ -80,12 +80,12 @@ void GLFragmentDecompilerThread::insertInputs(std::stringstream & OS)
|
|||
{
|
||||
if (m_prog.front_color_diffuse_output && m_prog.back_color_diffuse_output)
|
||||
{
|
||||
inputs_to_declare.push_back("front_diff_color");
|
||||
inputs_to_declare.emplace_back("front_diff_color");
|
||||
}
|
||||
|
||||
if (m_prog.front_color_specular_output && m_prog.back_color_specular_output)
|
||||
{
|
||||
inputs_to_declare.push_back("front_spec_color");
|
||||
inputs_to_declare.emplace_back("front_spec_color");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue