From de8b3f81e44699acb6f835a07f0b5f1e10a3705b Mon Sep 17 00:00:00 2001 From: plutoo Date: Sat, 20 Jan 2018 14:03:44 +0100 Subject: [PATCH] Jit errorcode bugfix --- nx/source/kernel/jit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx/source/kernel/jit.c b/nx/source/kernel/jit.c index 8a15e1cb..637f29e3 100644 --- a/nx/source/kernel/jit.c +++ b/nx/source/kernel/jit.c @@ -149,7 +149,7 @@ Result jitClose(Jit* j) j->src_addr = NULL; } } - return 0; + return rc; } void* jitGetRwAddr(Jit* j) {