diff --git a/.cproject b/.cproject index b89e77e..4c1a2a6 100644 --- a/.cproject +++ b/.cproject @@ -7,6 +7,7 @@ + @@ -17,11 +18,17 @@ - - diff --git a/.project b/.project index 09e5d00..18fee7e 100644 --- a/.project +++ b/.project @@ -9,10 +9,6 @@ org.eclipse.cdt.managedbuilder.core.genmakebuilder clean,full,incremental, - - ?children? - ?name?=outputEntries\|?children?=?name?=entry\\\\\\\|\\\|\|| - ?name? @@ -33,10 +29,6 @@ org.eclipse.cdt.make.core.buildCommand make - - org.eclipse.cdt.make.core.buildLocation - ${workspace_loc:/BaS_GNU} - org.eclipse.cdt.make.core.cleanBuildTarget clean diff --git a/sources/bas_printf.c b/sources/bas_printf.c index 4772912..79d682b 100644 --- a/sources/bas_printf.c +++ b/sources/bas_printf.c @@ -385,6 +385,7 @@ void display_progress() { static int _progress_index; char progress_char[] = "|/-\\"; + xputchar(progress_char[_progress_index++ % strlen(progress_char)]); xputchar('\r'); }