diff options
author | Ian C <ianc@noddybox.co.uk> | 2008-11-03 17:07:32 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2008-11-03 17:07:32 +0000 |
commit | 603f3fac82ccb77775d53fd77ae7c32167116ad7 (patch) | |
tree | 912d684087250ca5cac6e597e06277f1c83f33b0 /source/config.c | |
parent | 1aaaca17a1dc30727578e5fa3755ee6fc05b238d (diff) |
Initial snapshot code (in progress)
Diffstat (limited to 'source/config.c')
-rw-r--r-- | source/config.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/config.c b/source/config.c index 433b5d6..55141ba 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", + "load_default_snapshot" }; @@ -44,6 +45,7 @@ int DS81_Config[DS81_NUM_CONFIG_ITEMS]= { TRUE, FALSE, + FALSE, FALSE }; @@ -128,6 +130,9 @@ const char *ConfigDesc(DS81_ConfigItem item) case DS81_STATIC_RAM_AT_0x2000: return "RAM AT 8192"; + case DS81_LOAD_DEFAULT_SNAPSHOT: + return "LOAD DEFAULT SNAPSHOT"; + default: return "UNKNOWN"; } |