diff options
author | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2022-05-18 20:29:25 -0700 |
---|---|---|
committer | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2022-05-18 20:30:17 -0700 |
commit | 5a1032e3e4b3479c84807d5610335c7e4f850158 (patch) | |
tree | 045b26df714e44c270f428daea2e83bc4b2e3b1a /web/web_prompt.c | |
parent | d4a44af5efa5d3847a4ec4c545d585770e92e4b9 (diff) | |
download | dartboat-5a1032e3e4b3479c84807d5610335c7e4f850158.tar.gz dartboat-5a1032e3e4b3479c84807d5610335c7e4f850158.tar.xz |
web: store comp info as part of match player info instead of globally
This allows us things like two computer players against one another,
which I've also added for testing.
Diffstat (limited to 'web/web_prompt.c')
-rw-r--r-- | web/web_prompt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web/web_prompt.c b/web/web_prompt.c index 8e2bd74..9213ca0 100644 --- a/web/web_prompt.c +++ b/web/web_prompt.c @@ -195,6 +195,7 @@ void prompt_select_mode() add_list_opt("Play against computer"); add_list_opt("One-player scoreboard"); add_list_opt("Two-player scoreboard"); + add_list_opt("Computer vs computer"); flush_list_opts(); } |