aboutsummaryrefslogtreecommitdiff
path: root/solo.c
diff options
context:
space:
mode:
Diffstat (limited to 'solo.c')
-rw-r--r--solo.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/solo.c b/solo.c
index 208c705..83bdeb8 100644
--- a/solo.c
+++ b/solo.c
@@ -4573,15 +4573,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 void game_changed_state(game_ui *ui, const game_state *oldstate,
const game_state *newstate)
{
@@ -5639,8 +5630,8 @@ const struct game 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 */
game_request_keys,
game_changed_state,
current_key_label,