From cad091df83115bd06bb08408027fda5dba8dfa71 Mon Sep 17 00:00:00 2001 From: David Griffith Date: Wed, 30 Jan 2019 04:30:51 -0800 Subject: [PATCH] Remove incomplete and wrong code preventing blorbs from loading. This was the remains of an attempt to determine if there is an executable chunk in the blorb file and if so, what kind. --- src/curses/ux_blorb.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/curses/ux_blorb.c b/src/curses/ux_blorb.c index 1010124..c9aafc7 100644 --- a/src/curses/ux_blorb.c +++ b/src/curses/ux_blorb.c @@ -127,12 +127,6 @@ bb_err_t ux_blorb_init(char *filename) * location so os_load_story() can find it. */ if (f_setup.exec_in_blorb) { - blorb_err = bb_load_chunk_by_type(blorb_map, bb_method_FilePos, - &blorb_res, bb_ID_Exec, 0); - - printf("blorb_err %d\n", blorb_err); - exit(2); - blorb_err = bb_load_chunk_by_type(blorb_map, bb_method_FilePos, &blorb_res, bb_ID_ZCOD, 0); f_setup.exec_in_blorb = 1; -- 2.34.1