Merge pull request #2182 from Tilka/vertex_loader

VertexLoaderX64: fix harmless off-by-one error
This commit is contained in:
Fiora 2015-03-07 19:44:44 -08:00
commit 7216e94823
1 changed files with 2 additions and 2 deletions

View File

@ -98,9 +98,9 @@ int VertexLoaderX64::ReadVertex(OpArg data, u64 attribute, int format, int count
int elem_size = 1 << (format / 2); int elem_size = 1 << (format / 2);
int load_bytes = elem_size * count_in; int load_bytes = elem_size * count_in;
if (load_bytes >= 8) if (load_bytes > 8)
MOVDQU(coords, data); MOVDQU(coords, data);
else if (load_bytes >= 4) else if (load_bytes > 4)
MOVQ_xmm(coords, data); MOVQ_xmm(coords, data);
else else
MOVD_xmm(coords, data); MOVD_xmm(coords, data);