diff options
| author | Gabriel Corona <gabriel.corona@enst-bretagne.fr> | 2015-01-05 20:24:37 +0100 |
|---|---|---|
| committer | Gabriel Corona <gabriel.corona@enst-bretagne.fr> | 2015-01-28 09:50:19 +0100 |
| commit | a4adfe194a5b954bdda80dc6b145e0cf646ccd63 (patch) | |
| tree | 0642454b39449ab171dcce8f93aada6ab15d5c0b /Source/Core/VideoCommon/VertexLoaderX64.cpp | |
| parent | a957f93532bfd2025fe20dd8929866c97b5e4df1 (diff) | |
JitRegister: overload Register with a [start,end) variant
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoaderX64.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoaderX64.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VertexLoaderX64.cpp b/Source/Core/VideoCommon/VertexLoaderX64.cpp index 50c46da027..de4ab58cc6 100644 --- a/Source/Core/VideoCommon/VertexLoaderX64.cpp +++ b/Source/Core/VideoCommon/VertexLoaderX64.cpp @@ -33,7 +33,7 @@ VertexLoaderX64::VertexLoaderX64(const TVtxDesc& vtx_desc, const VAT& vtx_att): std::string name; AppendToString(&name); - JitRegister::Register(region, (u32)(GetCodePtr() - region), name.c_str()); + JitRegister::Register(region, GetCodePtr(), name.c_str()); } OpArg VertexLoaderX64::GetVertexAddr(int array, u64 attribute) |
