summaryrefslogtreecommitdiff
path: root/source/config.c
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2021-07-05 19:29:54 +0000
committerIan C <ianc@noddybox.co.uk>2021-07-05 19:29:54 +0000
commit0bc192bffbf28ba5733ae955916e5ebc72f3641f (patch)
treecb68ae6e3785b2f712e3c639f687580fe75f5806 /source/config.c
parent25a57883291bc89210edbd3670e5548a0b838913 (diff)
Initial working version. Still todo : Tapes, Sound
Diffstat (limited to 'source/config.c')
-rw-r--r--source/config.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/config.c b/source/config.c
index 3abc1ab..8198290 100644
--- a/source/config.c
+++ b/source/config.c
@@ -40,7 +40,6 @@ const char *conf_filename = "SPEC48.CFG";
const char *conf_entry[DSSPEC_NUM_CONFIG_ITEMS]=
{
"sticky_shift",
- "allow_tape_save",
"load_default_snapshot"
};
@@ -50,7 +49,6 @@ const char *conf_entry[DSSPEC_NUM_CONFIG_ITEMS]=
int DSSPEC_Config[DSSPEC_NUM_CONFIG_ITEMS]=
{
TRUE,
- FALSE,
FALSE
};
@@ -128,9 +126,6 @@ const char *ConfigDesc(DSSPEC_ConfigItem item)
case DSSPEC_LOAD_DEFAULT_SNAPSHOT:
return "LOAD DEFAULT SNAPSHOT";
- case DSSPEC_ALLOW_TAPE_SAVE:
- return "ALLOW TAPE SAVING";
-
default:
return "UNKNOWN";
}