summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/blackjack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/blackjack.c b/apps/plugins/blackjack.c
index 0667c31ef6..650eaf412a 100644
--- a/apps/plugins/blackjack.c
+++ b/apps/plugins/blackjack.c
@@ -1085,7 +1085,7 @@ static void blackjack_savegame(struct game_context* bj) {
1085/***************************************************************************** 1085/*****************************************************************************
1086* blackjack_get_yes_no() gets a yes/no answer from the user 1086* blackjack_get_yes_no() gets a yes/no answer from the user
1087******************************************************************************/ 1087******************************************************************************/
1088static unsigned int blackjack_get_yes_no(char message[20]) { 1088static unsigned int blackjack_get_yes_no(const char *message) {
1089 int button; 1089 int button;
1090 unsigned int w, h, b, choice = 0; 1090 unsigned int w, h, b, choice = 0;
1091 bool breakout = false; 1091 bool breakout = false;
@@ -1146,7 +1146,7 @@ static unsigned int blackjack_get_yes_no(char message[20]) {
1146/***************************************************************************** 1146/*****************************************************************************
1147* blackjack_get_amount() gets an amount from the player to be used 1147* blackjack_get_amount() gets an amount from the player to be used
1148******************************************************************************/ 1148******************************************************************************/
1149static signed int blackjack_get_amount(const char message[20], 1149static signed int blackjack_get_amount(const char *message,
1150 signed int lower_limit, 1150 signed int lower_limit,
1151 signed int upper_limit, 1151 signed int upper_limit,
1152 signed int start) { 1152 signed int start) {