diff options
Diffstat (limited to 'src/save.c')
| -rw-r--r-- | src/save.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -4,6 +4,7 @@ * All rights reserved. */ +void add_recent_project_path(char *path); void start_new_project(); s32 add_language_to_project(char *buffer); @@ -198,6 +199,11 @@ void load_project_from_folder(char *path_buf) return; } + if (!string_equals(project_path, "")) + { + add_recent_project_path(project_path); + } + start_new_project(); array files = array_create(sizeof(found_file)); |
