From: David Griffith Date: Wed, 30 Jan 2019 12:30:51 +0000 (-0800) Subject: Remove incomplete and wrong code preventing blorbs from loading. X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=cad091df83115bd06bb08408027fda5dba8dfa71;p=liskon_frotz.git 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. --- 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;