From b547e7adff179fb43ecf13ebc52e972da9dcf6f5 Mon Sep 17 00:00:00 2001 From: "SND\\edgbla_cp" Date: Wed, 3 Oct 2012 16:46:22 +0000 Subject: git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@80189 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- libpcsxcore/ix86_64/ix86-64.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libpcsxcore') 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; } -- cgit v1.2.3