|
@@ -132,9 +132,7 @@ void Maxwell3D::ProcessMacro(u32 method, const u32* base_start, u32 amount, bool
|
|
|
executing_macro = method;
|
|
executing_macro = method;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- for (std::size_t i = 0; i < amount; i++) {
|
|
|
|
|
- macro_params.push_back(base_start[i]);
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ macro_params.insert(macro_params.end(), base_start, base_start + amount);
|
|
|
|
|
|
|
|
// Call the macro when there are no more parameters in the command buffer
|
|
// Call the macro when there are no more parameters in the command buffer
|
|
|
if (is_last_call) {
|
|
if (is_last_call) {
|