From e0be0f0af7e6af0577ed13e3d4b1a6cf6143cc70 Mon Sep 17 00:00:00 2001 From: Lobo Torres Date: Sun, 18 Aug 2024 16:09:11 -0400 Subject: [PATCH] (uxn11.c) Remove bogus exit call in emu_end --- src/uxn11.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/uxn11.c b/src/uxn11.c index 1fa6123..88d0481 100644 --- a/src/uxn11.c +++ b/src/uxn11.c @@ -102,7 +102,6 @@ emu_end(void) XDestroyImage(ximage); XDestroyWindow(display, window); XCloseDisplay(display); - exit(0); return uxn.dev[0x0f] & 0x7f; }