From c5f80591a0f8cbc2a6a3ab30b28754a16042c6f3 Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Tue, 21 Nov 2017 18:55:33 -0800 Subject: Moved initial path logic out of menu so it can be shared with new UI --HG-- branch : nuklear_ui --- paths.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 paths.h (limited to 'paths.h') diff --git a/paths.h b/paths.h new file mode 100644 index 0000000..77e878d --- /dev/null +++ b/paths.h @@ -0,0 +1,6 @@ +#ifndef PATHS_H_ +#define PATHS_H_ + +void get_initial_browse_path(char **dst); + +#endif //PATHS_H_ \ No newline at end of file -- cgit v1.2.3 From 2900092e4e06be77108ed6b8a66c7aa673d0b494 Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Sat, 25 Nov 2017 13:57:38 -0800 Subject: Fix directory navigation in ROM file chooser in Nuklear UI --HG-- branch : nuklear_ui --- paths.h | 1 + 1 file changed, 1 insertion(+) (limited to 'paths.h') diff --git a/paths.h b/paths.h index 77e878d..da4b424 100644 --- a/paths.h +++ b/paths.h @@ -2,5 +2,6 @@ #define PATHS_H_ void get_initial_browse_path(char **dst); +char *path_append(char *base, char *suffix); #endif //PATHS_H_ \ No newline at end of file -- cgit v1.2.3 From 0b409a1a9ccc9d7d566a0a867eec4f6eb5a1f5e1 Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Wed, 29 Nov 2017 08:41:37 -0800 Subject: Added code to persist config back to a file --HG-- branch : nuklear_ui --- paths.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'paths.h') diff --git a/paths.h b/paths.h index da4b424..b084035 100644 --- a/paths.h +++ b/paths.h @@ -2,6 +2,6 @@ #define PATHS_H_ void get_initial_browse_path(char **dst); -char *path_append(char *base, char *suffix); +char *path_append(const char *base, const char *suffix); #endif //PATHS_H_ \ No newline at end of file -- cgit v1.2.3