summaryrefslogtreecommitdiff
path: root/src/options
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2023-03-22 23:06:26 -0500
committersanine <sanine.not@pm.me>2023-03-22 23:06:26 -0500
commitdc8f29206201fcc977443ce9c6138c2f3129c1c8 (patch)
treed2acf572e965f3fdabf4fdb02ee0779ddacfb846 /src/options
parent78eb15d59190c079b1edb405eeae6696724f1b2e (diff)
re-implement bouncing ball
Diffstat (limited to 'src/options')
-rw-r--r--src/options/options.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/options/options.c b/src/options/options.c
index 7ac35c7..cf2ae49 100644
--- a/src/options/options.c
+++ b/src/options/options.c
@@ -37,12 +37,6 @@ void print_help(char *program_name)
enum outcomes_t parse_options(struct honey_options *options, int argc, char **argv)
{
- /* check if we even need to parse at all */
- if (argc == 1) {
- print_help(argv[0]);
- return EXIT_SUCCESS;
- }
-
/* default values */
options->script_file = "main.lua";