Merge pull request #2317 from comex/oops

Fix code broken by merge
This commit is contained in:
comex 2015-04-23 02:08:28 -04:00
commit 87a63713f4
1 changed files with 2 additions and 2 deletions

View File

@ -116,8 +116,8 @@ int VertexLoaderX64::ReadVertex(OpArg data, u64 attribute, int format, int count
{ {
LoadAndSwap(32, scratch3, data); LoadAndSwap(32, scratch3, data);
MOV(32, dest, R(scratch3)); MOV(32, dest, R(scratch3));
data.offset += sizeof(float); data.AddMemOffset(sizeof(float));
dest.offset += sizeof(float); dest.AddMemOffset(sizeof(float));
} }
return load_bytes; return load_bytes;
} }