summaryrefslogtreecommitdiff
path: root/web/web_prompt.c
diff options
context:
space:
mode:
authorDavid Vazgenovich Shakaryan <dvshakaryan@gmail.com>2022-05-13 17:12:16 -0700
committerDavid Vazgenovich Shakaryan <dvshakaryan@gmail.com>2022-05-13 17:12:16 -0700
commitb67982a90f861ba29e41ed366a481af707bd1c79 (patch)
tree73b7d77b1428f5e8765b7e494465dd69b4465632 /web/web_prompt.c
parent63337ba4f8c4f31b7da96e9c3669fc29e0a03b49 (diff)
downloaddartboat-b67982a90f861ba29e41ed366a481af707bd1c79.tar.gz
dartboat-b67982a90f861ba29e41ed366a481af707bd1c79.tar.xz
web: use icons for settings; misc changes
Diffstat (limited to 'web/web_prompt.c')
-rw-r--r--web/web_prompt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/web_prompt.c b/web/web_prompt.c
index 9db4fdd..decc1c1 100644
--- a/web/web_prompt.c
+++ b/web/web_prompt.c
@@ -151,7 +151,7 @@ void prompt_visit()
void prompt_bot_visit()
{
set_prompt_mode(PM_DARTBOARD);
- prompt_set_msgl("Bot is throwing…");
+ prompt_set_msgl("Computer is throwing…");
prompt_set_msgr(NULL);
}
@@ -171,7 +171,7 @@ void prompt_end_match()
set_prompt_mode(PM_END_MATCH);
prompt_set_msgl(
state->mode == M_PVC && state->legs[1]->rem <= 0 ?
- "Bot wins. :(" : "You win! :)");
+ "Computer wins. :(" : "You win! :)");
prompt_set_msgr(NULL);
dom_set_content("#key-submit", "END MATCH");
@@ -190,7 +190,7 @@ void prompt_select_mode()
prompt_set_msgr(NULL);
clear_list_opts();
- add_list_opt("Play against bot");
+ add_list_opt("Play against computer");
add_list_opt("One-player scoreboard");
add_list_opt("Two-player scoreboard");
flush_list_opts();