Avoid an ifdef using PTRBITS

This commit is contained in:
Henrik Rydgard 2014-10-12 18:53:56 +02:00
parent eab010a0c0
commit 8177b4c43b
3 changed files with 8 additions and 13 deletions

View file

@ -150,13 +150,6 @@ static const JitLookup jitLookup[] = {
{&VertexDecoder::Step_Color5551Morph, &VertexDecoderJitCache::Jit_Color5551Morph},
};
// TODO: This should probably be global...
#ifdef _M_X64
#define PTRBITS 64
#else
#define PTRBITS 32
#endif
JittedVertexDecoder VertexDecoderJitCache::Compile(const VertexDecoder &dec) {
dec_ = &dec;
const u8 *start = this->GetCodePtr();