aboutsummaryrefslogtreecommitdiff
path: root/range.c
diff options
context:
space:
mode:
Diffstat (limited to 'range.c')
-rw-r--r--range.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/range.c b/range.c
index 3e7b00c..8b1b602 100644
--- a/range.c
+++ b/range.c
@@ -1240,15 +1240,6 @@ static void free_ui(game_ui *ui)
sfree(ui);
}
-static char *encode_ui(const game_ui *ui)
-{
- return NULL;
-}
-
-static void decode_ui(game_ui *ui, const char *encoding)
-{
-}
-
static const char *current_key_label(const game_ui *ui,
const game_state *state, int button)
{
@@ -1831,8 +1822,8 @@ struct game const thegame = {
true, game_can_format_as_text_now, game_text_format,
new_ui,
free_ui,
- encode_ui,
- decode_ui,
+ NULL, /* encode_ui */
+ NULL, /* decode_ui */
NULL, /* game_request_keys */
game_changed_state,
current_key_label,