mirror of https://github.com/PCSX2/pcsx2.git
Minor fix to r1953.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1954 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
e1c89dacdb
commit
291be6bc60
|
@ -272,7 +272,7 @@ namespace Internal
|
||||||
//
|
//
|
||||||
__noinline void EmitSibMagic( uint regfield, const ModSibBase& info )
|
__noinline void EmitSibMagic( uint regfield, const ModSibBase& info )
|
||||||
{
|
{
|
||||||
pxAssert( regfield < 8, "Invalid x86 register identifier." );
|
pxAssertDev( regfield < 8, "Invalid x86 register identifier." );
|
||||||
|
|
||||||
int displacement_size = (info.Displacement == 0) ? 0 :
|
int displacement_size = (info.Displacement == 0) ? 0 :
|
||||||
( ( info.IsByteSizeDisp() ) ? 1 : 2 );
|
( ( info.IsByteSizeDisp() ) ? 1 : 2 );
|
||||||
|
|
Loading…
Reference in New Issue