mirror of https://github.com/PCSX2/pcsx2.git
[x86emitter]: Fix spaming warning of comparaison integer vs non-integer
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3481 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
266fb8d73e
commit
20292ca15c
|
@ -16,9 +16,9 @@
|
|||
#pragma once
|
||||
|
||||
// Register counts for x86/32 mode:
|
||||
static const int iREGCNT_XMM = 8;
|
||||
static const int iREGCNT_GPR = 8;
|
||||
static const int iREGCNT_MMX = 8;
|
||||
static const uint iREGCNT_XMM = 8;
|
||||
static const uint iREGCNT_GPR = 8;
|
||||
static const uint iREGCNT_MMX = 8;
|
||||
|
||||
enum XMMSSEType
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue