1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 03:05:48 +03:00
aports/testing/pcsxr/fix-assert-64bit.patch
2019-06-10 05:13:19 -03:00

13 lines
344 B
Diff

diff --git a/pcsxr/libpcsxcore/ix86_64/ix86-64.c b/pcsxr/libpcsxcore/ix86_64/ix86-64.c
index f48b742e..c69192e0 100644
--- a/libpcsxcore/ix86_64/ix86-64.c
+++ b/libpcsxcore/ix86_64/ix86-64.c
@@ -231,7 +231,6 @@ void x86SetJ8( u8* j8 )
if ( jump > 0x7f ) {
SysPrintf( "j8 greater than 0x7f!!\n" );
- assert(0);
}
*j8 = (u8)jump;
}