From fefeba03b8c064fba115eae8d4b0209c9cfbea74 Mon Sep 17 00:00:00 2001 From: Vincent Lejeune Date: Thu, 7 Apr 2016 23:30:27 +0200 Subject: [PATCH] Fix rpcs3-test build. --- rpcs3-tests/ps3-rsx-common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3-tests/ps3-rsx-common.cpp b/rpcs3-tests/ps3-rsx-common.cpp index 42ccbf9231..960bef8ff0 100644 --- a/rpcs3-tests/ps3-rsx-common.cpp +++ b/rpcs3-tests/ps3-rsx-common.cpp @@ -10,6 +10,6 @@ TEST_CLASS(rsx_common) std::vector dest_buffer(2200); std::vector src_buffer(100000); // Big enough - write_vertex_array_data_to_buffer(gsl::span(dest_buffer), src_buffer.data(), 0, 550, rsx::vertex_base_type::ub256, 4, 20); + write_vertex_array_data_to_buffer(gsl::span(dest_buffer), src_buffer.data(), 0, 550, rsx::vertex_base_type::ub256, 4, 20, 4); } };