summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2012-10-03 16:46:22 +0000
committerSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2012-10-03 16:46:22 +0000
commitb547e7adff179fb43ecf13ebc52e972da9dcf6f5 (patch)
tree95bf7e9bb27d13b539a0a644357cb2ec139919a8
parentc4002bba93d0dde91cf768ac07e875b008f7ae1f (diff)
downloadpcsxr-b547e7adff179fb43ecf13ebc52e972da9dcf6f5.tar.gz
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@80189 e17a0e51-4ae3-4d35-97c3-1a29b211df97
-rw-r--r--libpcsxcore/ix86_64/ix86-64.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libpcsxcore/ix86_64/ix86-64.c b/libpcsxcore/ix86_64/ix86-64.c
index a6cb78e0..a5c1d6c0 100644
--- a/libpcsxcore/ix86_64/ix86-64.c
+++ b/libpcsxcore/ix86_64/ix86-64.c
@@ -230,8 +230,8 @@ void x86SetJ8( u8* j8 )
u32 jump = ( x86Ptr - (s8*)j8 ) - 1;
if ( jump > 0x7f ) {
- assert(0);
SysPrintf( "j8 greater than 0x7f!!\n" );
+ //assert(0);
}
*j8 = (u8)jump;
}
@@ -241,8 +241,8 @@ void x86SetJ8A( u8* j8 )
u32 jump = ( x86Ptr - (s8*)j8 ) - 1;
if ( jump > 0x7f ) {
- assert(0);
SysPrintf( "j8 greater than 0x7f!!\n" );
+ //assert(0);
}
if( ((uptr)x86Ptr&0xf) > 4 ) {
@@ -263,8 +263,8 @@ void x86SetJ16( u16 *j16 )
u32 jump = ( x86Ptr - (s8*)j16 ) - 2;
if ( jump > 0x7fff ) {
- assert(0);
SysPrintf( "j16 greater than 0x7fff!!\n" );
+ //assert(0);
}
*j16 = (u16)jump;
}