summaryrefslogtreecommitdiff
path: root/src/gui.c
diff options
context:
space:
mode:
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 */