aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-03-27 08:38:34 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-03-27 08:38:34 +0300
commit9b489f4743ba1e4b1b5f7a476ab4eaf99ee586b3 (patch)
tree10c3881b2dd15cd9cab85ea393525a82a37dcf1d
parent3d9f08034caa034797225df750bd8ae9811d0768 (diff)
downloadastar-9b489f4743ba1e4b1b5f7a476ab4eaf99ee586b3.tar.xz
Update comment about args
-rw-r--r--main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.c b/main.c
index c1d3c73..ff2f826 100644
--- a/main.c
+++ b/main.c
@@ -68,7 +68,9 @@ int main(int argc, char **argv) {
* Currently supported:
* -a to animate the pathfinding (get input after each step)
* -m {width}x{height} to give a maze of given size
- * -f {filename} to load a map from the filename */
+ * -f {filename} to load a map from the filename
+ * -4 for four directions
+ * -8 for eight directions */
int opt;
while ((opt = getopt(argc, argv, ":am:f:48")) != -1) {
switch (opt) {