From f5a03a0cb1387e81bfc93987a792f2d131a855e7 Mon Sep 17 00:00:00 2001 From: Kyle Campbell Date: Wed, 24 Sep 2025 16:19:01 -0600 Subject: [PATCH] removed unconditional exit() call that caused program to exit on all inputs with conditions --- Win32/input.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Win32/input.c b/Win32/input.c index c3f0210..7e8e0c6 100644 --- a/Win32/input.c +++ b/Win32/input.c @@ -246,8 +246,8 @@ Property* parse_property( char* name, size_t length, boolean add_prop ) return props[ tot_props++ ]; } - printf( "\nThe property '%s' is not defined.\nQuitting\n\n", tmp_name ); - exit( EXIT_FAILURE ); + // printf( "\nThe property '%s' is not defined.\nQuitting\n\n", tmp_name ); + // exit( EXIT_FAILURE ); }