summaryrefslogtreecommitdiff
path: root/source/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/config.c')
-rw-r--r--source/config.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/config.c b/source/config.c
index 55141ba..9d02417 100644
--- a/source/config.c
+++ b/source/config.c
@@ -35,6 +35,7 @@ const char *conf_entry[DS81_NUM_CONFIG_ITEMS]=
"sticky_shift",
"average_touchscreen",
"static_ram_at_0x2000",
+ "allow_tape_save",
"load_default_snapshot"
};
@@ -46,6 +47,7 @@ int DS81_Config[DS81_NUM_CONFIG_ITEMS]=
TRUE,
FALSE,
FALSE,
+ FALSE,
FALSE
};
@@ -133,6 +135,9 @@ const char *ConfigDesc(DS81_ConfigItem item)
case DS81_LOAD_DEFAULT_SNAPSHOT:
return "LOAD DEFAULT SNAPSHOT";
+ case DS81_ALLOW_TAPE_SAVE:
+ return "ALLOW TAPE SAVING";
+
default:
return "UNKNOWN";
}