summaryrefslogtreecommitdiff
path: root/src/gui.c
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2004-01-06 02:06:37 +0000
committerIan C <ianc@noddybox.co.uk>2004-01-06 02:06:37 +0000
commit25bc35fbadebbf28eed3c89978e435d2df557b42 (patch)
tree74619afa6e82dd4818dd210c20396946a7c1722e /src/gui.c
parent63c0f2a2f2819940efde5ff52ab13109809405f9 (diff)
Devel checkin - added util and snap objects and non-working TAP support
Diffstat (limited to 'src/gui.c')
-rw-r--r--src/gui.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/gui.c b/src/gui.c
index 3a4b031..5072be1 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -207,4 +207,18 @@ const char *GUIInputString(const char *prompt, const char *orig)
}
+int GUIFileSelect(const char *prompt, int load,
+ const char *start_dir, char path[])
+{
+ /* TODO */
+ if (load)
+ strcpy(path,"/files/emu/spectrum/thrust1.tap");
+ else
+ strcpy(path,"/files/emu/spectrum/testespec.tap");
+
+ strcpy(path,"/files/emu/spectrum/testespec.tap");
+ return TRUE;
+}
+
+
/* END OF FILE */