1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2025-02-01 04:51:49 +01:00

Merge pull request #1476 from kd-11/llvm_fix

Fix LLVM build by changing variable to appropriate type
This commit is contained in:
vlj 2016-02-06 19:18:52 +01:00
commit f66468ffcd

View File

@ -555,7 +555,7 @@ void GLGSRender::end()
{
const u32 element_size = rsx::get_vertex_type_size_on_host(vertex_info.type, vertex_info.size);
const u32 gl_type = to_gl_internal_type(vertex_info.type, vertex_info.size);
const u32 data_size = vertex_data.size();
const size_t data_size = vertex_data.size();
auto &buffer = m_gl_attrib_buffers[index].buffer;
auto &texture = m_gl_attrib_buffers[index].texture;