Scope-eye.net Git Repository
/
liskon_frotz.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d3f764
)
Filename buffer problem and tell why a blorb missing an exec chunk won't work.
author
David Griffith
<dave@661.org>
Sat, 25 Aug 2012 04:55:04 +0000
(21:55 -0700)
committer
David Griffith
<dave@661.org>
Sat, 25 Aug 2012 04:55:04 +0000
(21:55 -0700)
src/curses/ux_init.c
patch
|
blob
|
history
diff --git
a/src/curses/ux_init.c
b/src/curses/ux_init.c
index 89a4d5c5e578a4e66642a21e3eef9b5ded123cbd..51813022069fa2111e905557aea535c6dbb5c440 100644
(file)
--- a/
src/curses/ux_init.c
+++ b/
src/curses/ux_init.c
@@
-332,6
+332,9
@@
void os_process_arguments (int argc, char *argv[])
case bb_err_Format:
printf("Blorb file loaded, but unable to build map.\n\n");
break;
+ case bb_err_NotFound:
+ printf("Blorb file loaded, but lacks executable chunk.\n\n");
+ break;
}
printf("u_setup.blorb_file %s\n", u_setup.blorb_file);
@@
-1018,5
+1021,6
@@
int ux_init_blorb(void)
u_setup.exec_in_blorb = 1;
u_setup.use_blorb = 1;
}
+ return blorb_err;
}
}