diff options
| author | Aldrik Ramaekers <aldrik.ramaekers@protonmail.com> | 2020-02-23 21:19:16 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik.ramaekers@protonmail.com> | 2020-02-23 21:19:16 +0100 |
| commit | 7c9d21ac1db0647624a5206d6d34208aef78f77f (patch) | |
| tree | 2374867a67a23fe80f70eebc33927ac2f0c7a960 /src/save.c | |
| parent | 771ef2dd2df8f79505c4e0a548b2e8df2138b102 (diff) | |
ui work, translations
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)); |
