Fix missing space betweek arguments causing dxc commands with additional args to fail (#1003)

This commit is contained in:
Steve Pham
2021-05-27 14:12:29 -07:00
committed by GitHub
parent 85222130d4
commit 0d7c23641a
@@ -164,7 +164,7 @@ namespace AZ
arguments += " -Zi"; // Generate debug information
arguments += " -Zss"; // Compute Shader Hash considering source information
}
arguments += m_dxcAdditionalFreeArguments;
arguments += " " + m_dxcAdditionalFreeArguments;
return arguments;
}
}